0
0
mirror of https://github.com/zeux/pugixml.git synced 2024-12-26 21:04:25 +08:00

tests: Increase the number of translate calls

This should make the test fail on a 32-bit target.
This commit is contained in:
Arseny Kapoulkine 2017-02-08 01:18:11 -08:00
parent 4bab082a27
commit e748f435e5

View File

@ -525,9 +525,9 @@ TEST_XML(xpath_memory_translate_table, "<node>a</node>")
{
test_runner::_memory_fail_threshold = 32768 + 4096 + 128;
// 128b per table => we need 32 translate calls to exhaust a page
// 128b per table => we need 32+ translate calls to exhaust a page
std::basic_string<char_t> query = STR("concat(");
for (int i = 0; i < 32; ++i)
for (int i = 0; i < 64; ++i)
query += STR("translate(.,'a','A'),");
query += STR("'')");