aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipes/test.py
diff options
context:
space:
mode:
authorGravatar Yuqian Li <liyuqian@google.com>2017-10-17 10:11:21 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-10-17 15:17:02 +0000
commit84be3ad50193a1d165246f2a9ecdb4e3fcdf9fc4 (patch)
tree913a7a2fcff423445f701c29020e5d89fbe05dc2 /infra/bots/recipes/test.py
parentdd340146f1fe7414702d6fea251da989d425691e (diff)
Add tests that force a specific CPU scan converter
This would allow us to have more test coverage on specific scan converters which may help us detect some wierd bugs such as crbug.com/774008 Bug: chromium:774008 Change-Id: I9213b11bb47ce48a6eff8da494e1b2699d386ae9 Reviewed-on: https://skia-review.googlesource.com/60540 Reviewed-by: Mike Klein <mtklein@google.com> Reviewed-by: Eric Boren <borenet@google.com> Commit-Queue: Yuqian Li <liyuqian@google.com>
Diffstat (limited to 'infra/bots/recipes/test.py')
-rw-r--r--infra/bots/recipes/test.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/infra/bots/recipes/test.py b/infra/bots/recipes/test.py
index fc6a08b9cb..61c0efbb2d 100644
--- a/infra/bots/recipes/test.py
+++ b/infra/bots/recipes/test.py
@@ -682,6 +682,13 @@ def dm_flags(api, bot):
or 'Win8-MSVC-ShuttleB' in bot):
args.append('--noRAW_threading')
+ if 'FSAA' in bot:
+ args.extend(['--analyticAA', 'false', '--deltaAA', 'false'])
+ if 'FAAA' in bot:
+ args.extend(['--deltaAA', 'false', '--forceAnalyticAA'])
+ if 'FDAA' in bot:
+ args.extend(['--deltaAA', '--forceDeltaAA'])
+
# Let's make all bots produce verbose output by default.
args.append('--verbose')
@@ -898,6 +905,9 @@ TEST_BUILDERS = [
'Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan',
'Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-Vulkan',
'Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-Vulkan',
+ 'Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-Vulkan_FSAA',
+ 'Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-Vulkan_FAAA',
+ 'Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-Vulkan_FDAA',
'Test-Win10-MSVC-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE',
'Test-Win10-MSVC-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE',
'Test-Win10-MSVC-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE',