Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(236)

Unified Diff: tools/testing/dart/test_runner.dart

Issue 807813004: Retry up to 4 times on safari until we have a resolution for issue 21434 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698