| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index 965637249e3434a67bcca3fdf7e855666afc80fd..92fd4195da86e895c3cdc4fd5344372a0ed546d7 100755
|
| --- a/tools/test.dart
|
| +++ b/tools/test.dart
|
| @@ -13,9 +13,12 @@
|
|
|
| main() {
|
| var optionsParser = new TestOptionsParser();
|
| - var configuration = optionsParser.parse(new Options().arguments);
|
| - if (configuration == null) return;
|
| - var queue = new ProcessQueue(configuration['tasks']);
|
| - new StandaloneTestSuite(configuration).forEachTest(queue.runTest);
|
| - new CorelibTestSuite(configuration).forEachTest(queue.runTest);
|
| + var configurations = optionsParser.parse(new Options().arguments);
|
| + if (configurations == null) return;
|
| + print(configurations.length);
|
| + var queue = new ProcessQueue(configurations[0]['tasks']);
|
| + for (var conf in configurations) {
|
| + new StandaloneTestSuite(conf).forEachTest(queue.runTest);
|
| + new CorelibTestSuite(conf).forEachTest(queue.runTest);
|
| + }
|
| }
|
|
|