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

Unified Diff: sky/tools/webkitpy/layout_tests/port/base.py

Issue 741603002: Give release builds more time. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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: sky/tools/webkitpy/layout_tests/port/base.py
diff --git a/sky/tools/webkitpy/layout_tests/port/base.py b/sky/tools/webkitpy/layout_tests/port/base.py
index c14f8a5f14e72f6a8825a4866a2dbf51f082861f..8303faff0d437a126095ba4843151b8cb923dc69 100644
--- a/sky/tools/webkitpy/layout_tests/port/base.py
+++ b/sky/tools/webkitpy/layout_tests/port/base.py
@@ -245,10 +245,11 @@ class Port(object):
return False
def default_timeout_ms(self):
- timeout_ms = 6 * 1000
- if self.get_option('configuration') == 'Debug':
- # Debug is usually 2x-3x slower than Release.
- return 3 * timeout_ms
+ # TODO(esprehn): Remove this hack.
+ timeout_ms = 30 * 1000
+ # if self.get_option('configuration') == 'Debug':
+ # # Debug is usually 2x-3x slower than Release.
+ # return 3 * timeout_ms
return timeout_ms
def driver_stop_timeout(self):
« 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