| Index: tools/test-runtime.dart
|
| diff --git a/tools/test-runtime.dart b/tools/test-runtime.dart
|
| index 47b9f59dd8bf901db445d6b19b4de7519b3f858c..9faa45a65728ad7db385ddb70b92d5ca92bafa59 100755
|
| --- a/tools/test-runtime.dart
|
| +++ b/tools/test-runtime.dart
|
| @@ -30,6 +30,7 @@ main() {
|
| Map<String, RegExp> selectors = firstConf['selectors'];
|
| var maxProcesses = firstConf['tasks'];
|
| var progressIndicator = firstConf['progress'];
|
| + var verbose = firstConf['verbose'];
|
|
|
| var configurationIterator = configurations.iterator();
|
| bool enqueueConfiguration(ProcessQueue queue) {
|
| @@ -64,8 +65,9 @@ main() {
|
| }
|
|
|
| // Start process queue.
|
| - var queue = new ProcessQueue(firstConf['tasks'],
|
| - firstConf['progress'],
|
| + var queue = new ProcessQueue(maxProcesses,
|
| + progressIndicator,
|
| + verbose,
|
| startTime,
|
| enqueueConfiguration);
|
| }
|
|
|