OLD | NEW |
1 # | 1 # |
2 # Copyright 2015 Google Inc. | 2 # Copyright 2015 Google Inc. |
3 # | 3 # |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 # | 6 # |
7 | 7 |
8 #!/usr/bin/env python | 8 #!/usr/bin/env python |
9 | 9 |
10 usage = ''' | 10 usage = ''' |
(...skipping 17 matching lines...) Expand all Loading... |
28 cov_start = lineno()+1 # We care about coverage starting just past this def. | 28 cov_start = lineno()+1 # We care about coverage starting just past this def. |
29 def get_args(bot): | 29 def get_args(bot): |
30 args = [] | 30 args = [] |
31 | 31 |
32 configs = ['565', '8888', 'gpu'] | 32 configs = ['565', '8888', 'gpu'] |
33 | 33 |
34 if 'Android' not in bot: | 34 if 'Android' not in bot: |
35 configs.extend(('upright-matrix-8888', 'upright-matrix-gpu')) | 35 configs.extend(('upright-matrix-8888', 'upright-matrix-gpu')) |
36 args.extend('--matrix 0 1 1 0'.split(' ')) | 36 args.extend('--matrix 0 1 1 0'.split(' ')) |
37 | 37 |
| 38 if '-GCE-' in bot: |
| 39 configs.append('sp-8888') |
| 40 |
38 if 'TegraK1' in bot or 'GTX550Ti' in bot or 'GTX660' in bot or 'GT610' in bot: | 41 if 'TegraK1' in bot or 'GTX550Ti' in bot or 'GTX660' in bot or 'GT610' in bot: |
39 if 'Android' in bot: | 42 if 'Android' in bot: |
40 configs.append('nvprmsaa4') | 43 configs.append('nvprmsaa4') |
41 else: | 44 else: |
42 configs.append('nvprmsaa16') | 45 configs.append('nvprmsaa16') |
43 | 46 |
44 # The S4 crashes and the NP produces a long error stream when we run with | 47 # The S4 crashes and the NP produces a long error stream when we run with |
45 # MSAA. The Tegra2 and Tegra3 just don't support it. | 48 # MSAA. The Tegra2 and Tegra3 just don't support it. |
46 if ('GalaxyS4' not in bot and | 49 if ('GalaxyS4' not in bot and |
47 'NexusPlayer' not in bot and | 50 'NexusPlayer' not in bot and |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 if len(sys.argv) == 2 and sys.argv[1] == 'test': | 215 if len(sys.argv) == 2 and sys.argv[1] == 'test': |
213 self_test() | 216 self_test() |
214 sys.exit(0) | 217 sys.exit(0) |
215 | 218 |
216 if len(sys.argv) != 3: | 219 if len(sys.argv) != 3: |
217 print usage | 220 print usage |
218 sys.exit(1) | 221 sys.exit(1) |
219 | 222 |
220 with open(sys.argv[1], 'w') as out: | 223 with open(sys.argv[1], 'w') as out: |
221 json.dump(get_args(sys.argv[2]), out) | 224 json.dump(get_args(sys.argv[2]), out) |
OLD | NEW |