| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 match.append('~scaled_tilemodes_npot') | 227 match.append('~scaled_tilemodes_npot') |
| 228 match.append('~bleed_image') # skia:4367 | 228 match.append('~bleed_image') # skia:4367 |
| 229 match.append('~ReadPixels') # skia:4368 | 229 match.append('~ReadPixels') # skia:4368 |
| 230 | 230 |
| 231 if 'ANGLE' in bot and 'Debug' in bot: | 231 if 'ANGLE' in bot and 'Debug' in bot: |
| 232 match.append('~GLPrograms') # skia:4717 | 232 match.append('~GLPrograms') # skia:4717 |
| 233 | 233 |
| 234 if 'MSAN' in bot: | 234 if 'MSAN' in bot: |
| 235 match.extend(['~Once', '~Shared']) # Not sure what's up with these tests. | 235 match.extend(['~Once', '~Shared']) # Not sure what's up with these tests. |
| 236 | 236 |
| 237 if 'TSAN' in bot: |
| 238 match.extend(['~ReadWriteAlpha']) # Flaky on TSAN-covered on nvidia bots. |
| 239 |
| 237 if blacklist: | 240 if blacklist: |
| 238 args.append('--blacklist') | 241 args.append('--blacklist') |
| 239 args.extend(blacklist) | 242 args.extend(blacklist) |
| 240 | 243 |
| 241 if match: | 244 if match: |
| 242 args.append('--match') | 245 args.append('--match') |
| 243 args.extend(match) | 246 args.extend(match) |
| 244 | 247 |
| 245 # These bots run out of memory running RAW codec tests. Do not run them in | 248 # These bots run out of memory running RAW codec tests. Do not run them in |
| 246 # parallel | 249 # parallel |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 if len(sys.argv) == 2 and sys.argv[1] == 'test': | 299 if len(sys.argv) == 2 and sys.argv[1] == 'test': |
| 297 self_test() | 300 self_test() |
| 298 sys.exit(0) | 301 sys.exit(0) |
| 299 | 302 |
| 300 if len(sys.argv) != 3: | 303 if len(sys.argv) != 3: |
| 301 print usage | 304 print usage |
| 302 sys.exit(1) | 305 sys.exit(1) |
| 303 | 306 |
| 304 with open(sys.argv[1], 'w') as out: | 307 with open(sys.argv[1], 'w') as out: |
| 305 json.dump(get_args(sys.argv[2]), out) | 308 json.dump(get_args(sys.argv[2]), out) |
| OLD | NEW |