aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipes/test.py
diff options
context:
space:
mode:
authorGravatar Robert Phillips <robertphillips@google.com>2018-04-11 13:45:08 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-04-11 18:22:47 +0000
commit69eb83557facb40b3933ad5066248a35146cdd15 (patch)
tree5914c84c68bad7ec81d5d054cc0914a66a38bff2 /infra/bots/recipes/test.py
parent29e81529ba09e267af3954abe7cb83dacaa8af54 (diff)
Add Vulkan to the DDL bots
This cannot land before: https://skia-review.googlesource.com/c/skia/+/118989 (Get ViaDDL working with Vulkan) Change-Id: If6e2cdc51c7fb0b709bfa49a7c8a8d75f324eaae Reviewed-on: https://skia-review.googlesource.com/120121 Reviewed-by: Eric Boren <borenet@google.com> Commit-Queue: Robert Phillips <robertphillips@google.com>
Diffstat (limited to 'infra/bots/recipes/test.py')
-rw-r--r--infra/bots/recipes/test.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/infra/bots/recipes/test.py b/infra/bots/recipes/test.py
index 9f05700c7f..97973a37b9 100644
--- a/infra/bots/recipes/test.py
+++ b/infra/bots/recipes/test.py
@@ -239,12 +239,13 @@ def dm_flags(api, bot):
# DDL is a GPU-only feature
if 'DDL1' in bot:
- # Just run gl for now but render the large skps
- configs = ['gl']
+ # This bot generates gl and vk comparison images for the large skps
+ configs = [c for c in configs if c == 'gl' or c == 'vk']
args.extend(['--skpViewportSize', "2048"])
if 'DDL3' in bot:
- # Just run ddl-gl for now but render the large skps
- configs = ['ddl-gl']
+ # This bot generates the ddl-gl and ddl-vk images for the
+ # large skps and the gms
+ configs = ['ddl-' + c for c in configs if c == 'gl' or c == 'vk']
args.extend(['--skpViewportSize', "2048"])
tf = api.vars.builder_cfg.get('test_filter')
@@ -561,8 +562,10 @@ def dm_flags(api, bot):
if 'DDL3' in bot:
match.append('~shadermaskfilter_image') # skia:7751
- match.append('~imagefilterscropped') # skia:7751
- match.append('~animated-image-blurs') # skia:7751
+ match.append('~persp_shaders_bw') # skia:7751
+ match.append('~persp_shaders_aa') # skia:7751
+ match.append('~imagefilterscropped') # skia:7755
+ match.append('~animated-image-blurs') # skia:7755
if 'Chromecast' in bot:
if 'GPU' in bot: