diff options
author | paul <paul> | 2005-09-07 01:08:01 +0200 |
---|---|---|
committer | paul <paul> | 2005-09-07 01:08:01 +0200 |
commit | dff4f5272f7c3289b0c7eebe441cf7c223bcb044 (patch) | |
tree | 113b16e046e029b52220a4c7bc96eb8102af7612 | |
parent | 2004-09-05 Paul Jakma <paul@dishone.st> (diff) | |
download | frr-dff4f5272f7c3289b0c7eebe441cf7c223bcb044.tar.xz frr-dff4f5272f7c3289b0c7eebe441cf7c223bcb044.zip |
2004-09-06 Paul Jakma <paul@dishone.st>
* test-buffer.c: include memory.h
(main) call memory_init().
-rw-r--r-- | tests/ChangeLog | 5 | ||||
-rw-r--r-- | tests/test-buffer.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog index 906fd11e4..f6ed4d574 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,8 @@ +2004-09-06 Paul Jakma <paul@dishone.st> + + * test-buffer.c: include memory.h + (main) call memory_init(). + 2004-09-05 Paul Jakma <paul@dishone.st> * heavy-wq.c: (slow_func_del,slow_func_err) make them take diff --git a/tests/test-buffer.c b/tests/test-buffer.c index 11e362948..b310776f8 100644 --- a/tests/test-buffer.c +++ b/tests/test-buffer.c @@ -1,4 +1,5 @@ #include <zebra.h> +#include <memory.h> #include <buffer.h> struct thread_master *master; @@ -11,6 +12,8 @@ main(int argc, char **argv) char junk[3]; char c = 'a'; + memory_init(); + if ((argc != 2) || (sscanf(argv[1], "%d%1s", &n, junk) != 1)) { fprintf(stderr, "Usage: %s <number of chars to simulate>\n", *argv); |