Index: tools/testing/dart/test_runner.dart |
diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart |
index 5ca47fcb3b69700e1a1a352e1510ccddc7893b1d..65757bc0b5620ef222b162168cc8674d0040df83 100644 |
--- a/tools/testing/dart/test_runner.dart |
+++ b/tools/testing/dart/test_runner.dart |
@@ -191,10 +191,12 @@ class ProcessQueue { |
ProgressIndicator progress; |
var onDone; |
- ProcessQueue(Map configuration, this.onDone) |
+ ProcessQueue(int this.maxProcesses, |
+ String progress, |
+ Date start_time, |
+ this.onDone) |
: tests = new Queue<TestCase>(), |
- maxProcesses = configuration['tasks'], |
- progress = new ProgressIndicator.fromName(configuration['progress']); |
+ progress = new ProgressIndicator.fromName(progress, start_time); |
tryRunTest() { |
if (tests.isEmpty() && numProcesses == 0) { |