summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2017-02-08 01:18:11 -0800
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2017-02-08 01:18:11 -0800
commit02c599f52b8817916405b4263da3616a55f77632 (patch)
treed0f05edb06d4ee5a9b278d050082533ff679098a
parentb98c914053769c8b356b572629dce818034b27a4 (diff)
tests: Increase the number of translate calls
This should make the test fail on a 32-bit target.
-rw-r--r--tests/test_xpath.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_xpath.cpp b/tests/test_xpath.cpp
index 417440b..69513fc 100644
--- a/tests/test_xpath.cpp
+++ b/tests/test_xpath.cpp
@@ -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("'')");