diff options
author | Brian Salomon <bsalomon@google.com> | 2018-07-19 17:01:09 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-07-19 21:27:15 +0000 |
commit | 6a3957c1f9cbeca9107708462150fb766993ac0a (patch) | |
tree | 115275e5c0c7e99b478b4ea5e4308eae0d0d020d | |
parent | a76b7a9ded28ea36a00fc1a59d6e9aec5bd4f29c (diff) |
Exclude gltestpersistentcache from TSAN bot.
This bot occasionally produces empty GM images. We believe this is due
to TSAN's thread scheduling interacting poorly with threaded GL drivers.
gltestpersistentcache fails if the cold cache and hot cache images don't
match and this flakiness causes it to fail intermittently.
Change-Id: Ib914c547120e05fac921d7e70de8e36a53bfb61b
Reviewed-on: https://skia-review.googlesource.com/142591
Commit-Queue: Brian Salomon <bsalomon@google.com>
Commit-Queue: Brian Osman <brianosman@google.com>
Auto-Submit: Brian Salomon <bsalomon@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
-rw-r--r-- | infra/bots/recipes/test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/bots/recipes/test.py b/infra/bots/recipes/test.py index 8ef50581a2..63aa0d7940 100644 --- a/infra/bots/recipes/test.py +++ b/infra/bots/recipes/test.py @@ -248,7 +248,7 @@ def dm_flags(api, bot): # Test 1010102 on our Linux/NVIDIA bots and the persistent cache config # on the GL bots. if ('QuadroP400' in bot and 'PreAbandonGpuContext' not in bot and - api.vars.is_linux): + 'TSAN' not in bot and api.vars.is_linux): if 'Vulkan' in bot: configs.append('vk1010102') # Decoding transparent images to 1010102 just looks bad |