summaryrefslogtreecommitdiff
path: root/test/hubbub.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/hubbub.c')
-rw-r--r--test/hubbub.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/hubbub.c b/test/hubbub.c
new file mode 100644
index 0000000..ed61bb3
--- /dev/null
+++ b/test/hubbub.c
@@ -0,0 +1,29 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+#include <hubbub/hubbub.h>
+
+#include "testutils.h"
+
+static void *myrealloc(void *ptr, size_t len, void *pw)
+{
+ UNUSED(pw);
+
+ return realloc(ptr, len);
+}
+
+int main(int argc, char **argv)
+{
+ if (argc != 2) {
+ printf("Usage: %s <filename>\n", argv[0]);
+ return 1;
+ }
+
+ assert(hubbub_initialise(argv[1], myrealloc, NULL) == HUBBUB_OK);
+
+ assert (hubbub_finalise(myrealloc, NULL) == HUBBUB_OK);
+
+ printf("PASS\n");
+
+ return 0;
+}