Commit 68fb0260 authored by Nico Weber's avatar Nico Weber

Speculatively increase the test timeout for win/asan.

BUG=412471
TBR=timurrrr@chromium.org

Review URL: https://codereview.chromium.org/558733002

Cr-Commit-Position: refs/heads/master@{#293993}
parent f9d0c0ca
...@@ -20,6 +20,10 @@ namespace { ...@@ -20,6 +20,10 @@ namespace {
// For MSan the slowdown depends heavily on the value of msan_track_origins GYP // For MSan the slowdown depends heavily on the value of msan_track_origins GYP
// flag. The multiplier below corresponds to msan_track_origins=1. // flag. The multiplier below corresponds to msan_track_origins=1.
static const int kTimeoutMultiplier = 6; static const int kTimeoutMultiplier = 6;
#elif defined(ADDRESS_SANITIZER) && defined(OS_WIN)
// Asan/Win has not been optimized yet, give it a higher
// timeout multiplier. See http://crbug.com/412471
static const int kTimeoutMultiplier = 3;
#elif defined(ADDRESS_SANITIZER) || defined(THREAD_SANITIZER) || \ #elif defined(ADDRESS_SANITIZER) || defined(THREAD_SANITIZER) || \
defined(SYZYASAN) defined(SYZYASAN)
static const int kTimeoutMultiplier = 2; static const int kTimeoutMultiplier = 2;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment