| Index: tools/testing/dart/browser_controller.dart
|
| ===================================================================
|
| --- tools/testing/dart/browser_controller.dart (revision 23984)
|
| +++ tools/testing/dart/browser_controller.dart (working copy)
|
| @@ -584,8 +584,12 @@
|
| throw("This should never happen, wrong test id");
|
| }
|
| testCache[testId] = status.currentTest.url;
|
| + DebugLogger.info("Size of output for test $testId : ${output.length}");
|
| + Stopwatch watch = new Stopwatch()..start();
|
| status.currentTest.doneCallback(output,
|
| status.currentTest.stopwatch.elapsed);
|
| + watch.stop();
|
| + DebugLogger.info("Handling of test $testId took : ${watch.elapsed}");
|
| status.lastTest = status.currentTest;
|
| status.currentTest = null;
|
| } else {
|
|
|