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

Unified Diff: base/test/gtest_xml_util.cc

Issue 418093004: Factored out duplicate code for formatting full test name (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed bug Created 6 years, 4 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 | « no previous file | base/test/launcher/test_launcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/gtest_xml_util.cc
diff --git a/base/test/gtest_xml_util.cc b/base/test/gtest_xml_util.cc
index 75d023a49d9b493c1e156f67133c04818ed75f5e..f52c2f6bfa2b98b1307b67727931eddf6419d623 100644
--- a/base/test/gtest_xml_util.cc
+++ b/base/test/gtest_xml_util.cc
@@ -146,7 +146,8 @@ bool ProcessGTestOutput(const base::FilePath& output_file,
std::string test_name;
if (!xml_reader.NodeAttribute("name", &test_name))
return false;
- result.full_name = test_case_name + "." + test_name;
+ result.full_name = TestLauncher::FormatFullTestName(test_case_name,
+ test_name);
result.elapsed_time = TimeDelta();
« no previous file with comments | « no previous file | base/test/launcher/test_launcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698