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

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

Issue 832583003: tools: Refactored SummaryReport and move it to its own library (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: nits Created 5 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
« no previous file with comments | « tools/testing/dart/summary_report.dart ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_progress.dart
diff --git a/tools/testing/dart/test_progress.dart b/tools/testing/dart/test_progress.dart
index bb31d29f6922a3ecf3b37fb303bb8f945c9f42aa..a4507dc425cdec0291bd129cc322c85ff08335ad 100644
--- a/tools/testing/dart/test_progress.dart
+++ b/tools/testing/dart/test_progress.dart
@@ -10,6 +10,7 @@ import "dart:io" as io;
import "dart:convert" show JSON;
import "path.dart";
import "status_file_parser.dart";
+import "summary_report.dart";
import "test_runner.dart";
import "test_suite.dart";
import "utils.dart";
@@ -308,8 +309,8 @@ class UnexpectedCrashDumpArchiver extends EventListener {
class SummaryPrinter extends EventListener {
void allTestsKnown() {
- if (SummaryReport.total > 0) {
- SummaryReport.printReport();
+ if (summaryReport.total > 0) {
+ summaryReport.printReport();
}
}
}
« no previous file with comments | « tools/testing/dart/summary_report.dart ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698