• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
3 // found in the LICENSE file.
4 
5 // Copied from mojo/core/test/run_all_perftests.cc.
6 
7 #include "base/command_line.h"
8 #include "base/test/perf_test_suite.h"
9 #include "base/test/test_io_thread.h"
10 #include "mojo/core/embedder/embedder.h"
11 #include "mojo/core/embedder/scoped_ipc_support.h"
12 #include "mojo/core/test/test_support_impl.h"
13 
main(int argc,char ** argv)14 int main(int argc, char** argv) {
15   base::PerfTestSuite test(argc, argv);
16 
17   mojo::core::Init();
18   base::TestIOThread test_io_thread(base::TestIOThread::kAutoStart);
19   mojo::core::ScopedIPCSupport ipc_support(
20       test_io_thread.task_runner(),
21       mojo::core::ScopedIPCSupport::ShutdownPolicy::CLEAN);
22   mojo::test::TestSupport::Init(new mojo::core::test::TestSupportImpl());
23 
24   return test.Run();
25 }
26