tests/acc_tests.c: Move second BOM accounting test to the right place

The test makes use of general entities (not parameter entities)
but was mis-filed under parameter entities.
This commit is contained in:
Sebastian Pipping 2023-10-23 20:30:45 +02:00
parent a39a2f5c65
commit 6e1ddc3b9c

View file

@ -149,6 +149,11 @@ START_TEST(test_accounting_precision) {
"]>\n"
"<r>&five;</r>",
"12345", NULL, 0, filled_later},
{"<!DOCTYPE r [\n"
" <!ENTITY five SYSTEM 'first.ent'>\n"
"]>\n"
"<r>&five;</r>",
"\xEF\xBB\xBF" /* UTF-8 BOM */, NULL, 0, filled_later},
/* Parameter entities */
{"<!DOCTYPE r [\n"
@ -235,11 +240,6 @@ START_TEST(test_accounting_precision) {
"%e1;\n",
"\xEF\xBB\xBF<!ATTLIST doc a1 CDATA 'value'>" /* UTF-8 BOM */,
strlen("\xEF\xBB\xBF<!ATTLIST doc a1 CDATA 'value'>"), filled_later},
{"<!DOCTYPE r [\n"
" <!ENTITY five SYSTEM 'first.ent'>\n"
"]>\n"
"<r>&five;</r>",
"\xEF\xBB\xBF" /* UTF-8 BOM */, NULL, 0, filled_later},
};
const size_t countCases = sizeof(cases) / sizeof(cases[0]);