diff options
Diffstat (limited to 'infra/bots')
3 files changed, 6 insertions, 1 deletions
diff --git a/infra/bots/recipes/test.expected/Test-Win10-MSVC-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-ANGLE.json b/infra/bots/recipes/test.expected/Test-Win10-MSVC-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-ANGLE.json index 3a64a0cea4..6839497b9d 100644 --- a/infra/bots/recipes/test.expected/Test-Win10-MSVC-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-ANGLE.json +++ b/infra/bots/recipes/test.expected/Test-Win10-MSVC-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-ANGLE.json @@ -270,6 +270,7 @@ "angle_d3d11_es2", "angle_d3d9_es2", "angle_gl_es2", + "angle_d3d11_es3", "--src", "tests", "gm", diff --git a/infra/bots/recipes/test.expected/Test-Win10-MSVC-ShuttleC-GPU-GTX960-x86_64-Debug-ANGLE.json b/infra/bots/recipes/test.expected/Test-Win10-MSVC-ShuttleC-GPU-GTX960-x86_64-Debug-ANGLE.json index 399bdc7be0..bcb5fe7161 100644 --- a/infra/bots/recipes/test.expected/Test-Win10-MSVC-ShuttleC-GPU-GTX960-x86_64-Debug-ANGLE.json +++ b/infra/bots/recipes/test.expected/Test-Win10-MSVC-ShuttleC-GPU-GTX960-x86_64-Debug-ANGLE.json @@ -270,7 +270,9 @@ "angle_d3d11_es2", "angle_d3d9_es2", "angle_gl_es2", + "angle_d3d11_es3", "angle_d3d11_es2_msaa8", + "angle_d3d11_es3_msaa8", "--src", "tests", "gm", diff --git a/infra/bots/recipes/test.py b/infra/bots/recipes/test.py index ef083a18f2..7dc3873088 100644 --- a/infra/bots/recipes/test.py +++ b/infra/bots/recipes/test.py @@ -129,9 +129,11 @@ def dm_flags(bot): if 'ANGLE' in bot: configs = ['angle_d3d11_es2', 'angle_d3d9_es2', - 'angle_gl_es2'] + 'angle_gl_es2', + 'angle_d3d11_es3'] if sample_count is not '': configs.append('angle_d3d11_es2_msaa' + sample_count) + configs.append('angle_d3d11_es3_msaa' + sample_count) # Vulkan bot *only* runs the vk config. if 'Vulkan' in bot: |