diff options
author | Brian Salomon <bsalomon@google.com> | 2016-10-20 10:14:45 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2016-10-20 16:16:31 +0000 |
commit | 4a5e49dc6e970c4edb21f0797774082181682163 (patch) | |
tree | deb1d65c4e73b2c57610bfe243db2d9df4bf852d /infra | |
parent | a35ab3e6e024d0b548ded26a2e3b8ecd838ead93 (diff) |
Run ANGLE in GL mode on test bots
CQ_INCLUDE_TRYBOTS=master.client.skia:Test-Win-MSVC-ShuttleC-GPU-GTX960-x86_64-Debug-ANGLE-Trybot
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=3724
Change-Id: Ic3d6efcb331ac3947026476e357e76214f2ccdf8
Reviewed-on: https://skia-review.googlesource.com/3724
Reviewed-by: Brian Osman <brianosman@google.com>
Commit-Queue: Brian Salomon <bsalomon@google.com>
Diffstat (limited to 'infra')
-rw-r--r-- | infra/bots/recipes/swarm_test.expected/Test-Win8-MSVC-ShuttleB-GPU-GTX960-x86_64-Debug-ANGLE.json | 1 | ||||
-rw-r--r-- | infra/bots/recipes/swarm_test.py | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/infra/bots/recipes/swarm_test.expected/Test-Win8-MSVC-ShuttleB-GPU-GTX960-x86_64-Debug-ANGLE.json b/infra/bots/recipes/swarm_test.expected/Test-Win8-MSVC-ShuttleB-GPU-GTX960-x86_64-Debug-ANGLE.json index e09e5fd6c7..1f79dbd209 100644 --- a/infra/bots/recipes/swarm_test.expected/Test-Win8-MSVC-ShuttleB-GPU-GTX960-x86_64-Debug-ANGLE.json +++ b/infra/bots/recipes/swarm_test.expected/Test-Win8-MSVC-ShuttleB-GPU-GTX960-x86_64-Debug-ANGLE.json @@ -223,6 +223,7 @@ "angle_d3d11_es2", "angle_d3d9_es2", "angle_d3d11_es2_msaa4", + "angle_gl_es2", "--src", "tests", "gm", diff --git a/infra/bots/recipes/swarm_test.py b/infra/bots/recipes/swarm_test.py index d35373353c..a84de4624b 100644 --- a/infra/bots/recipes/swarm_test.py +++ b/infra/bots/recipes/swarm_test.py @@ -134,7 +134,10 @@ def dm_flags(bot): # ANGLE bot *only* runs the angle configs if 'ANGLE' in bot: - configs = ['angle_d3d11_es2', 'angle_d3d9_es2', 'angle_d3d11_es2_msaa4'] + configs = ['angle_d3d11_es2', + 'angle_d3d9_es2', + 'angle_d3d11_es2_msaa4', + 'angle_gl_es2'] # Vulkan bot *only* runs the vk config. if 'Vulkan' in bot: |