diff --git a/infra/bots/recipes/test.expected/Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE.json b/infra/bots/recipes/test.expected/Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE.json index eccd361a86..4263fc7891 100644 --- a/infra/bots/recipes/test.expected/Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE.json +++ b/infra/bots/recipes/test.expected/Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE.json @@ -413,6 +413,7 @@ ".SRW", "--match", "~PinnedImageTest", + "~BlurMaskBiggerThanDest", "--nonativeFonts", "--verbose" ], diff --git a/infra/bots/recipes/test.expected/Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE.json b/infra/bots/recipes/test.expected/Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE.json index 886a408d30..900c6e3c83 100644 --- a/infra/bots/recipes/test.expected/Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE.json +++ b/infra/bots/recipes/test.expected/Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE.json @@ -481,6 +481,8 @@ "gm", "_", "discard", + "--match", + "~BlurMaskBiggerThanDest", "--nonativeFonts", "--verbose" ], diff --git a/infra/bots/recipes/test.expected/Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE.json b/infra/bots/recipes/test.expected/Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE.json index 58ad83df15..b7b7d242c6 100644 --- a/infra/bots/recipes/test.expected/Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE.json +++ b/infra/bots/recipes/test.expected/Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE.json @@ -413,6 +413,8 @@ "gm", "_", "lighting", + "--match", + "~BlurMaskBiggerThanDest", "--nonativeFonts", "--verbose" ], diff --git a/infra/bots/recipes/test.expected/Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE.json b/infra/bots/recipes/test.expected/Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE.json index af54af6eb9..e10b6be059 100644 --- a/infra/bots/recipes/test.expected/Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE.json +++ b/infra/bots/recipes/test.expected/Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE.json @@ -414,6 +414,8 @@ "image", "_", ".SRW", + "--match", + "~BlurMaskBiggerThanDest", "--nonativeFonts", "--verbose" ], diff --git a/infra/bots/recipes/test.py b/infra/bots/recipes/test.py index 849a7a5c09..4262d2ce6d 100644 --- a/infra/bots/recipes/test.py +++ b/infra/bots/recipes/test.py @@ -710,6 +710,10 @@ def dm_flags(api, bot): # skia:7096 match.append('~PinnedImageTest') + if 'ANGLE' in bot: + # skia:7835 + match.append('~BlurMaskBiggerThanDest') + if 'IntelIris540' in bot and 'ANGLE' in bot: for config in ['angle_d3d9_es2', 'angle_d3d11_es2', 'angle_gl_es2']: # skia:6103