| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index 47c62b39667e570c9b3d72b0ffada247db62dc29..c373427add3c1dc25e5c4b79c02c24068fdbd31b 100755
|
| --- a/tools/test.dart
|
| +++ b/tools/test.dart
|
| @@ -38,6 +38,7 @@ main() {
|
| var progressIndicator = firstConf['progress'];
|
| var verbose = firstConf['verbose'];
|
| var printTiming = firstConf['time'];
|
| + var listTests = firstConf['list'];
|
|
|
| var configurationIterator = configurations.iterator();
|
| bool enqueueConfiguration(ProcessQueue queue) {
|
| @@ -101,8 +102,9 @@ main() {
|
| // Start process queue.
|
| var queue = new ProcessQueue(maxProcesses,
|
| progressIndicator,
|
| - verbose,
|
| startTime,
|
| printTiming,
|
| - enqueueConfiguration);
|
| + enqueueConfiguration,
|
| + verbose: verbose,
|
| + listTests: listTests);
|
| }
|
|
|