Increase test timeout on slow architectures.
authormachenbach@chromium.org <machenbach@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Sun, 8 Sep 2013 19:50:55 +0000 (19:50 +0000)
committermachenbach@chromium.org <machenbach@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Sun, 8 Sep 2013 19:50:55 +0000 (19:50 +0000)
BUG=
R=jkummerow@chromium.org

Review URL: https://codereview.chromium.org/24037002

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@16582 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

tools/run-tests.py

index 48682d4..4f212d6 100755 (executable)
@@ -293,7 +293,7 @@ def Execute(arch, mode, args, options, suites, workspace):
   if timeout == -1:
     # Simulators are slow, therefore allow a longer default timeout.
     if arch in SLOW_ARCHS:
-      timeout = 2 * TIMEOUT_DEFAULT;
+      timeout = 3 * TIMEOUT_DEFAULT;
     else:
       timeout = TIMEOUT_DEFAULT;