| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 blacklist.extend('pdf skp _ worldjournal'.split(' ')) | 127 blacklist.extend('pdf skp _ worldjournal'.split(' ')) |
| 128 blacklist.extend('pdf skp _ desk_baidu.skp'.split(' ')) | 128 blacklist.extend('pdf skp _ desk_baidu.skp'.split(' ')) |
| 129 blacklist.extend('pdf skp _ desk_wikipedia.skp'.split(' ')) | 129 blacklist.extend('pdf skp _ desk_wikipedia.skp'.split(' ')) |
| 130 | 130 |
| 131 if 'iOS' in bot: | 131 if 'iOS' in bot: |
| 132 blacklist.extend('gpu skp _ _ msaa skp _ _'.split(' ')) | 132 blacklist.extend('gpu skp _ _ msaa skp _ _'.split(' ')) |
| 133 blacklist.extend('gpu image decode _ msaa image decode _'.split(' ')) | 133 blacklist.extend('gpu image decode _ msaa image decode _'.split(' ')) |
| 134 blacklist.extend('gpu image subset _ msaa image subset _'.split(' ')) | 134 blacklist.extend('gpu image subset _ msaa image subset _'.split(' ')) |
| 135 blacklist.extend('msaa16 gm _ tilemodesProcess'.split(' ')) | 135 blacklist.extend('msaa16 gm _ tilemodesProcess'.split(' ')) |
| 136 | 136 |
| 137 if 'GalaxyS4' in bot: |
| 138 # This occasionally runs forever. skia:3802 |
| 139 blacklist.extend('tiles_rt-gpu gm _ imagefilterscropped'.split(' ')) |
| 140 |
| 137 if blacklist: | 141 if blacklist: |
| 138 args.append('--blacklist') | 142 args.append('--blacklist') |
| 139 args.extend(blacklist) | 143 args.extend(blacklist) |
| 140 | 144 |
| 141 match = [] | 145 match = [] |
| 142 if 'Valgrind' in bot: # skia:3021 | 146 if 'Valgrind' in bot: # skia:3021 |
| 143 match.append('~Threaded') | 147 match.append('~Threaded') |
| 144 if 'TSAN' in bot: # skia:3562 | 148 if 'TSAN' in bot: # skia:3562 |
| 145 match.append('~Math') | 149 match.append('~Math') |
| 146 | 150 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 if len(sys.argv) == 2 and sys.argv[1] == 'test': | 206 if len(sys.argv) == 2 and sys.argv[1] == 'test': |
| 203 self_test() | 207 self_test() |
| 204 sys.exit(0) | 208 sys.exit(0) |
| 205 | 209 |
| 206 if len(sys.argv) != 3: | 210 if len(sys.argv) != 3: |
| 207 print usage | 211 print usage |
| 208 sys.exit(1) | 212 sys.exit(1) |
| 209 | 213 |
| 210 with open(sys.argv[1], 'w') as out: | 214 with open(sys.argv[1], 'w') as out: |
| 211 json.dump(get_args(sys.argv[2]), out) | 215 json.dump(get_args(sys.argv[2]), out) |
| OLD | NEW |