From 21d64edfdf313f530dabec1fd751d9a96183508e Mon Sep 17 00:00:00 2001 From: machenbach Date: Thu, 9 Jul 2015 06:56:00 -0700 Subject: [PATCH] [test] Raise timeout for testing without vfp3. TBR=bmeurer@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/1228073002 Cr-Commit-Position: refs/heads/master@{#29554} --- tools/testrunner/local/execution.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/testrunner/local/execution.py b/tools/testrunner/local/execution.py index dccd52a359..4c63fb6e63 100644 --- a/tools/testrunner/local/execution.py +++ b/tools/testrunner/local/execution.py @@ -104,6 +104,8 @@ class Runner(object): "--stress-opt" in self.context.mode_flags or "--stress-opt" in self.context.extra_flags): timeout *= 4 + if "--noenable-vfp3" in self.context.extra_flags: + timeout *= 2 # FIXME(machenbach): Make this more OO. Don't expose default outcomes or # the like. if statusfile.IsSlow(test.outcomes or [statusfile.PASS]):