| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef BASE_TEST_LAUNCHER_TEST_LAUNCHER_H_ | 5 #ifndef BASE_TEST_LAUNCHER_TEST_LAUNCHER_H_ |
| 6 #define BASE_TEST_LAUNCHER_TEST_LAUNCHER_H_ | 6 #define BASE_TEST_LAUNCHER_TEST_LAUNCHER_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 // Worker pool used to launch processes in parallel. | 194 // Worker pool used to launch processes in parallel. |
| 195 scoped_ptr<SequencedWorkerPoolOwner> worker_pool_owner_; | 195 scoped_ptr<SequencedWorkerPoolOwner> worker_pool_owner_; |
| 196 | 196 |
| 197 DISALLOW_COPY_AND_ASSIGN(TestLauncher); | 197 DISALLOW_COPY_AND_ASSIGN(TestLauncher); |
| 198 }; | 198 }; |
| 199 | 199 |
| 200 // Extract part from |full_output| that applies to |result|. | 200 // Extract part from |full_output| that applies to |result|. |
| 201 std::string GetTestOutputSnippet(const TestResult& result, | 201 std::string GetTestOutputSnippet(const TestResult& result, |
| 202 const std::string& full_output); | 202 const std::string& full_output); |
| 203 | 203 |
| 204 // Returns command line command line after gtest-specific processing | |
| 205 // and applying |wrapper|. | |
| 206 CommandLine PrepareCommandLineForGTest(const CommandLine& command_line, | |
| 207 const std::string& wrapper); | |
| 208 | |
| 209 } // namespace base | 204 } // namespace base |
| 210 | 205 |
| 211 #endif // BASE_TEST_LAUNCHER_TEST_LAUNCHER_H_ | 206 #endif // BASE_TEST_LAUNCHER_TEST_LAUNCHER_H_ |
| OLD | NEW |