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

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

Issue 2219343002: finish SkLiteDL (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: skip drawfilter, skia:4769 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
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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 'iOS' in bot): 77 'iOS' in bot):
78 configs = [x for x in configs if 'msaa' not in x] 78 configs = [x for x in configs if 'msaa' not in x]
79 79
80 # Runs out of memory on Android bots and Daisy. Everyone else seems fine. 80 # Runs out of memory on Android bots and Daisy. Everyone else seems fine.
81 if 'Android' in bot or 'Daisy' in bot: 81 if 'Android' in bot or 'Daisy' in bot:
82 configs.remove('pdf') 82 configs.remove('pdf')
83 83
84 if '-GCE-' in bot: 84 if '-GCE-' in bot:
85 configs.extend(['f16', 'srgb']) # Gamma-correct formats. 85 configs.extend(['f16', 'srgb']) # Gamma-correct formats.
86 configs.extend(['sp-8888', '2ndpic-8888']) # Test niche uses of SkPicture. 86 configs.extend(['sp-8888', '2ndpic-8888']) # Test niche uses of SkPicture.
87 configs.extend(['lite-8888']) # Experimental display list.
87 88
88 if '-TSAN' not in bot: 89 if '-TSAN' not in bot:
89 if ('TegraK1' in bot or 90 if ('TegraK1' in bot or
90 'TegraX1' in bot or 91 'TegraX1' in bot or
91 'GTX550Ti' in bot or 92 'GTX550Ti' in bot or
92 'GTX660' in bot or 93 'GTX660' in bot or
93 'GT610' in bot): 94 'GT610' in bot):
94 if 'Android' in bot: 95 if 'Android' in bot:
95 configs.append('nvprdit4') 96 configs.append('nvprdit4')
96 else: 97 else:
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 # It looks like we skip these only for out-of-memory concerns. 241 # It looks like we skip these only for out-of-memory concerns.
241 if 'Win' in bot or 'Android' in bot: 242 if 'Win' in bot or 'Android' in bot:
242 for test in ['verylargebitmap', 'verylarge_picture_image']: 243 for test in ['verylargebitmap', 'verylarge_picture_image']:
243 blacklist.extend(['serialize-8888', 'gm', '_', test]) 244 blacklist.extend(['serialize-8888', 'gm', '_', test])
244 245
245 # skia:4769 246 # skia:4769
246 for test in ['drawfilter']: 247 for test in ['drawfilter']:
247 blacklist.extend([ 'sp-8888', 'gm', '_', test]) 248 blacklist.extend([ 'sp-8888', 'gm', '_', test])
248 blacklist.extend([ 'pic-8888', 'gm', '_', test]) 249 blacklist.extend([ 'pic-8888', 'gm', '_', test])
249 blacklist.extend(['2ndpic-8888', 'gm', '_', test]) 250 blacklist.extend(['2ndpic-8888', 'gm', '_', test])
251 blacklist.extend([ 'lite-8888', 'gm', '_', test])
250 # skia:4703 252 # skia:4703
251 for test in ['image-cacherator-from-picture', 253 for test in ['image-cacherator-from-picture',
252 'image-cacherator-from-raster', 254 'image-cacherator-from-raster',
253 'image-cacherator-from-ctable']: 255 'image-cacherator-from-ctable']:
254 blacklist.extend([ 'sp-8888', 'gm', '_', test]) 256 blacklist.extend([ 'sp-8888', 'gm', '_', test])
255 blacklist.extend([ 'pic-8888', 'gm', '_', test]) 257 blacklist.extend([ 'pic-8888', 'gm', '_', test])
256 blacklist.extend([ '2ndpic-8888', 'gm', '_', test]) 258 blacklist.extend([ '2ndpic-8888', 'gm', '_', test])
257 blacklist.extend(['serialize-8888', 'gm', '_', test]) 259 blacklist.extend(['serialize-8888', 'gm', '_', test])
258 260
259 # Extensions for RAW images 261 # Extensions for RAW images
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
741 api.path.exists( 743 api.path.exists(
742 api.path['slave_build'].join('skia'), 744 api.path['slave_build'].join('skia'),
743 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', 745 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
744 'skimage', 'VERSION'), 746 'skimage', 'VERSION'),
745 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', 747 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
746 'skp', 'VERSION'), 748 'skp', 'VERSION'),
747 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') 749 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
748 ) + 750 ) +
749 api.platform('win', 64) 751 api.platform('win', 64)
750 ) 752 )
OLDNEW
« no previous file with comments | « dm/DMSrcSink.cpp ('k') | infra/bots/recipes/swarm_test.expected/Test-Android-GCC-AndroidOne-GPU-Mali400MP2-Arm7-Release.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698