Make test_nsalloc_long_context() robust vs allocation pattern changes
This commit is contained in:
parent
771bc86bb1
commit
bc941d32c1
@ -11275,26 +11275,9 @@ START_TEST(test_nsalloc_long_context)
|
||||
{ NULL, NULL }
|
||||
};
|
||||
int i;
|
||||
#define MAX_ALLOC_COUNT 40
|
||||
int repeat = 0;
|
||||
#define MAX_ALLOC_COUNT 70
|
||||
|
||||
for (i = 0; i < MAX_ALLOC_COUNT; i++) {
|
||||
/* Repeat some counts to defeat allocation caching */
|
||||
if ((i == 4 && repeat == 3) ||
|
||||
(i == 13 && repeat == 9) ||
|
||||
(i == 14 && repeat == 10)) {
|
||||
i -= 2;
|
||||
repeat++;
|
||||
}
|
||||
else if ((i == 2 && repeat < 2) ||
|
||||
(i == 3 && (repeat == 2 || repeat == 4 || repeat == 5)) ||
|
||||
(i == 4 && repeat == 6) ||
|
||||
(i == 5 && repeat == 7) ||
|
||||
(i == 7 && repeat == 8) ||
|
||||
(i == 13 && repeat == 11)) {
|
||||
i--;
|
||||
repeat++;
|
||||
}
|
||||
allocation_count = i;
|
||||
XML_SetUserData(parser, options);
|
||||
XML_SetParamEntityParsing(parser, XML_PARAM_ENTITY_PARSING_ALWAYS);
|
||||
@ -11303,8 +11286,9 @@ START_TEST(test_nsalloc_long_context)
|
||||
XML_TRUE) != XML_STATUS_ERROR)
|
||||
break;
|
||||
|
||||
XML_ParserFree(parser);
|
||||
parser = XML_ParserCreate(NULL);
|
||||
/* See comment in test_nsalloc_xmlns() */
|
||||
nsalloc_teardown();
|
||||
nsalloc_setup();
|
||||
}
|
||||
if (i == 0)
|
||||
fail("Parsing worked despite failing allocations");
|
||||
|
Loading…
Reference in New Issue
Block a user