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

Side by Side 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: Addressed review comments. 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 10 matching lines...) Expand all
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "base/command_line.h"
esprehn 2016/02/18 06:48:13 Why?
Yuki 2016/02/18 13:33:44 I overlooked #include <base/command_line.h> belo
32 #include "base/test/test_io_thread.h"
33 #include "mojo/edk/embedder/embedder.h"
34 #include "mojo/edk/test/scoped_ipc_support.h"
31 #include "platform/EventTracer.h" 35 #include "platform/EventTracer.h"
32 #include "platform/HTTPNames.h" 36 #include "platform/HTTPNames.h"
33 #include "platform/heap/Heap.h" 37 #include "platform/heap/Heap.h"
34 #include "platform/testing/TestingPlatformSupport.h" 38 #include "platform/testing/TestingPlatformSupport.h"
35 #include "wtf/CryptographicallyRandomNumber.h" 39 #include "wtf/CryptographicallyRandomNumber.h"
36 #include "wtf/CurrentTime.h" 40 #include "wtf/CurrentTime.h"
37 #include "wtf/MainThread.h" 41 #include "wtf/MainThread.h"
38 #include "wtf/Partitions.h" 42 #include "wtf/Partitions.h"
39 #include "wtf/WTF.h" 43 #include "wtf/WTF.h"
40 #include <base/bind.h> 44 #include <base/bind.h>
41 #include <base/bind_helpers.h> 45 #include <base/bind_helpers.h>
42 #include <base/command_line.h> 46 #include <base/command_line.h>
43 #include <base/test/launcher/unit_test_launcher.h> 47 #include <base/test/launcher/unit_test_launcher.h>
44 #include <base/test/test_suite.h> 48 #include <base/test/test_suite.h>
45 #include <cc/blink/web_compositor_support_impl.h> 49 #include <cc/blink/web_compositor_support_impl.h>
46 #include <string.h>
47 50
48 static double dummyCurrentTime() 51 namespace {
52
53 double dummyCurrentTime()
49 { 54 {
50 return 0.0; 55 return 0.0;
51 } 56 }
52 57
53 static int runTestSuite(base::TestSuite* testSuite) 58 int runTestSuite(base::TestSuite* testSuite)
54 { 59 {
55 int result = testSuite->Run(); 60 int result = testSuite->Run();
56 blink::Heap::collectAllGarbage(); 61 blink::Heap::collectAllGarbage();
57 return result; 62 return result;
58 } 63 }
59 64
65 } // namespace
66
60 int main(int argc, char** argv) 67 int main(int argc, char** argv)
61 { 68 {
62 base::CommandLine::Init(argc, argv); 69 base::CommandLine::Init(argc, argv);
63 70
64 WTF::Partitions::initialize(nullptr); 71 WTF::Partitions::initialize(nullptr);
65 WTF::setTimeFunctionsForTesting(dummyCurrentTime); 72 WTF::setTimeFunctionsForTesting(dummyCurrentTime);
66 WTF::initialize(nullptr); 73 WTF::initialize(nullptr);
67 WTF::initializeMainThread(0); 74 WTF::initializeMainThread(0);
68 75
69 blink::TestingPlatformSupport::Config platformConfig; 76 blink::TestingPlatformSupport::Config platformConfig;
70 cc_blink::WebCompositorSupportImpl compositorSupport; 77 cc_blink::WebCompositorSupportImpl compositorSupport;
71 platformConfig.compositorSupport = &compositorSupport; 78 platformConfig.compositorSupport = &compositorSupport;
72 blink::TestingPlatformSupport platform(platformConfig); 79 blink::TestingPlatformSupport platform(platformConfig);
73 80
74 blink::Heap::init(); 81 blink::Heap::init();
75 blink::ThreadState::attachMainThread(); 82 blink::ThreadState::attachMainThread();
76 blink::ThreadState::current()->registerTraceDOMWrappers(nullptr, nullptr); 83 blink::ThreadState::current()->registerTraceDOMWrappers(nullptr, nullptr);
77 blink::EventTracer::initialize(); 84 blink::EventTracer::initialize();
78 85
79 blink::HTTPNames::init(); 86 blink::HTTPNames::init();
80 87
81 base::TestSuite testSuite(argc, argv); 88 base::TestSuite testSuite(argc, argv);
89
90 mojo::edk::Init();
91 base::TestIOThread testIoThread(base::TestIOThread::kAutoStart);
92 WTF::OwnPtr<mojo::edk::test::ScopedIPCSupport> ipcSupport(
93 adoptPtr(new mojo::edk::test::ScopedIPCSupport(testIoThread.task_runner( ))));
94
82 int result = base::LaunchUnitTests(argc, argv, base::Bind(runTestSuite, base ::Unretained(&testSuite))); 95 int result = base::LaunchUnitTests(argc, argv, base::Bind(runTestSuite, base ::Unretained(&testSuite)));
83 96
84 blink::ThreadState::detachMainThread(); 97 blink::ThreadState::detachMainThread();
85 blink::Heap::shutdown(); 98 blink::Heap::shutdown();
86 99
87 WTF::shutdown(); 100 WTF::shutdown();
88 WTF::Partitions::shutdown(); 101 WTF::Partitions::shutdown();
89 return result; 102 return result;
90 } 103 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698