| 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):
|
|
|