OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/command_line.h" | 6 #include "base/command_line.h" |
7 #include "base/files/file_path.h" | |
8 #include "base/test/launcher/unit_test_launcher.h" | 7 #include "base/test/launcher/unit_test_launcher.h" |
9 #include "base/test/test_io_thread.h" | 8 #include "base/test/test_io_thread.h" |
10 #include "build/build_config.h" | 9 #include "build/build_config.h" |
11 #include "content/public/test/unittest_test_suite.h" | 10 #include "content/public/test/unittest_test_suite.h" |
12 #include "content/test/content_test_suite.h" | 11 #include "content/test/content_test_suite.h" |
13 #include "mojo/edk/embedder/scoped_ipc_support.h" | 12 #include "mojo/edk/embedder/scoped_ipc_support.h" |
14 #include "services/catalog/catalog.h" | |
15 | |
16 namespace { | |
17 | |
18 const base::FilePath::CharType kCatalogFilename[] = | |
19 FILE_PATH_LITERAL("content_unittests_catalog.json"); | |
20 | |
21 } // namespace | |
22 | 13 |
23 int main(int argc, char** argv) { | 14 int main(int argc, char** argv) { |
24 content::UnitTestTestSuite test_suite( | 15 content::UnitTestTestSuite test_suite( |
25 new content::ContentTestSuite(argc, argv)); | 16 new content::ContentTestSuite(argc, argv)); |
26 | |
27 catalog::Catalog::LoadDefaultCatalogManifest( | |
28 base::FilePath(kCatalogFilename)); | |
29 | |
30 base::TestIOThread test_io_thread(base::TestIOThread::kAutoStart); | 17 base::TestIOThread test_io_thread(base::TestIOThread::kAutoStart); |
31 mojo::edk::ScopedIPCSupport ipc_support( | 18 mojo::edk::ScopedIPCSupport ipc_support( |
32 test_io_thread.task_runner(), | 19 test_io_thread.task_runner(), |
33 mojo::edk::ScopedIPCSupport::ShutdownPolicy::FAST); | 20 mojo::edk::ScopedIPCSupport::ShutdownPolicy::FAST); |
34 return base::LaunchUnitTests( | 21 return base::LaunchUnitTests( |
35 argc, argv, base::Bind(&content::UnitTestTestSuite::Run, | 22 argc, argv, base::Bind(&content::UnitTestTestSuite::Run, |
36 base::Unretained(&test_suite))); | 23 base::Unretained(&test_suite))); |
37 } | 24 } |
OLD | NEW |