Chromium Code Reviews| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 120 if 'Valgrind' in bot: | 120 if 'Valgrind' in bot: |
| 121 # PDF + .webp -> jumps depending on uninitialized memory. skia:3505 | 121 # PDF + .webp -> jumps depending on uninitialized memory. skia:3505 |
| 122 blacklist.extend('pdf _ _ .webp'.split(' ')) | 122 blacklist.extend('pdf _ _ .webp'.split(' ')) |
| 123 # These take 18+ hours to run. | 123 # These take 18+ hours to run. |
| 124 blacklist.extend('pdf gm _ fontmgr_iter'.split(' ')) | 124 blacklist.extend('pdf gm _ fontmgr_iter'.split(' ')) |
| 125 blacklist.extend('pdf _ _ PANO_20121023_214540.jpg'.split(' ')) | 125 blacklist.extend('pdf _ _ PANO_20121023_214540.jpg'.split(' ')) |
| 126 blacklist.extend('pdf skp _ worldjournal'.split(' ')) | 126 blacklist.extend('pdf skp _ worldjournal'.split(' ')) |
| 127 blacklist.extend('pdf skp _ desk_baidu.skp'.split(' ')) | 127 blacklist.extend('pdf skp _ desk_baidu.skp'.split(' ')) |
| 128 blacklist.extend('pdf skp _ desk_wikipedia.skp'.split(' ')) | 128 blacklist.extend('pdf skp _ desk_wikipedia.skp'.split(' ')) |
| 129 | 129 |
| 130 if 'GalaxyS4' in bot: | |
| 131 blacklist.extend('gpu gm tiles_rt imagefilterscropped'.split(' ')) | |
|
mtklein
2015/05/05 14:28:53
I think "tiles_rt-gpu gm _ imagefilterscropped" ou
borenet
2015/05/05 14:55:28
Cool, thanks.
| |
| 132 | |
| 130 if blacklist: | 133 if blacklist: |
| 131 args.append('--blacklist') | 134 args.append('--blacklist') |
| 132 args.extend(blacklist) | 135 args.extend(blacklist) |
| 133 | 136 |
| 134 match = [] | 137 match = [] |
| 135 if 'Valgrind' in bot: # skia:3021 | 138 if 'Valgrind' in bot: # skia:3021 |
| 136 match.append('~Threaded') | 139 match.append('~Threaded') |
| 137 if 'TSAN' in bot: # skia:3562 | 140 if 'TSAN' in bot: # skia:3562 |
| 138 match.append('~Math') | 141 match.append('~Math') |
| 139 | 142 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 192 if len(sys.argv) == 2 and sys.argv[1] == 'test': | 195 if len(sys.argv) == 2 and sys.argv[1] == 'test': |
| 193 self_test() | 196 self_test() |
| 194 sys.exit(0) | 197 sys.exit(0) |
| 195 | 198 |
| 196 if len(sys.argv) != 3: | 199 if len(sys.argv) != 3: |
| 197 print usage | 200 print usage |
| 198 sys.exit(1) | 201 sys.exit(1) |
| 199 | 202 |
| 200 with open(sys.argv[1], 'w') as out: | 203 with open(sys.argv[1], 'w') as out: |
| 201 json.dump(get_args(sys.argv[2]), out) | 204 json.dump(get_args(sys.argv[2]), out) |
| OLD | NEW |