diff --git a/infra/bots/recipes/test.expected/Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind_PreAbandonGpuContext.json b/infra/bots/recipes/test.expected/Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind_PreAbandonGpuContext.json index d0dd3ce7e0..73d46332c1 100644 --- a/infra/bots/recipes/test.expected/Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind_PreAbandonGpuContext.json +++ b/infra/bots/recipes/test.expected/Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind_PreAbandonGpuContext.json @@ -494,6 +494,7 @@ ".SRW", "--match", "~Threaded", + "~multipicturedraw_", "--verbose", "--preAbandonGpuContext" ], diff --git a/infra/bots/recipes/test.py b/infra/bots/recipes/test.py index 2c26ad9d0d..049eb26af4 100644 --- a/infra/bots/recipes/test.py +++ b/infra/bots/recipes/test.py @@ -389,6 +389,10 @@ def dm_flags(bot): if 'Valgrind' in bot: # skia:3021 match.append('~Threaded') + if 'Valgrind' in bot and 'PreAbandonGpuContext' in bot: + # skia:6575 + match.append('~multipicturedraw_') + if 'CommandBuffer' in bot: # https://crbug.com/697030 match.append('~HalfFloatAlphaTextureTest')