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

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

Issue 1538803002: Migrates battery_status from content/renderer/ to WebKit/platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Synced. Created 4 years, 10 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
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 605fbef0ac1e944b1c9f3397ffa0dd1d9103e40f..69caa00390fbd3299790d689ec51dd49b77609df 100644
--- a/third_party/WebKit/Source/platform/testing/RunAllTests.cpp
+++ b/third_party/WebKit/Source/platform/testing/RunAllTests.cpp
@@ -28,6 +28,9 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include "base/test/test_io_thread.h"
+#include "mojo/edk/embedder/embedder.h"
+#include "mojo/edk/test/scoped_ipc_support.h"
#include "platform/EventTracer.h"
#include "platform/HTTPNames.h"
#include "platform/heap/Heap.h"
@@ -43,20 +46,23 @@
#include <base/test/launcher/unit_test_launcher.h>
#include <base/test/test_suite.h>
#include <cc/blink/web_compositor_support_impl.h>
-#include <string.h>
-static double dummyCurrentTime()
+namespace {
+
+double dummyCurrentTime()
{
return 0.0;
}
-static int runTestSuite(base::TestSuite* testSuite)
+int runTestSuite(base::TestSuite* testSuite)
{
int result = testSuite->Run();
blink::Heap::collectAllGarbage();
return result;
}
+} // namespace
+
int main(int argc, char** argv)
{
base::CommandLine::Init(argc, argv);
@@ -79,6 +85,12 @@ int main(int argc, char** argv)
blink::HTTPNames::init();
base::TestSuite testSuite(argc, argv);
+
+ mojo::edk::Init();
+ base::TestIOThread testIoThread(base::TestIOThread::kAutoStart);
+ WTF::OwnPtr<mojo::edk::test::ScopedIPCSupport> ipcSupport(
+ adoptPtr(new mojo::edk::test::ScopedIPCSupport(testIoThread.task_runner())));
+
int result = base::LaunchUnitTests(argc, argv, base::Bind(runTestSuite, base::Unretained(&testSuite)));
blink::ThreadState::detachMainThread();

Powered by Google App Engine
This is Rietveld 408576698