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