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.
This commit is contained in:
Arseny Kapoulkine
2015-04-29 09:21:04 -07:00
parent b2399f5ab5
commit dede617d9f

View File

@@ -12,7 +12,7 @@ namespace
bool is_page(size_t size)
{
return size >= 8192;
return size >= 16384;
}
void* allocate(size_t size)