From 119b59ac5dac20ca59f22c6320c1d6615accad42 Mon Sep 17 00:00:00 2001 From: "machenbach@chromium.org" Date: Sun, 8 Sep 2013 19:50:55 +0000 Subject: [PATCH] Increase test timeout on slow architectures. 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/run-tests.py b/tools/run-tests.py index 48682d4..4f212d6 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; -- 2.7.4