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

Side by Side Diff: ipc/run_all_unittests.cc

Issue 2620633004: Remove mojo::edk::test::ScopedIPCSupport (Closed)
Patch Set: . Created 3 years, 11 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
« no previous file with comments | « ipc/run_all_perftests.cc ('k') | mojo/edk/embedder/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/bind.h" 5 #include "base/bind.h"
6 #include "base/test/launcher/unit_test_launcher.h" 6 #include "base/test/launcher/unit_test_launcher.h"
7 #include "base/test/multiprocess_test.h" 7 #include "base/test/multiprocess_test.h"
8 #include "base/test/test_io_thread.h" 8 #include "base/test/test_io_thread.h"
9 #include "base/test/test_suite.h" 9 #include "base/test/test_suite.h"
10 #include "build/build_config.h" 10 #include "build/build_config.h"
11 #include "mojo/edk/embedder/embedder.h" 11 #include "mojo/edk/embedder/embedder.h"
12 #include "mojo/edk/test/scoped_ipc_support.h" 12 #include "mojo/edk/embedder/scoped_ipc_support.h"
13 13
14 #if defined(OS_MACOSX) && !defined(OS_IOS) 14 #if defined(OS_MACOSX) && !defined(OS_IOS)
15 #include "base/mac/mach_port_broker.h" 15 #include "base/mac/mach_port_broker.h"
16 #endif 16 #endif
17 17
18 int main(int argc, char** argv) { 18 int main(int argc, char** argv) {
19 base::TestSuite test_suite(argc, argv); 19 base::TestSuite test_suite(argc, argv);
20 mojo::edk::Init(); 20 mojo::edk::Init();
21 base::TestIOThread test_io_thread(base::TestIOThread::kAutoStart); 21 base::TestIOThread test_io_thread(base::TestIOThread::kAutoStart);
22 // Leak this because its destructor calls mojo::edk::ShutdownIPCSupport which 22 mojo::edk::ScopedIPCSupport ipc_support(
23 // really does nothing in the new EDK but does depend on the current message 23 test_io_thread.task_runner(),
24 // loop, which is destructed inside base::LaunchUnitTests. 24 mojo::edk::ScopedIPCSupport::ShutdownPolicy::CLEAN);
25 new mojo::edk::test::ScopedIPCSupport(test_io_thread.task_runner());
26 25
27 #if defined(OS_MACOSX) && !defined(OS_IOS) 26 #if defined(OS_MACOSX) && !defined(OS_IOS)
28 base::MachPortBroker mach_broker("mojo_test"); 27 base::MachPortBroker mach_broker("mojo_test");
29 CHECK(mach_broker.Init()); 28 CHECK(mach_broker.Init());
30 mojo::edk::SetMachPortProvider(&mach_broker); 29 mojo::edk::SetMachPortProvider(&mach_broker);
31 #endif 30 #endif
32 31
33 return base::LaunchUnitTests( 32 return base::LaunchUnitTests(
34 argc, argv, 33 argc, argv,
35 base::Bind(&base::TestSuite::Run, base::Unretained(&test_suite))); 34 base::Bind(&base::TestSuite::Run, base::Unretained(&test_suite)));
36 } 35 }
OLDNEW
« no previous file with comments | « ipc/run_all_perftests.cc ('k') | mojo/edk/embedder/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698