Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2935)

Unified Diff: base/test/launcher/unit_test_launcher.h

Issue 1262693002: test launcher: print test file names and lines in summary results (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/test/launcher/test_results_tracker.cc ('k') | base/test/launcher/unit_test_launcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/launcher/unit_test_launcher.h
diff --git a/base/test/launcher/unit_test_launcher.h b/base/test/launcher/unit_test_launcher.h
index ca00f1048b2d18dd8566640a3d68d56ec3f70520..d5ba153e805c7a66699d290ed51984e04b168658 100644
--- a/base/test/launcher/unit_test_launcher.h
+++ b/base/test/launcher/unit_test_launcher.h
@@ -38,7 +38,7 @@ class UnitTestPlatformDelegate {
public:
// Called to get names of tests available for running. The delegate
// must put the result in |output| and return true on success.
- virtual bool GetTests(std::vector<SplitTestName>* output) = 0;
+ virtual bool GetTests(std::vector<TestIdentifier>* output) = 0;
// Called to create a temporary file. The delegate must put the resulting
// path in |path| and return true on success.
@@ -86,7 +86,7 @@ class UnitTestLauncherDelegate : public TestLauncherDelegate {
private:
// TestLauncherDelegate:
- bool GetTests(std::vector<SplitTestName>* output) override;
+ bool GetTests(std::vector<TestIdentifier>* output) override;
bool ShouldRunTest(const std::string& test_case_name,
const std::string& test_name) override;
size_t RunTests(TestLauncher* test_launcher,
« no previous file with comments | « base/test/launcher/test_results_tracker.cc ('k') | base/test/launcher/unit_test_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698