| Index: tools/testing/dart/test_progress.dart
|
| diff --git a/tools/testing/dart/test_progress.dart b/tools/testing/dart/test_progress.dart
|
| index 773321746121a98932eee4574e604cfa08376491..4589b8da75ad317c1500629c4b641c6b1c9fa8a6 100644
|
| --- a/tools/testing/dart/test_progress.dart
|
| +++ b/tools/testing/dart/test_progress.dart
|
| @@ -504,9 +504,11 @@ class BuildbotProgressIndicator extends ProgressIndicator {
|
| }
|
|
|
| void allDone() {
|
| - if (!_failureSummary.isEmpty && stepName != null) {
|
| + if (!_failureSummary.isEmpty) {
|
| print('@@@STEP_FAILURE@@@');
|
| - print('@@@BUILD_STEP $stepName failures@@@');
|
| + if (stepName != null) {
|
| + print('@@@BUILD_STEP $stepName failures@@@');
|
| + }
|
| for (String line in _failureSummary) {
|
| print(line);
|
| }
|
|
|