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

Side by Side Diff: tools/dm_flags.py

Issue 2169073003: Disable CopySurface test on Nexus 10 for flakiness (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: Created 4 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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 236
237 if 'GalaxyS3' in bot: # skia:1699 237 if 'GalaxyS3' in bot: # skia:1699
238 match.append('~WritePixels') 238 match.append('~WritePixels')
239 239
240 if 'AndroidOne' in bot: # skia:4711 240 if 'AndroidOne' in bot: # skia:4711
241 match.append('~WritePixels') 241 match.append('~WritePixels')
242 242
243 if 'NexusPlayer' in bot: 243 if 'NexusPlayer' in bot:
244 match.append('~ResourceCache') 244 match.append('~ResourceCache')
245 245
246 if 'Nexus10' in bot: # skia:5509
247 match.append('~CopySurface')
248
246 if 'GalaxyS4' in bot: # skia:4079 249 if 'GalaxyS4' in bot: # skia:4079
247 match.append('~imagefiltersclipped') 250 match.append('~imagefiltersclipped')
248 match.append('~imagefilterscropexpand') 251 match.append('~imagefilterscropexpand')
249 match.append('~scaled_tilemodes_npot') 252 match.append('~scaled_tilemodes_npot')
250 match.append('~bleed_image') # skia:4367 253 match.append('~bleed_image') # skia:4367
251 match.append('~ReadPixels') # skia:4368 254 match.append('~ReadPixels') # skia:4368
252 255
253 if 'ANGLE' in bot and 'Debug' in bot: 256 if 'ANGLE' in bot and 'Debug' in bot:
254 match.append('~GLPrograms') # skia:4717 257 match.append('~GLPrograms') # skia:4717
255 258
(...skipping 24 matching lines...) Expand all
280 def self_test(): 283 def self_test():
281 import coverage # This way the bots don't need coverage.py to be installed. 284 import coverage # This way the bots don't need coverage.py to be installed.
282 args = {} 285 args = {}
283 cases = [ 286 cases = [
284 'Pretend-iOS-Bot', 287 'Pretend-iOS-Bot',
285 'Test-Android-GCC-AndroidOne-GPU-Mali400MP2-Arm7-Release', 288 'Test-Android-GCC-AndroidOne-GPU-Mali400MP2-Arm7-Release',
286 'Test-Android-GCC-GalaxyS3-GPU-Mali400-Arm7-Debug', 289 'Test-Android-GCC-GalaxyS3-GPU-Mali400-Arm7-Debug',
287 'Test-Android-GCC-GalaxyS4-GPU-SGX544-Arm7-Release', 290 'Test-Android-GCC-GalaxyS4-GPU-SGX544-Arm7-Release',
288 'Test-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Release', 291 'Test-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Release',
289 'Test-Android-GCC-Nexus9-GPU-TegraK1-Arm64-Debug', 292 'Test-Android-GCC-Nexus9-GPU-TegraK1-Arm64-Debug',
293 'Test-Android-GCC-Nexus10-GPU-MaliT604-Arm7-Debug',
290 'Test-Android-GCC-NexusPlayer-CPU-SSSE3-x86-Release', 294 'Test-Android-GCC-NexusPlayer-CPU-SSSE3-x86-Release',
291 'Test-Android-GCC-NVIDIA_Shield-GPU-TegraX1-Arm64-Release', 295 'Test-Android-GCC-NVIDIA_Shield-GPU-TegraX1-Arm64-Release',
292 'Test-Mac-Clang-MacMini4.1-GPU-GeForce320M-x86_64-Release', 296 'Test-Mac-Clang-MacMini4.1-GPU-GeForce320M-x86_64-Release',
293 'Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-CommandBuffer', 297 'Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-CommandBuffer',
294 'Test-Mac10.8-Clang-MacMini4.1-CPU-SSE4-x86_64-Release', 298 'Test-Mac10.8-Clang-MacMini4.1-CPU-SSE4-x86_64-Release',
295 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN', 299 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN',
296 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN', 300 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN',
297 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Valgrind', 301 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Valgrind',
298 'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind', 302 'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind',
299 'Test-Win-MSVC-GCE-CPU-AVX2-x86_64-Debug', 303 'Test-Win-MSVC-GCE-CPU-AVX2-x86_64-Debug',
(...skipping 24 matching lines...) Expand all
324 if len(sys.argv) == 2 and sys.argv[1] == 'test': 328 if len(sys.argv) == 2 and sys.argv[1] == 'test':
325 self_test() 329 self_test()
326 sys.exit(0) 330 sys.exit(0)
327 331
328 if len(sys.argv) != 3: 332 if len(sys.argv) != 3:
329 print usage 333 print usage
330 sys.exit(1) 334 sys.exit(1)
331 335
332 with open(sys.argv[1], 'w') as out: 336 with open(sys.argv[1], 'w') as out:
333 json.dump(get_args(sys.argv[2]), out) 337 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