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

Side by Side Diff: tools/dm_flags.py

Issue 1213033003: Skip SkSharedMutexMultiThreaded test on TSAN bot while investigating. (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 5 years, 5 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 blacklist.extend('gpu image subset _ msaa image subset _'.split(' ')) 141 blacklist.extend('gpu image subset _ msaa image subset _'.split(' '))
142 blacklist.extend('msaa16 gm _ tilemodesProcess'.split(' ')) 142 blacklist.extend('msaa16 gm _ tilemodesProcess'.split(' '))
143 143
144 if blacklist: 144 if blacklist:
145 args.append('--blacklist') 145 args.append('--blacklist')
146 args.extend(blacklist) 146 args.extend(blacklist)
147 147
148 match = [] 148 match = []
149 if 'Valgrind' in bot: # skia:3021 149 if 'Valgrind' in bot: # skia:3021
150 match.append('~Threaded') 150 match.append('~Threaded')
151 if 'TSAN' in bot: # skia:3562 151 if 'TSAN' in bot:
152 match.append('~Math') 152 match.append('~Math') # skia:3562
153 match.append('~SkSharedMutexMultiThreaded') # skia:3997
153 154
154 if 'GalaxyS3' in bot: # skia:1699 155 if 'GalaxyS3' in bot: # skia:1699
155 match.append('~WritePixels') 156 match.append('~WritePixels')
156 157
157 # skia:3249: these images flakily don't decode on Android. 158 # skia:3249: these images flakily don't decode on Android.
158 if 'Android' in bot: 159 if 'Android' in bot:
159 match.append('~tabl_mozilla_0') 160 match.append('~tabl_mozilla_0')
160 match.append('~desk_yahoonews_0') 161 match.append('~desk_yahoonews_0')
161 162
162 if 'NexusPlayer' in bot: 163 if 'NexusPlayer' in bot:
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 if len(sys.argv) == 2 and sys.argv[1] == 'test': 212 if len(sys.argv) == 2 and sys.argv[1] == 'test':
212 self_test() 213 self_test()
213 sys.exit(0) 214 sys.exit(0)
214 215
215 if len(sys.argv) != 3: 216 if len(sys.argv) != 3:
216 print usage 217 print usage
217 sys.exit(1) 218 sys.exit(1)
218 219
219 with open(sys.argv[1], 'w') as out: 220 with open(sys.argv[1], 'w') as out:
220 json.dump(get_args(sys.argv[2]), out) 221 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