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/test/test_suite.h" | 5 #include "base/test/test_suite.h" |
6 | 6 |
7 #include "base/at_exit.h" | 7 #include "base/at_exit.h" |
8 #include "base/base_paths.h" | 8 #include "base/base_paths.h" |
9 #include "base/base_switches.h" | 9 #include "base/base_switches.h" |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
12 #include "base/debug/debugger.h" | 12 #include "base/debug/debugger.h" |
13 #include "base/debug/stack_trace.h" | 13 #include "base/debug/stack_trace.h" |
14 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
15 #include "base/files/file_util.h" | 15 #include "base/files/file_util.h" |
16 #include "base/i18n/icu_util.h" | 16 #include "base/i18n/icu_util.h" |
17 #include "base/logging.h" | 17 #include "base/logging.h" |
18 #include "base/memory/scoped_ptr.h" | 18 #include "base/memory/scoped_ptr.h" |
19 #include "base/path_service.h" | 19 #include "base/path_service.h" |
20 #include "base/process/memory.h" | 20 #include "base/process/memory.h" |
| 21 #include "base/test/gtest_xml_unittest_result_printer.h" |
21 #include "base/test/gtest_xml_util.h" | 22 #include "base/test/gtest_xml_util.h" |
22 #include "base/test/launcher/unit_test_launcher.h" | 23 #include "base/test/launcher/unit_test_launcher.h" |
23 #include "base/test/multiprocess_test.h" | 24 #include "base/test/multiprocess_test.h" |
24 #include "base/test/test_switches.h" | 25 #include "base/test/test_switches.h" |
25 #include "base/test/test_timeouts.h" | 26 #include "base/test/test_timeouts.h" |
26 #include "base/time/time.h" | 27 #include "base/time/time.h" |
27 #include "testing/gmock/include/gmock/gmock.h" | 28 #include "testing/gmock/include/gmock/gmock.h" |
28 #include "testing/gtest/include/gtest/gtest.h" | 29 #include "testing/gtest/include/gtest/gtest.h" |
29 #include "testing/multiprocess_func_list.h" | 30 #include "testing/multiprocess_func_list.h" |
30 | 31 |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 | 349 |
349 TestTimeouts::Initialize(); | 350 TestTimeouts::Initialize(); |
350 | 351 |
351 trace_to_file_.BeginTracingFromCommandLineOptions(); | 352 trace_to_file_.BeginTracingFromCommandLineOptions(); |
352 } | 353 } |
353 | 354 |
354 void TestSuite::Shutdown() { | 355 void TestSuite::Shutdown() { |
355 } | 356 } |
356 | 357 |
357 } // namespace base | 358 } // namespace base |
OLD | NEW |