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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 // |callback| is called on the same thread this method was called. | 92 // |callback| is called on the same thread this method was called. |
93 void LaunchChildGTestProcess(const CommandLine& command_line, | 93 void LaunchChildGTestProcess(const CommandLine& command_line, |
94 const std::string& wrapper, | 94 const std::string& wrapper, |
95 base::TimeDelta timeout, | 95 base::TimeDelta timeout, |
96 bool use_job_objects, | 96 bool use_job_objects, |
97 const LaunchChildGTestProcessCallback& callback); | 97 const LaunchChildGTestProcessCallback& callback); |
98 | 98 |
99 // Called when a test has finished running. | 99 // Called when a test has finished running. |
100 void OnTestFinished(const TestResult& result); | 100 void OnTestFinished(const TestResult& result); |
101 | 101 |
| 102 // Constructs a full test name given a test case name and a test name. |
| 103 static std::string FormatFullTestName(const std::string& test_case_name, |
| 104 const std::string& test_name); |
| 105 |
102 private: | 106 private: |
103 bool Init() WARN_UNUSED_RESULT; | 107 bool Init() WARN_UNUSED_RESULT; |
104 | 108 |
105 // Runs all tests in current iteration. Uses callbacks to communicate success. | 109 // Runs all tests in current iteration. Uses callbacks to communicate success. |
106 void RunTests(); | 110 void RunTests(); |
107 | 111 |
108 void RunTestIteration(); | 112 void RunTestIteration(); |
109 | 113 |
110 // Saves test results summary as JSON if requested from command line. | 114 // Saves test results summary as JSON if requested from command line. |
111 void MaybeSaveSummaryAsJSON(); | 115 void MaybeSaveSummaryAsJSON(); |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 const std::string& full_output); | 191 const std::string& full_output); |
188 | 192 |
189 // Returns command line command line after gtest-specific processing | 193 // Returns command line command line after gtest-specific processing |
190 // and applying |wrapper|. | 194 // and applying |wrapper|. |
191 CommandLine PrepareCommandLineForGTest(const CommandLine& command_line, | 195 CommandLine PrepareCommandLineForGTest(const CommandLine& command_line, |
192 const std::string& wrapper); | 196 const std::string& wrapper); |
193 | 197 |
194 } // namespace base | 198 } // namespace base |
195 | 199 |
196 #endif // BASE_TEST_LAUNCHER_TEST_LAUNCHER_H_ | 200 #endif // BASE_TEST_LAUNCHER_TEST_LAUNCHER_H_ |
OLD | NEW |