mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 05:34:59 +00:00
Merge pull request #757 from SonyMobile/more-is-final
Add isFinal=XML_TRUE to more tests
This commit is contained in:
commit
e1dc3383e3
1 changed files with 2 additions and 4 deletions
|
@ -596,7 +596,7 @@ START_TEST(test_line_number_after_parse) {
|
|||
"\n</tag>";
|
||||
XML_Size lineno;
|
||||
|
||||
if (_XML_Parse_SINGLE_BYTES(g_parser, text, (int)strlen(text), XML_FALSE)
|
||||
if (_XML_Parse_SINGLE_BYTES(g_parser, text, (int)strlen(text), XML_TRUE)
|
||||
== XML_STATUS_ERROR)
|
||||
xml_failure(g_parser);
|
||||
lineno = XML_GetCurrentLineNumber(g_parser);
|
||||
|
@ -2325,7 +2325,7 @@ START_TEST(test_reset_in_entity) {
|
|||
|
||||
g_resumable = XML_TRUE;
|
||||
XML_SetCharacterDataHandler(g_parser, clearing_aborting_character_handler);
|
||||
if (_XML_Parse_SINGLE_BYTES(g_parser, text, (int)strlen(text), XML_FALSE)
|
||||
if (_XML_Parse_SINGLE_BYTES(g_parser, text, (int)strlen(text), XML_TRUE)
|
||||
== XML_STATUS_ERROR)
|
||||
xml_failure(g_parser);
|
||||
XML_GetParsingStatus(g_parser, &status);
|
||||
|
@ -2668,8 +2668,6 @@ START_TEST(test_user_parameters) {
|
|||
if (_XML_Parse_SINGLE_BYTES(g_parser, text, (int)strlen(text), XML_FALSE)
|
||||
== XML_STATUS_ERROR)
|
||||
xml_failure(g_parser);
|
||||
if (g_comment_count != 2)
|
||||
fail("Comment handler not invoked enough times");
|
||||
/* Ensure we can't change policy mid-parse */
|
||||
if (XML_SetParamEntityParsing(g_parser, XML_PARAM_ENTITY_PARSING_NEVER))
|
||||
fail("Changed param entity parsing policy while parsing");
|
||||
|
|
Loading…
Add table
Reference in a new issue