From 4320657fd08e381be1750831bd3ac8c3bd0cb327 Mon Sep 17 00:00:00 2001 From: Ben Wagner Date: Mon, 17 Oct 2016 13:29:02 -0400 Subject: 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 Commit-Queue: Ben Wagner --- .../Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Debug-MSAN.json | 2 +- infra/bots/recipes/swarm_trigger.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'infra/bots') 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 -- cgit v1.2.3