Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(530)

Side by Side Diff: tools/dm_flags.py

Issue 1115303004: Blacklist tiles_rt-gpu gm imagefilterscropped on GalaxyS4 (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698