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

Unified Diff: content/public/test/test_launcher.cc

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/unit_test_launcher.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/test_launcher.cc
diff --git a/content/public/test/test_launcher.cc b/content/public/test/test_launcher.cc
index 596a1252479105eff78ef6235aa5d705575e54d4..63532ee102e92cf2c6a55b2dbc6305412444c037 100644
--- a/content/public/test/test_launcher.cc
+++ b/content/public/test/test_launcher.cc
@@ -120,7 +120,7 @@ class WrapperTestLauncherDelegate : public base::TestLauncherDelegate {
}
// base::TestLauncherDelegate:
- bool GetTests(std::vector<base::SplitTestName>* output) override;
+ bool GetTests(std::vector<base::TestIdentifier>* output) override;
bool ShouldRunTest(const std::string& test_case_name,
const std::string& test_name) override;
size_t RunTests(base::TestLauncher* test_launcher,
@@ -173,7 +173,7 @@ class WrapperTestLauncherDelegate : public base::TestLauncherDelegate {
};
bool WrapperTestLauncherDelegate::GetTests(
- std::vector<base::SplitTestName>* output) {
+ std::vector<base::TestIdentifier>* output) {
*output = base::GetCompiledInTests();
return true;
}
« no previous file with comments | « base/test/launcher/unit_test_launcher.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698