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" |
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
331 | 331 |
332 base::i18n::InitializeICU(); | 332 base::i18n::InitializeICU(); |
333 | 333 |
334 CatchMaybeTests(); | 334 CatchMaybeTests(); |
335 ResetCommandLine(); | 335 ResetCommandLine(); |
336 #if !defined(OS_IOS) | 336 #if !defined(OS_IOS) |
337 AddTestLauncherResultPrinter(); | 337 AddTestLauncherResultPrinter(); |
338 #endif // !defined(OS_IOS) | 338 #endif // !defined(OS_IOS) |
339 | 339 |
340 TestTimeouts::Initialize(); | 340 TestTimeouts::Initialize(); |
| 341 |
| 342 trace_to_file_.BeginTracingFromCommandLineOptions(); |
341 } | 343 } |
342 | 344 |
343 void TestSuite::Shutdown() { | 345 void TestSuite::Shutdown() { |
344 } | 346 } |
OLD | NEW |