aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/dm_flags.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/dm_flags.py')
-rwxr-xr-xtools/dm_flags.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/dm_flags.py b/tools/dm_flags.py
index 5c22a33d0d..fb4522c74a 100755
--- a/tools/dm_flags.py
+++ b/tools/dm_flags.py
@@ -50,6 +50,13 @@ def get_args(bot):
else:
configs.append('nvprdit16')
+ # We want to test the OpenGL config not the GLES config on the X1
+ if 'TegraX1' in bot:
+ configs.remove('gpu')
+ configs.remove('gpusrgb')
+ configs.append('gl')
+ configs.append('glsrgb')
+
# The S4 crashes and the NP produces a long error stream when we run with
# MSAA. The Tegra2 and Tegra3 just don't support it.
if ('GalaxyS4' not in bot and
@@ -261,6 +268,7 @@ def self_test():
'Test-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Debug-ANGLE',
'Test-Mac10.8-Clang-MacMini4.1-CPU-SSE4-x86_64-Release',
'Test-Mac-Clang-MacMini4.1-GPU-GeForce320M-x86_64-Release',
+ 'Test-Android-GCC-NVIDIA_Shield-GPU-TegraX1-Arm64-Release',
]
cov = coverage.coverage()