summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpaul <paul>2005-09-06 23:08:01 +0000
committerpaul <paul>2005-09-06 23:08:01 +0000
commitdff4f5272f7c3289b0c7eebe441cf7c223bcb044 (patch)
tree113b16e046e029b52220a4c7bc96eb8102af7612
parent6379b96117a50803236fe698e4e27d9849f3a3bc (diff)
2004-09-06 Paul Jakma <paul@dishone.st>
* test-buffer.c: include memory.h (main) call memory_init().
-rw-r--r--tests/ChangeLog5
-rw-r--r--tests/test-buffer.c3
2 files changed, 8 insertions, 0 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog
index 906fd11e..f6ed4d57 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 11e36294..b310776f 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);