| Index: tools/testing/dart/test_options.dart
|
| diff --git a/tools/testing/dart/test_options.dart b/tools/testing/dart/test_options.dart
|
| index 0d6e72104c2ba26b03e0ae059a0104ef2aabc10f..654138320050b4a44fedde74742e3c0cdbe0aad8 100644
|
| --- a/tools/testing/dart/test_options.dart
|
| +++ b/tools/testing/dart/test_options.dart
|
| @@ -294,8 +294,9 @@ is 'dart file.dart' and you specify special command
|
| configuration['special-command'] = 'python -u $valgrind @';
|
| }
|
|
|
| - // Use verbose progress indication for verbose output.
|
| - if (configuration['verbose']) {
|
| + // Use verbose progress indication for verbose output unless buildbot
|
| + // progress indication is requested.
|
| + if (configuration['verbose'] && configuration['progress'] != 'buildbot') {
|
| configuration['progress'] = 'verbose';
|
| }
|
|
|
|
|