Commit 9a3fa07f authored by earthdok@chromium.org's avatar earthdok@chromium.org

MSan: increase the test timeout multiplier to 6x.

BUG=178409
TBR=phajdan.jr@chromium.org
NOTRY=true

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285891 0039d316-1c4b-4281-b951-d872f2087c98
parent 07b3d32a
......@@ -17,7 +17,9 @@ namespace {
// ASan/TSan/MSan instrument each memory access. This may slow the execution
// down significantly.
#if defined(MEMORY_SANITIZER)
static const int kTimeoutMultiplier = 4;
// For MSan the slowdown depends heavily on the value of msan_track_origins GYP
// flag. The multiplier below corresponds to msan_track_origins=1.
static const int kTimeoutMultiplier = 6;
#elif defined(ADDRESS_SANITIZER) || defined(THREAD_SANITIZER) || \
defined(SYZYASAN)
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