summaryrefslogtreecommitdiff
path: root/test/testutils/load.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2010-08-26 23:00:23 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2010-08-26 23:00:23 +0000
commit229af12d7ab2c071a6888eb8ffc49bb0bbeb9ddd (patch)
tree78100a859a1bf8fbb9d2166dd0843c49c98c53c3 /test/testutils/load.c
parent5c109b370a014e49387320fa23bb589e4d4e36f1 (diff)
downloadlibdom-229af12d7ab2c071a6888eb8ffc49bb0bbeb9ddd.tar.gz
libdom-229af12d7ab2c071a6888eb8ffc49bb0bbeb9ddd.tar.bz2
Sync with modified libwapcaplet API: 11 additional DOM Level1 testsuite failures. Most importantly, it actually compiles now.
svn path=/trunk/dom/; revision=10717
Diffstat (limited to 'test/testutils/load.c')
-rw-r--r--test/testutils/load.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/test/testutils/load.c b/test/testutils/load.c
index 66e4e4c..0028eb4 100644
--- a/test/testutils/load.c
+++ b/test/testutils/load.c
@@ -24,8 +24,6 @@
#include "utils.h"
-extern lwc_context *ctx;
-
/**
* Load the file as it is a XML file
*
@@ -44,7 +42,7 @@ dom_document *load_xml(char *file, bool willBeModified)
UNUSED(willBeModified);
parser = dom_xml_parser_create(NULL, NULL,
- myrealloc, NULL, mymsg, NULL, ctx);
+ myrealloc, NULL, mymsg, NULL);
if (parser == NULL) {
fprintf(stderr, "Can't create XMLParser\n");
return NULL;
@@ -105,8 +103,8 @@ dom_document *load_html(char *file, bool willBeModified)
UNUSED(willBeModified);
- parser = dom_hubbub_parser_create("data/Aliases", NULL, true,
- myrealloc, NULL, mymsg, NULL, ctx);
+ parser = dom_hubbub_parser_create("../data/Aliases", NULL, true,
+ myrealloc, NULL, mymsg, NULL);
if (parser == NULL) {
fprintf(stderr, "Can't create Hubbub Parser\n");
return NULL;
@@ -115,7 +113,7 @@ dom_document *load_html(char *file, bool willBeModified)
handle = open(file, O_RDONLY);
if (handle == -1) {
dom_hubbub_parser_destroy(parser);
- fprintf(stderr, "Can't open test input file: %s\n", file);
+ /* fprintf(stderr, "Can't open test input file: %s\n", file); */
return NULL;
}