diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2018-03-16 21:33:26 -0700 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2018-03-16 21:33:26 -0700 |
commit | fe7b837868b22a3684603327bfaa3242eb8adf22 (patch) | |
tree | c5eb339308826cc7e74973b8062e75468bdadaa7 /tests/test_memory.cpp | |
parent | e50672cf37d4e071a9ab012b4d72a3dc62f1f817 (diff) |
tests: Fix PUGIXML_COMPACT+PUGIXML_WCHAR_MODE tests
Several tests got the buffer size wrong when sizeof(char_t)>1, and one
test didn't meet the carefully tuned allocation criteria under compact
mode due to the hash table usage and had to be changed a bit.
Diffstat (limited to 'tests/test_memory.cpp')
-rw-r--r-- | tests/test_memory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_memory.cpp b/tests/test_memory.cpp index 4acda5b..3258736 100644 --- a/tests/test_memory.cpp +++ b/tests/test_memory.cpp @@ -161,7 +161,7 @@ TEST(memory_page_management) for (size_t i = 0; i < 4000; ++i) { - xml_node node = doc.append_child(STR("node")); + xml_node node = doc.append_child(STR("n")); CHECK(node); nodes.push_back(node); |