Chromium Code Reviews| Index: tools/test.dart |
| diff --git a/tools/test.dart b/tools/test.dart |
| index 218f9964ecb331d8210da6825a37ea847abd936b..01df1c493937d4b681969b68780100a31ddba5a7 100755 |
| --- a/tools/test.dart |
| +++ b/tools/test.dart |
| @@ -80,6 +80,8 @@ void testConfigurations(List<Map> configurations) { |
| Map<String, RegExp> selectors = firstConf['selectors']; |
| var maxProcesses = firstConf['tasks']; |
| var progressIndicator = firstConf['progress']; |
| + // TODO(kustermann): Remove this option once the buildbots don't use it |
| + // anymore. |
| var failureSummary = firstConf['failure-summary']; |
| BuildbotProgressIndicator.stepName = firstConf['step_name']; |
| var verbose = firstConf['verbose']; |
| @@ -195,9 +197,8 @@ void testConfigurations(List<Map> configurations) { |
| eventListener.add(new FlakyLogWriter()); |
| if (printFailures) { |
| // The buildbot has it's own failure summary since it needs to wrap it |
| - // into'@@@'-annotated sections. |
| - var printFaiureSummary = |
| - failureSummary && progressIndicator != 'buildbot'; |
| + // into '@@@'-annotated sections. |
| + var printFaiureSummary = progressIndicator != 'buildbot'; |
|
Bill Hesse
2013/04/11 17:01:57
I would call this variable printFailureSummary, ra
kustermann
2013/04/12 15:08:52
Done.
|
| eventListener.add(new TestFailurePrinter(printFaiureSummary, formatter)); |
| } |
| eventListener.add(new ProgressIndicator.fromName(progressIndicator, |