| 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());
|
| }
|
|
|