mirror of
https://github.com/RPCS3/pugixml.git
synced 2026-01-31 01:25:21 +01:00
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:
@@ -12,7 +12,7 @@ namespace
|
||||
|
||||
bool is_page(size_t size)
|
||||
{
|
||||
return size >= 8192;
|
||||
return size >= 16384;
|
||||
}
|
||||
|
||||
void* allocate(size_t size)
|
||||
|
||||
Reference in New Issue
Block a user