Index: third_party/WebKit/Source/platform/testing/RunAllTests.cpp |
diff --git a/third_party/WebKit/Source/platform/testing/RunAllTests.cpp b/third_party/WebKit/Source/platform/testing/RunAllTests.cpp |
index b08dcaf86a364387c68b23a3365af3790a650cc6..a852c3c82cebb30a1b8dd506a3c2bc4c712dcb5f 100644 |
--- a/third_party/WebKit/Source/platform/testing/RunAllTests.cpp |
+++ b/third_party/WebKit/Source/platform/testing/RunAllTests.cpp |
@@ -57,8 +57,9 @@ static int runTestSuite(base::TestSuite* testSuite) |
int main(int argc, char** argv) |
{ |
+ WTF::Partitions::initialize(nullptr); |
WTF::setAlwaysZeroRandomSourceForTesting(); |
- WTF::initialize(CurrentTime, CurrentTime, nullptr, nullptr); |
+ WTF::initialize(CurrentTime, CurrentTime, nullptr); |
WTF::initializeMainThread(0); |
blink::TestingPlatformSupport::Config platformConfig; |
@@ -80,5 +81,6 @@ int main(int argc, char** argv) |
blink::Heap::shutdown(); |
WTF::shutdown(); |
+ WTF::Partitions::shutdown(); |
return result; |
} |