| Index: infra/bots/recipes/swarm_test.py
|
| diff --git a/infra/bots/recipes/swarm_test.py b/infra/bots/recipes/swarm_test.py
|
| index abb421430fc4ab572d7dd79b70049ed52a7f0aad..4639d557562a5d7bbed2b1030adf708dac270571 100644
|
| --- a/infra/bots/recipes/swarm_test.py
|
| +++ b/infra/bots/recipes/swarm_test.py
|
| @@ -30,6 +30,7 @@ TEST_BUILDERS = {
|
| 'Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-GN_Android',
|
| 'Test-Android-Clang-Nexus10-GPU-MaliT604-arm-Release-GN_Android',
|
| 'Test-Android-Clang-Nexus6-GPU-Adreno420-arm-Debug-GN_Android',
|
| + 'Test-Android-Clang-Nexus6p-GPU-Adreno430-arm64-Debug-GN_Android_Vulkan',
|
| 'Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-GN_Android',
|
| 'Test-Android-Clang-Nexus9-CPU-Denver-arm64-Debug-GN_Android',
|
| 'Test-Android-Clang-NexusPlayer-CPU-SSE4-x86-Release-GN_Android',
|
| @@ -326,6 +327,12 @@ def dm_flags(bot):
|
| if 'TSAN' in bot:
|
| match.extend(['~ReadWriteAlpha']) # Flaky on TSAN-covered on nvidia bots.
|
|
|
| + if 'Vulkan' in bot and 'Adreno' in bot:
|
| + # skia:5777
|
| + match.extend(['~XfermodeImageFilterCroppedInput',
|
| + '~GrTextureStripAtlasFlush',
|
| + '~CopySurface'])
|
| +
|
| if blacklisted:
|
| args.append('--blacklist')
|
| args.extend(blacklisted)
|
|
|