summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2015-04-29 09:21:04 -0700
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2015-04-29 09:21:04 -0700
commitdede617d9fa5e4483ca5ff5e69510f55fdd3eef5 (patch)
treea09485494a1884c42a4fbc0da6c541046bd6c0c4 /tests
parentb2399f5ab5b678a59702b77e41692d15410a0c4a (diff)
tests: Fix spurious failures in compact mode
The memory_large_allocations test sometimes classified hash allocations as page allocations since hash table could reach 512 entries.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_memory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_memory.cpp b/tests/test_memory.cpp
index 5edfd65..a571353 100644
--- a/tests/test_memory.cpp
+++ b/tests/test_memory.cpp
@@ -12,7 +12,7 @@ namespace
bool is_page(size_t size)
{
- return size >= 8192;
+ return size >= 16384;
}
void* allocate(size_t size)