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:
parent
b2399f5ab5
commit
dede617d9f
@ -12,7 +12,7 @@ namespace
|
||||
|
||||
bool is_page(size_t size)
|
||||
{
|
||||
return size >= 8192;
|
||||
return size >= 16384;
|
||||
}
|
||||
|
||||
void* allocate(size_t size)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user