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

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

Issue 847873004: Outputing comma-separated report with percentages (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
Index: tools/testing/dart/test_configurations.dart
diff --git a/tools/testing/dart/test_configurations.dart b/tools/testing/dart/test_configurations.dart
index 382d0e701bfa6fb1bf94429206c52cb7959ec323..313ad5553d2e3bcb530bf6c35b2dfcc20cf82bf5 100644
--- a/tools/testing/dart/test_configurations.dart
+++ b/tools/testing/dart/test_configurations.dart
@@ -62,6 +62,8 @@ void testConfigurations(List<Map> configurations) {
var printTiming = firstConf['time'];
var listTests = firstConf['list'];
+ var jsonOnly = firstConf['jsonOnly'];
+
var recordingPath = firstConf['record_to_file'];
var recordingOutputPath = firstConf['replay_from_file'];
@@ -266,7 +268,7 @@ void testConfigurations(List<Map> configurations) {
// The only progress indicator when listing tests should be the
// the summary printer.
if (listTests) {
- eventListener.add(new SummaryPrinter());
+ eventListener.add(new SummaryPrinter(jsonOnly: jsonOnly));
} else {
eventListener.add(new ExitCodeSetter());
}

Powered by Google App Engine
This is Rietveld 408576698