mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 13:14:59 +00:00
tests: Use SINGLE_BYTES in test_nobom_utf16_le
All tests now run one instance where SINGLE_BYTES is equivalent to a single XML_Parse call. Using SINGLE_BYTES therefore gives more coverage, as evidenced by the new failure we now have to avoid in the test, until it can be fixed.
This commit is contained in:
parent
29babedcab
commit
1222ae34fb
1 changed files with 8 additions and 2 deletions
|
@ -159,11 +159,17 @@ START_TEST(test_bom_utf16_le) {
|
|||
}
|
||||
END_TEST
|
||||
|
||||
/* Parse whole buffer at once to exercise a different code path */
|
||||
START_TEST(test_nobom_utf16_le) {
|
||||
char text[] = " \0<\0e\0/\0>\0";
|
||||
|
||||
if (XML_Parse(g_parser, text, sizeof(text) - 1, XML_TRUE) == XML_STATUS_ERROR)
|
||||
if (g_chunkSize == 1) {
|
||||
// TODO: with just the first byte, we can't tell the difference between
|
||||
// UTF-16-LE and UTF-8. Avoid the failure for now.
|
||||
return;
|
||||
}
|
||||
|
||||
if (_XML_Parse_SINGLE_BYTES(g_parser, text, sizeof(text) - 1, XML_TRUE)
|
||||
== XML_STATUS_ERROR)
|
||||
xml_failure(g_parser);
|
||||
}
|
||||
END_TEST
|
||||
|
|
Loading…
Add table
Reference in a new issue