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