expat/tests runtests.c,1.41,1.42
"Fred L. Drake" <[email protected]>
| Newsgroups | gmane.text.xml.expat.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/expat/expat/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv8783/tests
Modified Files:
runtests.c
Log Message:
Minor cleanups and conformance with current recommended usage.
Index: runtests.c
===================================================================
RCS file: /cvsroot/expat/expat/tests/runtests.c,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- runtests.c 30 Dec 2002 19:33:21 -0000 1.41
+++ runtests.c 20 Jan 2003 14:49:44 -0000 1.42
@@ -705,12 +705,12 @@
int i;
for (i = 0; i < 256; ++i)
info->map[i] = i;
- info->data=NULL;
- info->convert=NULL;
- info->release=NULL;
- return 1;
+ info->data = NULL;
+ info->convert = NULL;
+ info->release = NULL;
+ return XML_STATUS_OK;
}
- return 0;
+ return XML_STATUS_ERROR;
}
START_TEST(test_unknown_encoding_internal_entity)
@@ -821,9 +821,9 @@
fail("Could not create external entity parser.");
if (XML_Parse(extparser, text, strlen(text), 1) == XML_STATUS_ERROR) {
xml_failure(parser);
- return 0;
+ return XML_STATUS_ERROR;
}
- return 1;
+ return XML_STATUS_OK;
}
/* Test that an error is reported for unknown entities if we have read
@@ -842,7 +842,7 @@
XML_SetExternalEntityRefHandler(parser, external_entity_loader);
expect_failure(text,
XML_ERROR_UNDEFINED_ENTITY,
- "Parser did not report undefined entity with DTD.");
+ "Parser did not report undefined entity (external DTD).");
}
END_TEST