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

Unified Diff: base/test/test_launcher.cc

Issue 24892002: GTTF: Fix handling of PRE_ tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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/test_launcher.h ('k') | content/public/test/test_launcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/test_launcher.cc
diff --git a/base/test/test_launcher.cc b/base/test/test_launcher.cc
index 23fe90430ef6d47f56d71910aea7e97e08fe57e0..462f4d455015fc5961a4a039eb09b3cbbfe5c8da 100644
--- a/base/test/test_launcher.cc
+++ b/base/test/test_launcher.cc
@@ -351,6 +351,8 @@ void ResultsPrinter::AddTestResult(const TestResult& result) {
status_line.append("(TIMED OUT)");
} else if (result.status == TestResult::TEST_CRASH) {
status_line.append("(CRASHED)");
+ } else if (result.status == TestResult::TEST_SKIPPED) {
+ status_line.append("(SKIPPED)");
} else if (result.status == TestResult::TEST_UNKNOWN) {
status_line.append("(UNKNOWN)");
} else {
@@ -371,6 +373,7 @@ void ResultsPrinter::AddTestResult(const TestResult& result) {
PrintTestsByStatus(TestResult::TEST_FAILURE, "failed");
PrintTestsByStatus(TestResult::TEST_TIMEOUT, "timed out");
PrintTestsByStatus(TestResult::TEST_CRASH, "crashed");
+ PrintTestsByStatus(TestResult::TEST_SKIPPED, "skipped");
PrintTestsByStatus(TestResult::TEST_UNKNOWN, "had unknown result");
callback_.Run(
« no previous file with comments | « base/test/test_launcher.h ('k') | content/public/test/test_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698