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

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

Issue 2380313002: Revert of Fix gamut GM to work w/serialization configs. Remove it from blacklist. (Closed)
Patch Set: Created 4 years, 2 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
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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 blacklist([ 'lite-8888', 'gm', '_', test]) 286 blacklist([ 'lite-8888', 'gm', '_', test])
287 # skia:4703 287 # skia:4703
288 for test in ['image-cacherator-from-picture', 288 for test in ['image-cacherator-from-picture',
289 'image-cacherator-from-raster', 289 'image-cacherator-from-raster',
290 'image-cacherator-from-ctable']: 290 'image-cacherator-from-ctable']:
291 blacklist([ 'sp-8888', 'gm', '_', test]) 291 blacklist([ 'sp-8888', 'gm', '_', test])
292 blacklist([ 'pic-8888', 'gm', '_', test]) 292 blacklist([ 'pic-8888', 'gm', '_', test])
293 blacklist([ '2ndpic-8888', 'gm', '_', test]) 293 blacklist([ '2ndpic-8888', 'gm', '_', test])
294 blacklist(['serialize-8888', 'gm', '_', test]) 294 blacklist(['serialize-8888', 'gm', '_', test])
295 295
296 # GM that requires raster-backed canvas
297 for test in ['gamut']:
298 blacklist([ 'sp-8888', 'gm', '_', test])
299 blacklist([ 'pic-8888', 'gm', '_', test])
300 blacklist([ 'lite-8888', 'gm', '_', test])
301 blacklist([ '2ndpic-8888', 'gm', '_', test])
302 blacklist(['serialize-8888', 'gm', '_', test])
303
296 # Extensions for RAW images 304 # Extensions for RAW images
297 r = ["arw", "cr2", "dng", "nef", "nrw", "orf", "raf", "rw2", "pef", "srw", 305 r = ["arw", "cr2", "dng", "nef", "nrw", "orf", "raf", "rw2", "pef", "srw",
298 "ARW", "CR2", "DNG", "NEF", "NRW", "ORF", "RAF", "RW2", "PEF", "SRW"] 306 "ARW", "CR2", "DNG", "NEF", "NRW", "ORF", "RAF", "RW2", "PEF", "SRW"]
299 307
300 # skbug.com/4888 308 # skbug.com/4888
301 # Blacklist RAW images (and a few large PNGs) on GPU bots 309 # Blacklist RAW images (and a few large PNGs) on GPU bots
302 # until we can resolve failures 310 # until we can resolve failures
303 if 'GPU' in bot: 311 if 'GPU' in bot:
304 blacklist('_ image _ interlaced1.png') 312 blacklist('_ image _ interlaced1.png')
305 blacklist('_ image _ interlaced2.png') 313 blacklist('_ image _ interlaced2.png')
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
669 api.properties( 677 api.properties(
670 buildername=builder, 678 buildername=builder,
671 mastername='client.skia', 679 mastername='client.skia',
672 slavename='skiabot-linux-swarm-000', 680 slavename='skiabot-linux-swarm-000',
673 buildnumber=5, 681 buildnumber=5,
674 path_config='kitchen', 682 path_config='kitchen',
675 swarm_out_dir='[SWARM_OUT_DIR]', 683 swarm_out_dir='[SWARM_OUT_DIR]',
676 revision='abc123', 684 revision='abc123',
677 **gerrit_kwargs) 685 **gerrit_kwargs)
678 ) 686 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698