summaryrefslogtreecommitdiff
path: root/test/parserutils.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/parserutils.c')
-rw-r--r--test/parserutils.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/parserutils.c b/test/parserutils.c
deleted file mode 100644
index c6d671a..0000000
--- a/test/parserutils.c
+++ /dev/null
@@ -1,30 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-
-#include <parserutils/parserutils.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(parserutils_initialise(argv[1], myrealloc, NULL) ==
- PARSERUTILS_OK);
-
- assert (parserutils_finalise(myrealloc, NULL) == PARSERUTILS_OK);
-
- printf("PASS\n");
-
- return 0;
-}