Commit f7111cc9 authored by Zhenyao Mo's avatar Zhenyao Mo Committed by Chromium LUCI CQ

Extend gpu info collection timeout from 5s to 30s on ASAN bots

R=kbr@chromium.org

Bug: 1167875
Change-Id: I7c9d26f91ca130bfbb7b15f8ff9da340eb113f78
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2636375
Commit-Queue: Zhenyao Mo <zmo@chromium.org>
Reviewed-by: default avatarKenneth Russell <kbr@chromium.org>
Cr-Commit-Position: refs/heads/master@{#844939}
parent 16521c1b
......@@ -49,9 +49,10 @@ std::unique_ptr<SystemInfo::Size> GfxSizeToSystemInfoSize(
// Linux and Mac Debug builds need more time -- see Issue 796437, 1046598, and
// 1153667.
// Windows builds need more time -- see Issue 873112 and 1004472.
// ASAN builds need more time -- see Issue 1167875.
#if ((defined(OS_LINUX) || defined(OS_CHROMEOS) || defined(OS_MAC)) && \
!defined(NDEBUG)) || \
defined(OS_WIN)
defined(OS_WIN) || defined(ADDRESS_SANITIZER)
const int kGPUInfoWatchdogTimeoutMs = 30000;
#else
const int kGPUInfoWatchdogTimeoutMs = 5000;
......
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