mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 13:45:00 +00:00
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:
parent
7b0e27a698
commit
091ba48d7a
1 changed files with 1 additions and 1 deletions
|
@ -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';
|
||||
|
|
Loading…
Add table
Reference in a new issue