| Index: tools/testing/dart/test_runner.dart
|
| diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart
|
| index 356b664819872c0e5394b56312276e5176a9889d..5ee65846be1795fcc97faa0c6638c2a41a0003da 100644
|
| --- a/tools/testing/dart/test_runner.dart
|
| +++ b/tools/testing/dart/test_runner.dart
|
| @@ -1594,7 +1594,9 @@ class ProcessQueue {
|
| new Timer(100, (_) => _tryRunTest()); // Don't lose a process.
|
| return;
|
| }
|
| - if (_verbose) {
|
| + // Before running any commands, we print out all commands if '--verbose'
|
| + // was specified.
|
| + if (_verbose && test.commandOutputs.length == 0) {
|
| int i = 1;
|
| if (test is BrowserTestCase) {
|
| // Additional command for rerunning the steps locally after the fact.
|
|
|