Chromium Code Reviews| Index: tools/dm_flags.py |
| diff --git a/tools/dm_flags.py b/tools/dm_flags.py |
| index 0296c3a5aa86894b6f6c3121bf04d5ad3bc41f90..4346d85ce83037edd5d28cfc278cccbc4769bc88 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: |
|
bsalomon
2016/04/04 14:38:38
The X1 is currently not running any nvpr configs.
|
| + 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 |
| @@ -262,6 +269,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() |