| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index 83cc775284d533451c549ba5f9e865b01b86b127..965637249e3434a67bcca3fdf7e855666afc80fd 100755
|
| --- a/tools/test.dart
|
| +++ b/tools/test.dart
|
| @@ -16,6 +16,6 @@ main() {
|
| var configuration = optionsParser.parse(new Options().arguments);
|
| if (configuration == null) return;
|
| var queue = new ProcessQueue(configuration['tasks']);
|
| - new StandaloneTestSuite().forEachTest(queue.runTest);
|
| - new CorelibTestSuite().forEachTest(queue.runTest);
|
| + new StandaloneTestSuite(configuration).forEachTest(queue.runTest);
|
| + new CorelibTestSuite(configuration).forEachTest(queue.runTest);
|
| }
|
|
|