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

Side by Side Diff: infra/bots/recipes/swarm_test.py

Issue 2245063002: Skip CompressCheckerboard unit test on N6. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: ~ Created 4 years, 4 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 | infra/bots/recipes/swarm_test.expected/Test-Android-GCC-Nexus6-GPU-Adreno420-Arm7-Debug.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 5
6 # Recipe module for Skia Swarming test. 6 # Recipe module for Skia Swarming test.
7 7
8 8
9 DEPS = [ 9 DEPS = [
10 'build/file', 10 'build/file',
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 279
280 # Large image that overwhelms older Mac bots 280 # Large image that overwhelms older Mac bots
281 if 'MacMini4.1-GPU' in bot: 281 if 'MacMini4.1-GPU' in bot:
282 blacklist.extend('_ image _ abnormal.wbmp'.split(' ')) 282 blacklist.extend('_ image _ abnormal.wbmp'.split(' '))
283 blacklist.extend(['msaa16', 'gm', '_', 'blurcircles']) 283 blacklist.extend(['msaa16', 'gm', '_', 'blurcircles'])
284 284
285 match = [] 285 match = []
286 if 'Valgrind' in bot: # skia:3021 286 if 'Valgrind' in bot: # skia:3021
287 match.append('~Threaded') 287 match.append('~Threaded')
288 288
289 if 'Nexus6' in bot: # skia:5637
290 match.append('~CompressCheckerboard')
291
289 if 'GalaxyS3' in bot: # skia:1699 292 if 'GalaxyS3' in bot: # skia:1699
290 match.append('~WritePixels') 293 match.append('~WritePixels')
291 294
292 if 'AndroidOne' in bot: # skia:4711 295 if 'AndroidOne' in bot: # skia:4711
293 match.append('~WritePixels') 296 match.append('~WritePixels')
294 297
295 if 'NexusPlayer' in bot: 298 if 'NexusPlayer' in bot:
296 match.append('~ResourceCache') 299 match.append('~ResourceCache')
297 300
298 if 'Nexus10' in bot: # skia:5509 301 if 'Nexus10' in bot: # skia:5509
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', 844 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
842 'skimage', 'VERSION'), 845 'skimage', 'VERSION'),
843 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', 846 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
844 'skp', 'VERSION'), 847 'skp', 'VERSION'),
845 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', 848 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
846 'svg', 'VERSION'), 849 'svg', 'VERSION'),
847 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') 850 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
848 ) + 851 ) +
849 api.platform('win', 64) 852 api.platform('win', 64)
850 ) 853 )
OLDNEW
« no previous file with comments | « no previous file | infra/bots/recipes/swarm_test.expected/Test-Android-GCC-Nexus6-GPU-Adreno420-Arm7-Debug.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698