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

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

Issue 10854156: Add a support for a slow marker in status files. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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
Index: tools/testing/dart/test_options.dart
===================================================================
--- tools/testing/dart/test_options.dart (revision 10699)
+++ tools/testing/dart/test_options.dart (working copy)
@@ -547,7 +547,7 @@
timeout *= 4;
break;
case 'dart2js':
- case 'frog':
+ timeout = 30;
if (configuration['mode'] == 'debug') {
timeout *= 8;
}
@@ -556,7 +556,7 @@
}
if (Contains(configuration['runtime'],
const ['ie', 'ff', 'chrome', 'safari', 'opera'])) {
- timeout *= 4; // Allow additional time for browser testing to run.
+ timeout *= 8; // Allow additional time for browser testing to run.
}
break;
default:

Powered by Google App Engine
This is Rietveld 408576698