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

Unified Diff: base/test/launcher/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/gtest_util.cc ('k') | base/test/launcher/test_launcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/launcher/test_launcher.h
diff --git a/base/test/launcher/test_launcher.h b/base/test/launcher/test_launcher.h
index 544df63c6390e2435b7fa011310451cf884dd901..bd86da5696722f7cfbcaf02677c1a568f76f6009 100644
--- a/base/test/launcher/test_launcher.h
+++ b/base/test/launcher/test_launcher.h
@@ -43,7 +43,7 @@ class TestLauncherDelegate {
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 before a test is considered for running. If it returns false,
// the test is not run. If it returns true, the test will be run provided
@@ -160,7 +160,7 @@ class TestLauncher {
std::vector<std::string> negative_test_filter_;
// Tests to use (cached result of TestLauncherDelegate::GetTests).
- std::vector<SplitTestName> tests_;
+ std::vector<TestIdentifier> tests_;
// Number of tests started in this iteration.
size_t test_started_count_;
« no previous file with comments | « base/test/gtest_util.cc ('k') | base/test/launcher/test_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698