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

Unified Diff: tools/testing/dart/test_suite.dart

Issue 9148062: Let test.dart's compact progress indicator be overwritten by the summary report. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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
Index: tools/testing/dart/test_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index 426f86baea4871182fc9d38d9261325be208e56d..3de8a1b8adc09d775f646dc644a8de44acb8b62d 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -1003,16 +1003,15 @@ class SummaryReport {
static void printReport() {
if (total == 0) return;
Bill Hesse 2012/01/12 12:53:36 The \ at the end of a line does not seem to elimin
- String report = """\
-Total: $total tests
+ String report = """Total: $total tests
* $skipped tests will be skipped
* $noCrash tests are expected to be flaky but not crash
* $pass tests are expected to pass
* $failOk tests are expected to fail that we won't fix
* $fail tests are expected to fail that we should fix
* $crash tests are expected to crash that we should fix
- * $timeout tests are allowed to timeout\
+ * $timeout tests are allowed to timeout
""";
print(report);
- }
+ }
Bill Hesse 2012/01/12 12:53:36 Fix this.
}
« tools/testing/dart/test_progress.dart ('K') | « tools/testing/dart/test_progress.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698