| Index: dart/tools/testing/dart/test_progress.dart
|
| diff --git a/dart/tools/testing/dart/test_progress.dart b/dart/tools/testing/dart/test_progress.dart
|
| index 0147663522bc42ac508950c9c954e48642f0bfa4..13907a43267cddc693aadf9df24079fb58df8473 100644
|
| --- a/dart/tools/testing/dart/test_progress.dart
|
| +++ b/dart/tools/testing/dart/test_progress.dart
|
| @@ -404,6 +404,9 @@ class DiffProgressIndicator extends ColorProgressIndicator {
|
| List<String> configs =
|
| statusToConfigs.putIfAbsent(status, () => <String>[]);
|
| configs.add(test.configurationString);
|
| + if (test.output.hasTimedOut) {
|
| + print('\n${test.displayName} timed out on ${test.configurationString}');
|
| + }
|
| }
|
|
|
| String _extractRuntime(String configuration) {
|
|
|