tests: Remove early comment count check in test_user_parameters

Before a parse call with isFinal=XML_TRUE, there is no guarantee that
all supplied data has been parsed. Removing the first comment count
check removes the test's assumption of such a guarantee.
This commit is contained in:
Snild Dolkow 2023-09-26 10:31:03 +02:00
parent bb3c171980
commit a5993b2d42

View file

@ -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");