Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1388)

Unified Diff: Source/platform/testing/RunAllTests.cpp

Issue 1041103002: PartitionAlloc: Centralize Partition allocators into one place (Part 1) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/heap/RunAllTests.cpp ('k') | Source/platform/text/BidiCharacterRun.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/testing/RunAllTests.cpp
diff --git a/Source/platform/testing/RunAllTests.cpp b/Source/platform/testing/RunAllTests.cpp
index eb448a1cee917909cf33212c8f543201397de270..d778f563c9acb859cabeb06af6d37b514437b638 100644
--- a/Source/platform/testing/RunAllTests.cpp
+++ b/Source/platform/testing/RunAllTests.cpp
@@ -31,11 +31,11 @@
#include "config.h"
#include "platform/EventTracer.h"
-#include "platform/Partitions.h"
#include "platform/TestingPlatformSupport.h"
#include "platform/heap/Heap.h"
#include "wtf/CryptographicallyRandomNumber.h"
#include "wtf/MainThread.h"
+#include "wtf/Partitions.h"
#include "wtf/WTF.h"
#include <base/test/test_suite.h>
#include <string.h>
@@ -61,11 +61,11 @@ int main(int argc, char** argv)
blink::Heap::init();
blink::ThreadState::attachMainThread();
- blink::Partitions::init();
blink::EventTracer::initialize();
int result = base::RunUnitTestsUsingBaseTestSuite(argc, argv);
- blink::Partitions::shutdown();
blink::ThreadState::detachMainThread();
blink::Heap::shutdown();
+
+ WTF::shutdown();
return result;
}
« no previous file with comments | « Source/platform/heap/RunAllTests.cpp ('k') | Source/platform/text/BidiCharacterRun.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698