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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 match.append('~Threaded') | 179 match.append('~Threaded') |
180 | 180 |
181 if 'GalaxyS3' in bot: # skia:1699 | 181 if 'GalaxyS3' in bot: # skia:1699 |
182 match.append('~WritePixels') | 182 match.append('~WritePixels') |
183 | 183 |
184 if 'NexusPlayer' in bot: | 184 if 'NexusPlayer' in bot: |
185 match.append('~ResourceCache') | 185 match.append('~ResourceCache') |
186 | 186 |
187 if 'iOS' in bot: | 187 if 'iOS' in bot: |
188 match.append('~WritePixels') | 188 match.append('~WritePixels') |
| 189 match.append('~GLInstancedArraysBench') # skia:4714 |
189 | 190 |
190 if 'GalaxyS4' in bot: # skia:4079 | 191 if 'GalaxyS4' in bot: # skia:4079 |
191 match.append('~imagefiltersclipped') | 192 match.append('~imagefiltersclipped') |
192 match.append('~imagefilterscropexpand') | 193 match.append('~imagefilterscropexpand') |
193 match.append('~scaled_tilemodes_npot') | 194 match.append('~scaled_tilemodes_npot') |
194 match.append('~bleed_image') # skia:4367 | 195 match.append('~bleed_image') # skia:4367 |
195 match.append('~ReadPixels') # skia:4368 | 196 match.append('~ReadPixels') # skia:4368 |
196 | 197 |
197 if match: | 198 if match: |
198 args.append('--match') | 199 args.append('--match') |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 if len(sys.argv) == 2 and sys.argv[1] == 'test': | 242 if len(sys.argv) == 2 and sys.argv[1] == 'test': |
242 self_test() | 243 self_test() |
243 sys.exit(0) | 244 sys.exit(0) |
244 | 245 |
245 if len(sys.argv) != 3: | 246 if len(sys.argv) != 3: |
246 print usage | 247 print usage |
247 sys.exit(1) | 248 sys.exit(1) |
248 | 249 |
249 with open(sys.argv[1], 'w') as out: | 250 with open(sys.argv[1], 'w') as out: |
250 json.dump(get_args(sys.argv[2]), out) | 251 json.dump(get_args(sys.argv[2]), out) |
OLD | NEW |