summaryrefslogtreecommitdiff
path: root/test/parse2-auto.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2010-12-04 13:28:52 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2010-12-04 13:28:52 +0000
commit7af44e1552d41fc04ba5243e619a03c222c07c9f (patch)
tree181f09ca54164b31f8f67b9086041d25618dbc0e /test/parse2-auto.c
parent3541ce862727a967c92f7f08e3c7da16522f89ef (diff)
downloadlibcss-7af44e1552d41fc04ba5243e619a03c222c07c9f.tar.gz
libcss-7af44e1552d41fc04ba5243e619a03c222c07c9f.tar.bz2
Remove libcss_initialise/finalise.
Fix testsuite to compile (it passes, too) svn path=/trunk/libcss/; revision=10955
Diffstat (limited to 'test/parse2-auto.c')
-rw-r--r--test/parse2-auto.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/parse2-auto.c b/test/parse2-auto.c
index f00c272..0305b4c 100644
--- a/test/parse2-auto.c
+++ b/test/parse2-auto.c
@@ -5,6 +5,7 @@
#include <stdlib.h>
#include <string.h>
+#include <parserutils/parserutils.h>
#include <libcss/libcss.h>
#include "utils/utils.h"
@@ -83,7 +84,7 @@ int main(int argc, char **argv)
return 1;
}
- assert(css_initialise(argv[1], myrealloc, NULL) == CSS_OK);
+ assert(parserutils_initialise(argv[1], myrealloc, NULL) == PARSERUTILS_OK);
ctx.buflen = parse_filesize(argv[2]);
if (ctx.buflen == 0)
@@ -115,7 +116,7 @@ int main(int argc, char **argv)
free(ctx.buf);
- assert(css_finalise(myrealloc, NULL) == CSS_OK);
+ assert(parserutils_finalise(myrealloc, NULL) == PARSERUTILS_OK);
printf("INFO: Counter is %zu\n", counter);
lwc_iterate_strings(printing_lwc_iterator, NULL);