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

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

Issue 11096018: Increase dart2js timeout value. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 2 months 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: dart/tools/testing/dart/test_options.dart
diff --git a/dart/tools/testing/dart/test_options.dart b/dart/tools/testing/dart/test_options.dart
index 0250e57600b896ff82fae3c6195c9031087c3d22..af1e50a2d243f2bef8c7e2ed4b2ea51fc5eb8930 100644
--- a/dart/tools/testing/dart/test_options.dart
+++ b/dart/tools/testing/dart/test_options.dart
@@ -547,7 +547,9 @@ Note: currently only implemented for dart2js.''',
timeout *= 4;
break;
case 'dart2js':
- timeout = 30;
+ // TODO(ahe): Restore the timeout of 30 seconds when dart2js
+ // compile-time performance has improved.
+ timeout = 60;
if (configuration['mode'] == 'debug') {
timeout *= 8;
}
« 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