From dede617d9fa5e4483ca5ff5e69510f55fdd3eef5 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Wed, 29 Apr 2015 09:21:04 -0700 Subject: 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. --- tests/test_memory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3