Chromium Code Reviews| Index: tools/testing/dart/test_runner.dart |
| =================================================================== |
| --- tools/testing/dart/test_runner.dart (revision 42423) |
| +++ tools/testing/dart/test_runner.dart (working copy) |
| @@ -154,7 +154,7 @@ |
| : super._(displayName, executable, arguments, environmentOverrides); |
| Future<bool> get outputIsUpToDate { |
| - if (_neverSkipCompilation) return new Future.value(false); |
| + if (true) return new Future.value(false); |
|
floitsch
2014/12/17 09:55:25
debug?
ricow1
2014/12/17 09:57:14
yes, thanks
|
| Future<List<Uri>> readDepsFile(String path) { |
| var file = new io.File(new Path(path).toNativePath()); |
| @@ -293,6 +293,8 @@ |
| url]; |
| return parts.map(escapeCommandLineArgument).join(' '); |
| } |
| + |
| + int get maxNumRetries => 4; |
| } |
| class BrowserHtmlTestCommand extends BrowserTestCommand { |