| Index: Source/wtf/PartitionAllocTest.cpp
|
| diff --git a/Source/wtf/PartitionAllocTest.cpp b/Source/wtf/PartitionAllocTest.cpp
|
| index 32660794557d02daf49f5ca0b5c329fbf3e7ec74..53b5d4d5e449df98f30b013dd0dc98cad0d1277b 100644
|
| --- a/Source/wtf/PartitionAllocTest.cpp
|
| +++ b/Source/wtf/PartitionAllocTest.cpp
|
| @@ -1494,7 +1494,7 @@ TEST(PartitionAllocTest, Purge)
|
| EXPECT_EQ(WTF::kSystemPageSize, stats->freeableBytes);
|
| EXPECT_EQ(WTF::kSystemPageSize, stats->residentBytes);
|
| }
|
| - partitionPurgeMemory(genericAllocator.root());
|
| + partitionPurgeMemoryGeneric(genericAllocator.root());
|
| {
|
| MockPartitionStatsDumper mockStatsDumperGeneric;
|
| partitionDumpStatsGeneric(genericAllocator.root(), "mock_generic_allocator", &mockStatsDumperGeneric);
|
| @@ -1508,7 +1508,7 @@ TEST(PartitionAllocTest, Purge)
|
| }
|
| // Calling purge again here is a good way of testing we didn't mess up the
|
| // state of the free cache ring.
|
| - partitionPurgeMemory(genericAllocator.root());
|
| + partitionPurgeMemoryGeneric(genericAllocator.root());
|
| TestShutdown();
|
| }
|
|
|
|
|