| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index 83cc775284d533451c549ba5f9e865b01b86b127..b9ae4b26eaa79b39958391d39c551c122773ad76 100755
|
| --- a/tools/test.dart
|
| +++ b/tools/test.dart
|
| @@ -7,6 +7,7 @@
|
|
|
| #import("testing/dart/test_runner.dart");
|
| #import("testing/dart/test_options.dart");
|
| +#import("testing/dart/test_progress.dart");
|
|
|
| #import("../tests/standalone/test_config.dart");
|
| #import("../tests/corelib/test_config.dart");
|
| @@ -15,7 +16,8 @@ main() {
|
| var optionsParser = new TestOptionsParser();
|
| var configuration = optionsParser.parse(new Options().arguments);
|
| if (configuration == null) return;
|
| - var queue = new ProcessQueue(configuration['tasks']);
|
| + var queue = new ProcessQueue(configuration['tasks'],
|
| + new CompactProgressIndicator());
|
| new StandaloneTestSuite().forEachTest(queue.runTest);
|
| new CorelibTestSuite().forEachTest(queue.runTest);
|
| }
|
|
|