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
commite1c80e0df81cec4ccf6a9dd378942d091a0f15dd (patch)
tree78100a859a1bf8fbb9d2166dd0843c49c98c53c3 /test/testutils/load.c
parent9b696729f05cbeb2e92d86945f280f78cad369c4 (diff)
downloadlibdom-e1c80e0df81cec4ccf6a9dd378942d091a0f15dd.tar.gz
libdom-e1c80e0df81cec4ccf6a9dd378942d091a0f15dd.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;
}