Chromium Code Reviews| Index: utils/testrunner/standard_test_runner.dart |
| =================================================================== |
| --- utils/testrunner/standard_test_runner.dart (revision 13306) |
| +++ utils/testrunner/standard_test_runner.dart (working copy) |
| @@ -2,6 +2,9 @@ |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| +// dart2js is not handling 'part of' properly yet; when it does uncomment this. |
|
Siggi Cherem (dart-lang)
2012/10/05 21:37:51
ditto
|
| +//part of test_controller; |
| + |
| /** Path to DRT executable. */ |
| String drt; |
| @@ -160,6 +163,9 @@ |
| var msg = formatListMessage('$testfile ', '$g '); |
| print('###$msg'); |
| } |
| + if (notifyDone != null) { |
|
Siggi Cherem (dart-lang)
2012/10/05 21:37:51
I don't see what's the relation of this part of th
|
| + notifyDone(0); |
| + } |
| } |
| listTests() { |
| @@ -177,6 +183,9 @@ |
| var msg = formatListMessage('$testfile ', '$groupName ', '$testName '); |
| print('###$msg'); |
| } |
| + if (notifyDone != null) { |
| + notifyDone(0); |
| + } |
| } |
| // Support for running in isolates. |