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

Unified Diff: tools/run-tests.py

Issue 24037002: Increase test timeout on slow architectures. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 3 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: tools/run-tests.py
diff --git a/tools/run-tests.py b/tools/run-tests.py
index 48682d4444e586c8b48b1c146898b0dc17468ba8..4f212d605c25a6b59d9033e6eaa861ad28a9826c 100755
--- a/tools/run-tests.py
+++ b/tools/run-tests.py
@@ -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;
« 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