tests: Run SINGLE_BYTES with no chunking

...in addition to 1-to-5-byte chunks as we've done so far.

By starting g_chunkSize at 0, we get to run all the tests that call
_XML_Parse_SINGLE_BYTES() as if they just called XML_Parse(). This
gives us extra test coverage.
This commit is contained in:
Snild Dolkow 2023-09-26 12:36:06 +02:00
parent 7b0e27a698
commit 091ba48d7a

View file

@ -97,7 +97,7 @@ main(int argc, char *argv[]) {
if (verbosity != CK_SILENT)
printf("Expat version: %" XML_FMT_STR "\n", XML_ExpatVersion());
for (g_chunkSize = 1; g_chunkSize <= 5; g_chunkSize++) {
for (g_chunkSize = 0; g_chunkSize <= 5; g_chunkSize++) {
char context[100];
snprintf(context, sizeof(context), "chunksize=%d", g_chunkSize);
context[sizeof(context) - 1] = '\0';