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

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

Issue 1448833003: Run Oilpan GC in blink_platform_unittests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move registerTraceDOMWrappers call Created 5 years, 1 month 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 | « no previous file | third_party/WebKit/Source/platform/weborigin/OriginAccessEntryTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 d63549b2954f32c12b87e8dffb6d39cf23cd761b..4b132cc65f6137794a999ba022409a742d0974b3 100644
--- a/third_party/WebKit/Source/platform/testing/RunAllTests.cpp
+++ b/third_party/WebKit/Source/platform/testing/RunAllTests.cpp
@@ -37,6 +37,9 @@
#include "wtf/MainThread.h"
#include "wtf/Partitions.h"
#include "wtf/WTF.h"
+#include <base/bind.h>
+#include <base/bind_helpers.h>
+#include <base/test/launcher/unit_test_launcher.h>
#include <base/test/test_suite.h>
#include <string.h>
@@ -50,6 +53,13 @@ static void AlwaysZeroNumberSource(unsigned char* buf, size_t len)
memset(buf, '\0', len);
}
+static int runTestSuite(base::TestSuite* testSuite)
+{
+ int result = testSuite->Run();
+ blink::Heap::collectAllGarbage();
+ return result;
+}
+
int main(int argc, char** argv)
{
WTF::setRandomSource(AlwaysZeroNumberSource);
@@ -61,8 +71,12 @@ int main(int argc, char** argv)
blink::Heap::init();
blink::ThreadState::attachMainThread();
+ blink::ThreadState::current()->registerTraceDOMWrappers(nullptr, nullptr);
blink::EventTracer::initialize();
- int result = base::RunUnitTestsUsingBaseTestSuite(argc, argv);
+
+ base::TestSuite testSuite(argc, argv);
+ int result = base::LaunchUnitTests(argc, argv, base::Bind(runTestSuite, base::Unretained(&testSuite)));
+
blink::ThreadState::detachMainThread();
blink::Heap::shutdown();
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/weborigin/OriginAccessEntryTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698