| Index: tools/testing/dart/test_runner.dart
|
| diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart
|
| index 2b0bc37ca88d03162f216fc55d9ef351d0d741c5..b7767ced45c3d161f8596d8b939ac72df5f2b18a 100644
|
| --- a/tools/testing/dart/test_runner.dart
|
| +++ b/tools/testing/dart/test_runner.dart
|
| @@ -184,10 +184,11 @@ class ProcessQueue {
|
| ProcessQueue(Map configuration, this.onDone)
|
| : tests = new Queue<TestCase>(),
|
| maxProcesses = configuration['tasks'],
|
| - progress = new CompactProgressIndicator();
|
| + progress = new ProgressIndicator.fromName(configuration['progress']);
|
|
|
| tryRunTest() {
|
| if (tests.isEmpty() && numProcesses == 0) {
|
| + progress.allDone();
|
| onDone();
|
| }
|
| if (numProcesses < maxProcesses && !tests.isEmpty()) {
|
|
|