| Index: tools/testing/dart/test_runner.dart
|
| ===================================================================
|
| --- tools/testing/dart/test_runner.dart (revision 23951)
|
| +++ tools/testing/dart/test_runner.dart (working copy)
|
| @@ -1667,7 +1667,7 @@
|
| }
|
|
|
| void _startBrowserControllerTest(var test) {
|
| - var callback = (var output) {
|
| + var callback = (var output, var duration) {
|
| var nextCommandIndex = test.commandOutputs.keys.length;
|
| new CommandOutput.fromCase(test,
|
| test.commands[nextCommandIndex],
|
| @@ -1676,7 +1676,7 @@
|
| output == "TIMEOUT",
|
| encodeUtf8(output),
|
| [],
|
| - const Duration(seconds: 1),
|
| + duration,
|
| false);
|
| test.completedHandler(test);
|
| };
|
|
|