diff --git a/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All.json b/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All.json index 86c3bc7bfe..b997f8a2cd 100644 --- a/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All.json +++ b/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All.json @@ -495,14 +495,14 @@ "_", "GrShape", "--match", - "~GM_animated-image-blurs", - "~verylarge", - "~ImageFilterBlurLargeImage", - "~TextBlobCache", "~bigbitmaprect_", - "~savelayer_clipmask", "~DrawBitmapRect", "~drawbitmaprect", + "~GM_animated-image-blurs", + "~ImageFilterBlurLargeImage", + "~savelayer_clipmask", + "~TextBlobCache", + "~verylarge", "--nonativeFonts", "--verbose" ], diff --git a/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All.json b/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All.json index 22756c7d9e..1dda08c1b4 100644 --- a/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All.json +++ b/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All.json @@ -592,22 +592,23 @@ "_", ".SRW", "--match", - "~matrixconvolution", - "~blur_image_filter", - "~blur_0.01", - "~lighting", - "~imageblur2", "~animated-image-blurs", + "~blur_0.01", + "~blur_image_filter", + "~imageblur2", + "~lighting", + "~longpathdash", + "~matrixconvolution", "~textblobmixedsizes_df", "~textblobrandomfont", - "~GM_animated-image-blurs", - "~verylarge", - "~ImageFilterBlurLargeImage", - "~TextBlobCache", "~bigbitmaprect_", - "~savelayer_clipmask", "~DrawBitmapRect", "~drawbitmaprect", + "~GM_animated-image-blurs", + "~ImageFilterBlurLargeImage", + "~savelayer_clipmask", + "~TextBlobCache", + "~verylarge", "--nonativeFonts", "--verbose" ], diff --git a/infra/bots/recipes/test.py b/infra/bots/recipes/test.py index 5d05363a98..4115043cb7 100644 --- a/infra/bots/recipes/test.py +++ b/infra/bots/recipes/test.py @@ -522,23 +522,24 @@ def dm_flags(api, bot): if 'Chromecast' in bot: if 'GPU' in bot: # skia:6687 - match.append('~matrixconvolution') - match.append('~blur_image_filter') - match.append('~blur_0.01') - match.append('~lighting') - match.append('~imageblur2') match.append('~animated-image-blurs') + match.append('~blur_0.01') + match.append('~blur_image_filter') + match.append('~imageblur2') + match.append('~lighting') + match.append('~longpathdash') + match.append('~matrixconvolution') match.append('~textblobmixedsizes_df') match.append('~textblobrandomfont') # Blacklisted to avoid OOM (we see DM just end with "broken pipe") - match.append('~GM_animated-image-blurs') - match.append('~verylarge') - match.append('~ImageFilterBlurLargeImage') - match.append('~TextBlobCache') match.append('~bigbitmaprect_') - match.append('~savelayer_clipmask') match.append('~DrawBitmapRect') match.append('~drawbitmaprect') + match.append('~GM_animated-image-blurs') + match.append('~ImageFilterBlurLargeImage') + match.append('~savelayer_clipmask') + match.append('~TextBlobCache') + match.append('~verylarge') if 'GalaxyS6' in bot: match.append('~SpecialImage') # skia:6338