aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots
diff options
context:
space:
mode:
authorGravatar Ben Wagner <benjaminwagner@google.com>2016-10-17 13:29:02 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-10-17 17:56:24 +0000
commit4320657fd08e381be1750831bd3ac8c3bd0cb327 (patch)
treea86db9d785034de6d559424570a6574453ea0704 /infra/bots
parent4a6b28ef76fb2c8982cd70baebaffe4c63a32bbe (diff)
Increase MSAN timeout from 4 to 9 hours.
Recent runs have been timing out. BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=3562 Change-Id: I891d95fce0506df7ffe6cc57c9d2238bab1e547f Reviewed-on: https://skia-review.googlesource.com/3562 Reviewed-by: Mike Klein <mtklein@chromium.org> Commit-Queue: Ben Wagner <benjaminwagner@google.com>
Diffstat (limited to 'infra/bots')
-rw-r--r--infra/bots/recipes/swarm_trigger.expected/Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Debug-MSAN.json2
-rw-r--r--infra/bots/recipes/swarm_trigger.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/infra/bots/recipes/swarm_trigger.expected/Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Debug-MSAN.json b/infra/bots/recipes/swarm_trigger.expected/Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Debug-MSAN.json
index 2d2e8d3ae9..7ab0c00936 100644
--- a/infra/bots/recipes/swarm_trigger.expected/Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Debug-MSAN.json
+++ b/infra/bots/recipes/swarm_trigger.expected/Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Debug-MSAN.json
@@ -623,7 +623,7 @@
"--io-timeout",
"2400",
"--hard-timeout",
- "14400",
+ "32400",
"--dimension",
"cpu",
"x86-64-avx2",
diff --git a/infra/bots/recipes/swarm_trigger.py b/infra/bots/recipes/swarm_trigger.py
index 7385bfb2cf..15b4d8d2bf 100644
--- a/infra/bots/recipes/swarm_trigger.py
+++ b/infra/bots/recipes/swarm_trigger.py
@@ -448,6 +448,8 @@ def get_timeouts(builder_cfg):
if builder_cfg.get('extra_config', '').startswith('CT_'):
hard_timeout = 24*60*60
io_timeout = 60*60
+ if 'MSAN' in builder_cfg.get('extra_config', ''):
+ hard_timeout = 9*60*60
return expiration, hard_timeout, io_timeout