diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-04-29 09:21:04 -0700 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-04-29 09:21:04 -0700 |
commit | dede617d9fa5e4483ca5ff5e69510f55fdd3eef5 (patch) | |
tree | a09485494a1884c42a4fbc0da6c541046bd6c0c4 /tests | |
parent | b2399f5ab5b678a59702b77e41692d15410a0c4a (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.cpp | 2 |
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) |