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

Side by Side Diff: tools/dm_flags.py

Issue 1070013002: expand pdf/worldjournal blacklist entry to cover the new skp too (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 8 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 | « tools/dm_flags.json ('k') | 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 blacklist.extend('gpu skp _ _ msaa skp _ _'.split(' ')) 98 blacklist.extend('gpu skp _ _ msaa skp _ _'.split(' '))
99 blacklist.extend('gpu image decode _ msaa image decode _'.split(' ')) 99 blacklist.extend('gpu image decode _ msaa image decode _'.split(' '))
100 blacklist.extend('gpu image subset _ msaa image subset _'.split(' ')) 100 blacklist.extend('gpu image subset _ msaa image subset _'.split(' '))
101 101
102 if 'Valgrind' in bot: 102 if 'Valgrind' in bot:
103 # PDF + .webp -> jumps depending on uninitialized memory. skia:3505 103 # PDF + .webp -> jumps depending on uninitialized memory. skia:3505
104 blacklist.extend('pdf _ _ .webp'.split(' ')) 104 blacklist.extend('pdf _ _ .webp'.split(' '))
105 # These take 18+ hours to run. 105 # These take 18+ hours to run.
106 blacklist.extend('pdf gm _ fontmgr_iter'.split(' ')) 106 blacklist.extend('pdf gm _ fontmgr_iter'.split(' '))
107 blacklist.extend('pdf _ _ PANO_20121023_214540.jpg'.split(' ')) 107 blacklist.extend('pdf _ _ PANO_20121023_214540.jpg'.split(' '))
108 blacklist.extend('pdf skp _ tabl_worldjournal.skp'.split(' ')) 108 blacklist.extend('pdf skp _ worldjournal'.split(' '))
109 blacklist.extend('pdf skp _ desk_baidu.skp'.split(' ')) 109 blacklist.extend('pdf skp _ desk_baidu.skp'.split(' '))
110 110
111 if blacklist: 111 if blacklist:
112 args.append('--blacklist') 112 args.append('--blacklist')
113 args.extend(blacklist) 113 args.extend(blacklist)
114 114
115 match = [] 115 match = []
116 if 'Valgrind' in bot: # skia:3021 116 if 'Valgrind' in bot: # skia:3021
117 match.append('~Threaded') 117 match.append('~Threaded')
118 if 'TSAN' in bot: # skia:3562 118 if 'TSAN' in bot: # skia:3562
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 if len(sys.argv) == 2 and sys.argv[1] == 'test': 173 if len(sys.argv) == 2 and sys.argv[1] == 'test':
174 self_test() 174 self_test()
175 sys.exit(0) 175 sys.exit(0)
176 176
177 if len(sys.argv) != 3: 177 if len(sys.argv) != 3:
178 print usage 178 print usage
179 sys.exit(1) 179 sys.exit(1)
180 180
181 with open(sys.argv[1], 'w') as out: 181 with open(sys.argv[1], 'w') as out:
182 json.dump(get_args(sys.argv[2]), out) 182 json.dump(get_args(sys.argv[2]), out)
OLDNEW
« no previous file with comments | « tools/dm_flags.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698