mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 13:14:59 +00:00
tests: Save some runtime in test_misc_deny_internal_entity_closing_doctype_issue_317
Idea by Sebastian Andrzej Siewior
This commit is contained in:
parent
7b05b1420b
commit
885f4c6303
1 changed files with 7 additions and 0 deletions
|
@ -369,6 +369,13 @@ START_TEST(test_misc_deny_internal_entity_closing_doctype_issue_317) {
|
|||
suspendOrNotIndex++) {
|
||||
const char *const input = inputs[inputIndex];
|
||||
const XML_Bool suspend = suspendOrNot[suspendOrNotIndex];
|
||||
if (suspend && (g_chunkSize > 0)) {
|
||||
// We cannot use _XML_Parse_SINGLE_BYTES below due to suspension, and
|
||||
// so chunk sizes >0 would only repeat the very same test
|
||||
// due to use of plain XML_Parse; we are saving upon that runtime:
|
||||
return;
|
||||
}
|
||||
|
||||
set_subtest("[input=%d suspend=%s] %s", (int)inputIndex,
|
||||
suspend ? "true" : "false", input);
|
||||
XML_Parser parser;
|
||||
|
|
Loading…
Add table
Reference in a new issue