blob: 70e7639565a8d93f1c36e9eaec6a79de052d5261 [file] [log] [blame]
borenet1ed2ae42016-07-26 11:52:17 -07001# Copyright 2016 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5
6# Recipe module for Skia Swarming test.
7
8
9DEPS = [
Eric Boren896af752017-04-24 13:22:56 -040010 'env',
11 'flavor',
Robert Iannucci297a7ef2017-05-12 19:09:38 -070012 'recipe_engine/context',
Robert Iannucci8cd50412017-07-07 14:36:58 -070013 'recipe_engine/file',
borenet1ed2ae42016-07-26 11:52:17 -070014 'recipe_engine/path',
15 'recipe_engine/platform',
16 'recipe_engine/properties',
Eric Boren4c7754c2017-04-10 08:19:10 -040017 'recipe_engine/python',
borenet1ed2ae42016-07-26 11:52:17 -070018 'recipe_engine/raw_io',
Eric Boren4c7754c2017-04-10 08:19:10 -040019 'recipe_engine/step',
Eric Boren4c7754c2017-04-10 08:19:10 -040020 'run',
21 'vars',
borenet1ed2ae42016-07-26 11:52:17 -070022]
23
24
Eric Boren72f66682018-05-18 07:36:55 -040025def upload_dm_results(buildername):
26 skip_upload_bots = [
27 'ASAN',
28 'Coverage',
29 'MSAN',
30 'TSAN',
31 'UBSAN',
32 'Valgrind',
33 ]
34 for s in skip_upload_bots:
35 if s in buildername:
36 return False
37 return True
38
39
Eric Boren89cd3572017-06-28 13:50:22 -040040def dm_flags(api, bot):
Eric Boren4c7754c2017-04-10 08:19:10 -040041 args = []
Brian Osmanf9810662017-08-30 10:02:10 -040042 configs = []
43 blacklisted = []
44
45 def blacklist(quad):
Eric Borencd0a98c2018-06-20 13:23:16 -040046 config, src, options, name = (
47 quad.split(' ') if isinstance(quad, str) else quad)
Brian Osmanf9810662017-08-30 10:02:10 -040048 if (config == '_' or
49 config in configs or
50 (config[0] == '~' and config[1:] in configs)):
51 blacklisted.extend([config, src, options, name])
Eric Boren4c7754c2017-04-10 08:19:10 -040052
Mike Klein97d6a7a2017-07-24 10:37:19 -040053 # We've been spending lots of time writing out and especially uploading
54 # .pdfs, but not doing anything further with them. skia:6821
55 args.extend(['--dont_write', 'pdf'])
56
Eric Boren4c7754c2017-04-10 08:19:10 -040057 # This enables non-deterministic random seeding of the GPU FP optimization
Brian Osman7a34dca2017-04-13 13:40:29 -040058 # test.
Ben Wagner6da8f792017-08-10 12:22:56 -040059 # Not Android due to:
Ben Wagner11ab43c2017-08-09 18:05:59 -040060 # - https://skia.googlesource.com/skia/+/
61 # 5910ed347a638ded8cd4c06dbfda086695df1112/BUILD.gn#160
62 # - https://skia.googlesource.com/skia/+/
63 # ce06e261e68848ae21cac1052abc16bc07b961bf/tests/ProcessorTest.cpp#307
Ben Wagner6da8f792017-08-10 12:22:56 -040064 # Not MSAN due to:
65 # - https://skia.googlesource.com/skia/+/
66 # 0ac06e47269a40c177747310a613d213c95d1d6d/infra/bots/recipe_modules/
67 # flavor/gn_flavor.py#80
68 if 'Android' not in bot and 'MSAN' not in bot:
Ben Wagner11ab43c2017-08-09 18:05:59 -040069 args.append('--randomProcessorTest')
Eric Boren4c7754c2017-04-10 08:19:10 -040070
71 # 32-bit desktop bots tend to run out of memory, because they have relatively
72 # far more cores than RAM (e.g. 32 cores, 3G RAM). Hold them back a bit.
73 if '-x86-' in bot and not 'NexusPlayer' in bot:
Mike Kleindf669812017-06-23 13:30:17 -040074 args.extend(['--threads', '4'])
Eric Boren4c7754c2017-04-10 08:19:10 -040075
Ben Wagner5cf6d322017-12-07 10:23:07 -050076 # Nexus7 runs out of memory due to having 4 cores and only 1G RAM.
77 if 'CPU' in bot and 'Nexus7' in bot:
Ben Wagner1cfb6bc2017-12-07 12:19:30 -050078 args.extend(['--threads', '2'])
Ben Wagner5cf6d322017-12-07 10:23:07 -050079
Ben Wagner12e69e72018-07-15 15:12:01 -040080 # MotoG4 occasionally fails when multiple threads read the same image file.
81 if 'CPU' in bot and 'MotoG4' in bot:
82 args.extend(['--threads', '0'])
83
Kevin Lubick2dafbd72017-08-31 10:39:05 -040084 if 'Chromecast' in bot:
85 args.extend(['--threads', '0'])
86
Eric Boren4c7754c2017-04-10 08:19:10 -040087 # Avoid issues with dynamically exceeding resource cache limits.
88 if 'Test' in bot and 'DISCARDABLE' in bot:
Mike Kleindf669812017-06-23 13:30:17 -040089 args.extend(['--threads', '0'])
90
91 # See if staying on the main thread helps skia:6748.
92 if 'Test-iOS' in bot:
93 args.extend(['--threads', '0'])
Eric Boren4c7754c2017-04-10 08:19:10 -040094
Derek Sollenbergeredfe3df2017-07-19 15:25:24 -040095 # Android's kernel will occasionally attempt to kill our process, using
96 # SIGINT, in an effort to free up resources. If requested, that signal
97 # is ignored and dm will keep attempting to proceed until we actually
98 # exhaust the available resources.
99 if ('NexusPlayer' in bot or
Kevin Lubick608c35a2018-01-16 16:15:57 -0500100 'Chromecast' in bot):
Derek Sollenbergeredfe3df2017-07-19 15:25:24 -0400101 args.append('--ignoreSigInt')
102
Ben Wagner122b3852018-04-20 13:43:23 -0400103 if 'SwiftShader' in api.vars.extra_tokens:
104 configs.extend(['gles', 'glesdft'])
105 args.append('--disableDriverCorrectnessWorkarounds')
106
107 elif api.vars.builder_cfg.get('cpu_or_gpu') == 'CPU':
Ben Wagner32fa5102017-08-10 21:25:55 -0400108 args.append('--nogpu')
109
110 # These are the canonical configs that we would ideally run on all bots. We
111 # may opt out or substitute some below for specific bots
Mike Kleince4cf722018-05-10 11:29:15 -0400112 configs.extend(['8888', 'pdf'])
Ben Wagner32fa5102017-08-10 21:25:55 -0400113
114 # Runs out of memory on Android bots. Everyone else seems fine.
115 if 'Android' in bot:
116 configs.remove('pdf')
117
Ben Wagner4c9b7002018-05-15 11:10:17 -0400118 if '-GCE-' in bot and 'x86_64' in bot:
Mike Klein515bda62018-01-09 11:21:58 -0500119 configs.extend(['g8'])
Ben Wagner32fa5102017-08-10 21:25:55 -0400120 configs.extend(['565'])
Ben Wagner32fa5102017-08-10 21:25:55 -0400121 configs.extend(['lite-8888']) # Experimental display list.
Mike Kleinb7ea3da2017-10-31 17:42:08 +0000122 configs.extend(['gbr-8888'])
Mike Klein0e4041f2018-06-19 16:00:40 -0400123 configs.extend(['f16'])
124 configs.extend(['srgb'])
Mike Kleince4cf722018-05-10 11:29:15 -0400125 configs.extend(['esrgb'])
Mike Klein0e4041f2018-06-19 16:00:40 -0400126 configs.extend(['narrow'])
127 configs.extend(['enarrow'])
Ben Wagner32fa5102017-08-10 21:25:55 -0400128
Kevin Lubicke0b7f5c2018-05-07 15:10:17 -0400129 if 'SAN' in bot:
130 configs.extend(['t8888'])
Yuqian Licb312482018-04-27 15:52:40 -0400131
Ben Wagner0ecc2b7e2017-11-09 22:10:44 -0500132 configs.extend(mode + '-8888' for mode in ['serialize', 'tiles_rt', 'pic'])
Ben Wagner32fa5102017-08-10 21:25:55 -0400133
Kevin Lubicke0b7f5c2018-05-07 15:10:17 -0400134 if 'T8888' in bot:
135 configs = ['t8888']
136
Ben Wagner32fa5102017-08-10 21:25:55 -0400137 # This bot only differs from vanilla CPU bots in 8888 config.
138 if 'SK_FORCE_RASTER_PIPELINE_BLITTER' in bot:
Mike Kleince4cf722018-05-10 11:29:15 -0400139 configs = ['8888']
Ben Wagner32fa5102017-08-10 21:25:55 -0400140
Ben Wagner077710b2017-10-26 13:12:39 -0400141 if 'FSAA' in bot or 'FAAA' in bot or 'FDAA' in bot:
142 # Scan converters shouldn't really be sensitive to different color
143 # configurations.
144 configs = ['8888', 'tiles_rt-8888']
145
Mike Klein9a01a212017-11-03 12:19:54 -0400146 if 'NativeFonts' in bot:
147 configs = ['8888']
148
Kevin Lubick608c35a2018-01-16 16:15:57 -0500149 # Just do the basic config on Chromecast to avoid OOM.
150 if 'Chromecast' in bot:
Kevin Lubick8baaef92018-01-17 10:02:17 -0500151 configs = ['8888']
Kevin Lubick608c35a2018-01-16 16:15:57 -0500152
Eric Boren9f4efd32018-07-20 08:25:42 -0400153 if 'Lottie' in bot:
154 configs = ['8888']
155
Ben Wagner32fa5102017-08-10 21:25:55 -0400156 elif api.vars.builder_cfg.get('cpu_or_gpu') == 'GPU':
157 args.append('--nocpu')
158
159 # Add in either gles or gl configs to the canonical set based on OS
160 sample_count = '8'
161 gl_prefix = 'gl'
162 if 'Android' in bot or 'iOS' in bot:
163 sample_count = '4'
164 # We want to test the OpenGL config not the GLES config on the Shield
165 if 'NVIDIA_Shield' not in bot:
166 gl_prefix = 'gles'
167 elif 'Intel' in bot:
168 sample_count = ''
169 elif 'ChromeOS' in bot:
Eric Boren4c7754c2017-04-10 08:19:10 -0400170 gl_prefix = 'gles'
Eric Boren4c7754c2017-04-10 08:19:10 -0400171
Jim Van Verth1b6c75c2018-02-16 09:49:08 -0500172 if 'NativeFonts' in bot:
173 configs.append(gl_prefix)
174 else:
Brian Osmana66f4da2018-06-28 17:52:02 +0000175 configs.extend([gl_prefix,
176 gl_prefix + 'dft',
177 gl_prefix + 'srgb'])
Jim Van Verth240516f2018-02-15 09:55:24 -0500178 if sample_count is not '':
179 configs.append(gl_prefix + 'msaa' + sample_count)
Eric Boren4c7754c2017-04-10 08:19:10 -0400180
Ben Wagner32fa5102017-08-10 21:25:55 -0400181 # The NP produces a long error stream when we run with MSAA. The Tegra3 just
182 # doesn't support it.
183 if ('NexusPlayer' in bot or
184 'Tegra3' in bot or
185 # We aren't interested in fixing msaa bugs on current iOS devices.
186 'iPad4' in bot or
187 'iPadPro' in bot or
188 'iPhone6' in bot or
189 'iPhone7' in bot or
190 # skia:5792
191 'IntelHD530' in bot or
192 'IntelIris540' in bot):
193 configs = [x for x in configs if 'msaa' not in x]
Eric Boren4c7754c2017-04-10 08:19:10 -0400194
Ben Wagner32fa5102017-08-10 21:25:55 -0400195 # The NP produces different images for dft on every run.
196 if 'NexusPlayer' in bot:
197 configs = [x for x in configs if 'dft' not in x]
Eric Boren4c7754c2017-04-10 08:19:10 -0400198
Ben Wagner32fa5102017-08-10 21:25:55 -0400199 # We want to test both the OpenGL config and the GLES config on Linux Intel:
200 # GL is used by Chrome, GLES is used by ChromeOS.
Brian Osmanf9810662017-08-30 10:02:10 -0400201 # Also do the Ganesh threading verification test (render with and without
202 # worker threads, using only the SW path renderer, and compare the results).
Ben Wagner32fa5102017-08-10 21:25:55 -0400203 if 'Intel' in bot and api.vars.is_linux:
Brian Osmana66f4da2018-06-28 17:52:02 +0000204 configs.extend(['gles',
205 'glesdft',
206 'glessrgb',
207 'gltestthreading'])
Brian Osmanf9810662017-08-30 10:02:10 -0400208 # skbug.com/6333, skbug.com/6419, skbug.com/6702
209 blacklist('gltestthreading gm _ lcdblendmodes')
210 blacklist('gltestthreading gm _ lcdoverlap')
Brian Osmanbef21ba2017-08-31 13:49:05 -0400211 blacklist('gltestthreading gm _ textbloblooper')
Brian Osman1e75f2a2017-09-07 09:30:44 -0400212 # All of these GMs are flaky, too:
213 blacklist('gltestthreading gm _ bleed_alpha_bmp')
214 blacklist('gltestthreading gm _ bleed_alpha_bmp_shader')
215 blacklist('gltestthreading gm _ bleed_alpha_image')
216 blacklist('gltestthreading gm _ bleed_alpha_image_shader')
217 blacklist('gltestthreading gm _ savelayer_with_backdrop')
218 blacklist('gltestthreading gm _ persp_shaders_bw')
Brian Salomon5c6ac642017-12-19 11:09:32 -0500219 blacklist('gltestthreading gm _ dftext_blob_persp')
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400220 # skbug.com/7523 - Flaky on various GPUs
221 blacklist('gltestthreading gm _ orientation')
Mike Klein97627d42017-05-11 13:12:48 -0400222
Brian Osman09eba3c2017-11-06 14:39:18 -0500223 # Test SkColorSpaceXformCanvas on a few bots
224 if 'GTX1070' in bot:
225 configs.append('gbr-gl')
226
Ben Wagner32fa5102017-08-10 21:25:55 -0400227 # CommandBuffer bot *only* runs the command_buffer config.
228 if 'CommandBuffer' in bot:
229 configs = ['commandbuffer']
230
231 # ANGLE bot *only* runs the angle configs
232 if 'ANGLE' in bot:
233 configs = ['angle_d3d11_es2',
234 'angle_d3d9_es2',
235 'angle_gl_es2',
236 'angle_d3d11_es3']
237 if sample_count is not '':
238 configs.append('angle_d3d11_es2_msaa' + sample_count)
239 configs.append('angle_d3d11_es3_msaa' + sample_count)
Ben Wagner7464a262018-04-19 15:49:18 -0400240 if 'GTX' in bot or 'Quadro' in bot:
241 # See skia:7823 and chromium:693090.
242 configs.append('angle_gl_es3')
243 if sample_count is not '':
244 configs.append('angle_gl_es2_msaa' + sample_count)
245 configs.append('angle_gl_es3_msaa' + sample_count)
Ben Wagner32fa5102017-08-10 21:25:55 -0400246
247 # Vulkan bot *only* runs the vk config.
248 if 'Vulkan' in bot:
Chris Daltonaec79e62018-05-29 12:02:19 -0600249 configs = ['vk']
Ben Wagner32fa5102017-08-10 21:25:55 -0400250
Greg Danielb95d2782018-07-24 11:35:18 -0400251 if 'Metal' in bot:
252 configs = ['mtl']
253
Brian Salomon7fc52992018-07-12 16:20:23 -0400254 # Test 1010102 on our Linux/NVIDIA bots and the persistent cache config
255 # on the GL bots.
Brian Salomonbfc63c12018-07-16 15:48:22 -0400256 if ('QuadroP400' in bot and 'PreAbandonGpuContext' not in bot and
Brian Salomon6a3957c2018-07-19 17:01:09 -0400257 'TSAN' not in bot and api.vars.is_linux):
Brian Osman10fc6fd2018-03-02 11:01:10 -0500258 if 'Vulkan' in bot:
259 configs.append('vk1010102')
Brian Osman419abf32018-03-02 14:56:15 -0500260 # Decoding transparent images to 1010102 just looks bad
261 blacklist('vk1010102 image _ _')
Brian Osman10fc6fd2018-03-02 11:01:10 -0500262 else:
Brian Salomon7fc52992018-07-12 16:20:23 -0400263 configs.extend(['gl1010102', 'gltestpersistentcache'])
Brian Osman419abf32018-03-02 14:56:15 -0500264 # Decoding transparent images to 1010102 just looks bad
265 blacklist('gl1010102 image _ _')
Brian Salomon09387592018-07-16 15:34:16 -0400266 # These tests produce slightly different pixels run to run on NV.
Brian Salomon7fc52992018-07-12 16:20:23 -0400267 blacklist('gltestpersistentcache gm _ atlastext')
Brian Salomon09387592018-07-16 15:34:16 -0400268 blacklist('gltestpersistentcache gm _ dftext')
Brian Osman10fc6fd2018-03-02 11:01:10 -0500269
Ben Wagner32fa5102017-08-10 21:25:55 -0400270 if 'ChromeOS' in bot:
271 # Just run GLES for now - maybe add gles_msaa4 in the future
272 configs = ['gles']
273
Kevin Lubick2dafbd72017-08-31 10:39:05 -0400274 if 'Chromecast' in bot:
Kevin Lubick608c35a2018-01-16 16:15:57 -0500275 configs = ['gles']
Kevin Lubick2dafbd72017-08-31 10:39:05 -0400276
Ben Wagner32fa5102017-08-10 21:25:55 -0400277 # Test coverage counting path renderer.
278 if 'CCPR' in bot:
279 configs = [c for c in configs if c == 'gl' or c == 'gles']
Chris Dalton7a0ebfc2017-10-13 12:35:50 -0600280 args.extend(['--pr', 'ccpr', '--cachePathMasks', 'false'])
Chris Dalton97598a52017-07-18 10:49:07 -0600281
Robert Phillips36150be2018-03-15 13:40:07 -0400282 # DDL is a GPU-only feature
283 if 'DDL1' in bot:
Robert Phillips69eb8352018-04-11 13:45:08 -0400284 # This bot generates gl and vk comparison images for the large skps
285 configs = [c for c in configs if c == 'gl' or c == 'vk']
Robert Phillipsb7fafba2018-03-27 20:49:23 +0000286 args.extend(['--skpViewportSize', "2048"])
Robert Phillips21ca0432018-05-29 15:42:00 -0400287 args.extend(['--pr', '~small'])
Robert Phillips36150be2018-03-15 13:40:07 -0400288 if 'DDL3' in bot:
Robert Phillips69eb8352018-04-11 13:45:08 -0400289 # This bot generates the ddl-gl and ddl-vk images for the
290 # large skps and the gms
291 configs = ['ddl-' + c for c in configs if c == 'gl' or c == 'vk']
Robert Phillipsb7fafba2018-03-27 20:49:23 +0000292 args.extend(['--skpViewportSize', "2048"])
Robert Phillipse43ff782018-04-20 11:59:59 -0400293 args.extend(['--gpuThreads', "0"])
Robert Phillips36150be2018-03-15 13:40:07 -0400294
Eric Boren9f4efd32018-07-20 08:25:42 -0400295 if 'Lottie' in bot:
296 configs = ['gl']
297
Kevin Lubick32f318b2017-10-17 13:40:52 -0400298 tf = api.vars.builder_cfg.get('test_filter')
299 if 'All' != tf:
300 # Expected format: shard_XX_YY
301 parts = tf.split('_')
302 if len(parts) == 3:
303 args.extend(['--shard', parts[1]])
304 args.extend(['--shards', parts[2]])
Eric Boren9599b0f2018-04-17 15:55:57 -0400305 else: # pragma: nocover
306 raise Exception('Invalid task name - bad shards: %s' % tf)
Kevin Lubick32f318b2017-10-17 13:40:52 -0400307
Chris Dalton80ace822017-07-20 10:54:04 -0600308 args.append('--config')
309 args.extend(configs)
310
Eric Boren4c7754c2017-04-10 08:19:10 -0400311 # Run tests, gms, and image decoding tests everywhere.
Eric Boren8c172ba2018-07-19 13:27:49 -0400312 args.extend('--src tests gm image lottie colorImage svg skp'.split(' '))
Ben Wagner0ecc2b7e2017-11-09 22:10:44 -0500313 if api.vars.builder_cfg.get('cpu_or_gpu') == 'GPU':
Chris Dalton7c304ba2017-09-07 11:57:16 -0600314 # Don't run the 'svgparse_*' svgs on GPU.
315 blacklist('_ svg _ svgparse_')
Kevin Lubick9ef6de72017-10-15 21:05:58 -0400316 elif bot == 'Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-ASAN':
Chris Dalton7c304ba2017-09-07 11:57:16 -0600317 # Only run the CPU SVGs on 8888.
318 blacklist('~8888 svg _ _')
319 else:
320 # On CPU SVGs we only care about parsing. Only run them on the above bot.
321 args.remove('svg')
Eric Boren4c7754c2017-04-10 08:19:10 -0400322
Mike Klein97627d42017-05-11 13:12:48 -0400323 # Eventually I'd like these to pass, but for now just skip 'em.
324 if 'SK_FORCE_RASTER_PIPELINE_BLITTER' in bot:
325 args.remove('tests')
326
Mike Klein9a01a212017-11-03 12:19:54 -0400327 if 'NativeFonts' in bot: # images won't exercise native font integration :)
328 args.remove('image')
329 args.remove('colorImage')
330
Kevin Lubicke0b7f5c2018-05-07 15:10:17 -0400331 if 'T8888' in bot:
332 args.remove('tests')
333 args.remove('image')
334 args.remove('colorImage')
335
Eric Boren8c172ba2018-07-19 13:27:49 -0400336 def remove_from_args(arg):
337 if arg in args:
338 args.remove(arg)
339
Robert Phillips5f3ce3e2018-04-12 11:09:40 -0400340 if 'DDL' in bot:
341 # The DDL bots just render the large skps and the gms
Eric Boren8c172ba2018-07-19 13:27:49 -0400342 remove_from_args('tests')
343 remove_from_args('image')
344 remove_from_args('colorImage')
345 remove_from_args('svg')
Robert Phillips36150be2018-03-15 13:40:07 -0400346 else:
Robert Phillipsb7fafba2018-03-27 20:49:23 +0000347 # Currently, only the DDL bots render skps
Eric Boren8c172ba2018-07-19 13:27:49 -0400348 remove_from_args('skp')
349
350 if 'Lottie' in api.vars.builder_cfg.get('extra_config', ''):
351 # Only run the lotties on Lottie bots.
352 remove_from_args('tests')
353 remove_from_args('gm')
354 remove_from_args('image')
355 remove_from_args('colorImage')
356 remove_from_args('svg')
357 remove_from_args('skp')
358 else:
359 remove_from_args('lottie')
Robert Phillips36150be2018-03-15 13:40:07 -0400360
Eric Boren4c7754c2017-04-10 08:19:10 -0400361 # TODO: ???
362 blacklist('f16 _ _ dstreadshuffle')
363 blacklist('glsrgb image _ _')
364 blacklist('glessrgb image _ _')
365
Eric Boren4c7754c2017-04-10 08:19:10 -0400366 # Not any point to running these.
Mike Kleinb7ea3da2017-10-31 17:42:08 +0000367 blacklist('gbr-8888 image _ _')
368 blacklist('gbr-8888 colorImage _ _')
Eric Boren4c7754c2017-04-10 08:19:10 -0400369
Mike Klein515bda62018-01-09 11:21:58 -0500370 # --src image --config g8 means "decode into Gray8", which isn't supported.
371 blacklist('g8 image _ _')
372 blacklist('g8 colorImage _ _')
373
Eric Boren4c7754c2017-04-10 08:19:10 -0400374 if 'Valgrind' in bot:
375 # These take 18+ hours to run.
376 blacklist('pdf gm _ fontmgr_iter')
377 blacklist('pdf _ _ PANO_20121023_214540.jpg')
378 blacklist('pdf skp _ worldjournal')
379 blacklist('pdf skp _ desk_baidu.skp')
380 blacklist('pdf skp _ desk_wikipedia.skp')
381 blacklist('_ svg _ _')
382
383 if 'iOS' in bot:
384 blacklist(gl_prefix + ' skp _ _')
385
386 if 'Mac' in bot or 'iOS' in bot:
387 # CG fails on questionable bmps
388 blacklist('_ image gen_platf rgba32abf.bmp')
389 blacklist('_ image gen_platf rgb24prof.bmp')
390 blacklist('_ image gen_platf rgb24lprof.bmp')
391 blacklist('_ image gen_platf 8bpp-pixeldata-cropped.bmp')
392 blacklist('_ image gen_platf 4bpp-pixeldata-cropped.bmp')
393 blacklist('_ image gen_platf 32bpp-pixeldata-cropped.bmp')
394 blacklist('_ image gen_platf 24bpp-pixeldata-cropped.bmp')
395
396 # CG has unpredictable behavior on this questionable gif
397 # It's probably using uninitialized memory
398 blacklist('_ image gen_platf frame_larger_than_image.gif')
399
400 # CG has unpredictable behavior on incomplete pngs
401 # skbug.com/5774
402 blacklist('_ image gen_platf inc0.png')
403 blacklist('_ image gen_platf inc1.png')
404 blacklist('_ image gen_platf inc2.png')
405 blacklist('_ image gen_platf inc3.png')
406 blacklist('_ image gen_platf inc4.png')
407 blacklist('_ image gen_platf inc5.png')
408 blacklist('_ image gen_platf inc6.png')
409 blacklist('_ image gen_platf inc7.png')
410 blacklist('_ image gen_platf inc8.png')
411 blacklist('_ image gen_platf inc9.png')
412 blacklist('_ image gen_platf inc10.png')
413 blacklist('_ image gen_platf inc11.png')
414 blacklist('_ image gen_platf inc12.png')
415 blacklist('_ image gen_platf inc13.png')
416 blacklist('_ image gen_platf inc14.png')
417
Ben Wagner3f679142017-11-27 13:02:25 -0500418 # These images fail after Mac 10.13.1 upgrade.
419 blacklist('_ image gen_platf incInterlaced.gif')
420 blacklist('_ image gen_platf inc1.gif')
421 blacklist('_ image gen_platf inc0.gif')
422 blacklist('_ image gen_platf butterfly.gif')
423
Matt Sarett6c50a2e2017-05-01 09:13:05 -0400424 # WIC fails on questionable bmps
Eric Boren4c7754c2017-04-10 08:19:10 -0400425 if 'Win' in bot:
Eric Boren4c7754c2017-04-10 08:19:10 -0400426 blacklist('_ image gen_platf pal8os2v2.bmp')
427 blacklist('_ image gen_platf pal8os2v2-16.bmp')
428 blacklist('_ image gen_platf rgba32abf.bmp')
429 blacklist('_ image gen_platf rgb24prof.bmp')
430 blacklist('_ image gen_platf rgb24lprof.bmp')
431 blacklist('_ image gen_platf 8bpp-pixeldata-cropped.bmp')
432 blacklist('_ image gen_platf 4bpp-pixeldata-cropped.bmp')
433 blacklist('_ image gen_platf 32bpp-pixeldata-cropped.bmp')
434 blacklist('_ image gen_platf 24bpp-pixeldata-cropped.bmp')
Eric Boren4c7754c2017-04-10 08:19:10 -0400435 if 'x86_64' in bot and 'CPU' in bot:
436 # This GM triggers a SkSmallAllocator assert.
437 blacklist('_ gm _ composeshader_bitmap')
438
Matt Sarett6c50a2e2017-05-01 09:13:05 -0400439 if 'Win' in bot or 'Mac' in bot:
Leon Scroggins III3a3cf432017-08-18 13:08:16 -0400440 # WIC and CG fail on arithmetic jpegs
Matt Sarett6c50a2e2017-05-01 09:13:05 -0400441 blacklist('_ image gen_platf testimgari.jpg')
Leon Scroggins III3a3cf432017-08-18 13:08:16 -0400442 # More questionable bmps that fail on Mac, too. skbug.com/6984
443 blacklist('_ image gen_platf rle8-height-negative.bmp')
444 blacklist('_ image gen_platf rle4-height-negative.bmp')
Matt Sarett6c50a2e2017-05-01 09:13:05 -0400445
Kevin Lubick2dafbd72017-08-31 10:39:05 -0400446 if 'Android' in bot or 'iOS' in bot or 'Chromecast' in bot:
Eric Boren4c7754c2017-04-10 08:19:10 -0400447 # This test crashes the N9 (perhaps because of large malloc/frees). It also
448 # is fairly slow and not platform-specific. So we just disable it on all of
449 # Android and iOS. skia:5438
450 blacklist('_ test _ GrShape')
451
Eric Borenfb20ac42018-04-24 14:48:19 -0400452 if api.vars.internal_hardware_label == '2':
Kevin Lubickbd27d1d2017-10-13 08:01:49 -0400453 # skia:7160
454 blacklist('_ test _ SRGBReadWritePixels')
455 blacklist('_ test _ SRGBMipMap')
456
Kevin Lubick451b7432017-09-15 14:44:12 -0400457
Eric Boren4c7754c2017-04-10 08:19:10 -0400458 # skia:4095
Mike Reedfb499092017-06-26 13:53:32 +0000459 bad_serialize_gms = ['bleed_image',
Eric Boren4c7754c2017-04-10 08:19:10 -0400460 'c_gms',
461 'colortype',
462 'colortype_xfermodes',
463 'drawfilter',
464 'fontmgr_bounds_0.75_0',
465 'fontmgr_bounds_1_-0.25',
466 'fontmgr_bounds',
467 'fontmgr_match',
468 'fontmgr_iter',
469 'imagemasksubset']
470
471 # skia:5589
472 bad_serialize_gms.extend(['bitmapfilters',
473 'bitmapshaders',
474 'bleed',
475 'bleed_alpha_bmp',
476 'bleed_alpha_bmp_shader',
477 'convex_poly_clip',
478 'extractalpha',
479 'filterbitmap_checkerboard_32_32_g8',
480 'filterbitmap_image_mandrill_64',
481 'shadows',
482 'simpleaaclip_aaclip'])
483 # skia:5595
484 bad_serialize_gms.extend(['composeshader_bitmap',
485 'scaled_tilemodes_npot',
486 'scaled_tilemodes'])
487
488 # skia:5778
489 bad_serialize_gms.append('typefacerendering_pfaMac')
490 # skia:5942
491 bad_serialize_gms.append('parsedpaths')
492
493 # these use a custom image generator which doesn't serialize
494 bad_serialize_gms.append('ImageGeneratorExternal_rect')
495 bad_serialize_gms.append('ImageGeneratorExternal_shader')
496
497 # skia:6189
498 bad_serialize_gms.append('shadow_utils')
499
Brian Salomonbe3c1d22018-05-21 12:54:39 -0400500 # skia:7938
501 bad_serialize_gms.append('persp_images')
502
Matt Sarett9f3dcb32017-05-04 08:53:32 -0400503 # Not expected to round trip encoding/decoding.
Mike Klein0b78a692017-10-31 17:31:17 -0400504 bad_serialize_gms.append('all_bitmap_configs')
Matt Sarett9f3dcb32017-05-04 08:53:32 -0400505 bad_serialize_gms.append('makecolorspace')
506
Brian Salomon7072e222017-11-29 15:12:45 -0500507 # This GM forces a path to be convex. That property doesn't survive
508 # serialization.
509 bad_serialize_gms.append('analytic_antialias_convex')
510
Eric Boren4c7754c2017-04-10 08:19:10 -0400511 for test in bad_serialize_gms:
512 blacklist(['serialize-8888', 'gm', '_', test])
513
514 if 'Mac' not in bot:
515 for test in ['bleed_alpha_image', 'bleed_alpha_image_shader']:
516 blacklist(['serialize-8888', 'gm', '_', test])
517 # It looks like we skip these only for out-of-memory concerns.
Kevin Lubick608c35a2018-01-16 16:15:57 -0500518 if 'Win' in bot or 'Android' in bot:
Eric Boren4c7754c2017-04-10 08:19:10 -0400519 for test in ['verylargebitmap', 'verylarge_picture_image']:
520 blacklist(['serialize-8888', 'gm', '_', test])
Ben Wagner2e4e73f2017-09-08 15:21:44 -0400521 if 'Mac' in bot and 'CPU' in bot:
Ben Wagner38db79f2017-08-23 15:05:50 -0400522 # skia:6992
Ben Wagner6f98bc62017-09-05 16:02:28 -0400523 blacklist(['pic-8888', 'gm', '_', 'encode-platform'])
Ben Wagner38db79f2017-08-23 15:05:50 -0400524 blacklist(['serialize-8888', 'gm', '_', 'encode-platform'])
Eric Boren4c7754c2017-04-10 08:19:10 -0400525
526 # skia:4769
527 for test in ['drawfilter']:
Eric Boren4c7754c2017-04-10 08:19:10 -0400528 blacklist([ 'pic-8888', 'gm', '_', test])
Eric Boren4c7754c2017-04-10 08:19:10 -0400529 blacklist([ 'lite-8888', 'gm', '_', test])
530 # skia:4703
531 for test in ['image-cacherator-from-picture',
532 'image-cacherator-from-raster',
533 'image-cacherator-from-ctable']:
Eric Boren4c7754c2017-04-10 08:19:10 -0400534 blacklist([ 'pic-8888', 'gm', '_', test])
Eric Boren4c7754c2017-04-10 08:19:10 -0400535 blacklist(['serialize-8888', 'gm', '_', test])
536
537 # GM that requires raster-backed canvas
538 for test in ['gamut', 'complexclip4_bw', 'complexclip4_aa']:
Eric Boren4c7754c2017-04-10 08:19:10 -0400539 blacklist([ 'pic-8888', 'gm', '_', test])
540 blacklist([ 'lite-8888', 'gm', '_', test])
Eric Boren4c7754c2017-04-10 08:19:10 -0400541 blacklist(['serialize-8888', 'gm', '_', test])
542
543 # GM that not support tiles_rt
544 for test in ['complexclip4_bw', 'complexclip4_aa']:
545 blacklist([ 'tiles_rt-8888', 'gm', '_', test])
546
547 # Extensions for RAW images
Ben Wagner6e0a6b32017-09-26 14:11:15 -0400548 r = ['arw', 'cr2', 'dng', 'nef', 'nrw', 'orf', 'raf', 'rw2', 'pef', 'srw',
549 'ARW', 'CR2', 'DNG', 'NEF', 'NRW', 'ORF', 'RAF', 'RW2', 'PEF', 'SRW']
Eric Boren4c7754c2017-04-10 08:19:10 -0400550
551 # skbug.com/4888
552 # Blacklist RAW images (and a few large PNGs) on GPU bots
553 # until we can resolve failures.
Matt Sarett929bfeb2017-05-22 10:34:41 -0400554 if 'GPU' in bot:
555 blacklist('_ image _ interlaced1.png')
556 blacklist('_ image _ interlaced2.png')
557 blacklist('_ image _ interlaced3.png')
558 for raw_ext in r:
559 blacklist('_ image _ .%s' % raw_ext)
560
561 # Blacklist memory intensive tests on 32-bit bots.
Ben Wagnerfd66b5f2017-11-15 15:16:27 -0500562 if ('Win8' in bot or 'Win2016' in bot) and 'x86-' in bot:
Matt Sarett929bfeb2017-05-22 10:34:41 -0400563 blacklist('_ image f16 _')
Matt Sarett112565e2017-05-22 13:45:15 -0400564 blacklist('_ image _ abnormal.wbmp')
Eric Boren4c7754c2017-04-10 08:19:10 -0400565 blacklist('_ image _ interlaced1.png')
566 blacklist('_ image _ interlaced2.png')
567 blacklist('_ image _ interlaced3.png')
568 for raw_ext in r:
569 blacklist('_ image _ .%s' % raw_ext)
570
Ben Wagner3f330692017-12-07 15:14:54 -0500571 if 'Nexus5' in bot and 'GPU' in bot:
Eric Boren4c7754c2017-04-10 08:19:10 -0400572 # skia:5876
573 blacklist(['_', 'gm', '_', 'encode-platform'])
574
575 if 'AndroidOne-GPU' in bot: # skia:4697, skia:4704, skia:4694, skia:4705
576 blacklist(['_', 'gm', '_', 'bigblurs'])
577 blacklist(['_', 'gm', '_', 'bleed'])
578 blacklist(['_', 'gm', '_', 'bleed_alpha_bmp'])
579 blacklist(['_', 'gm', '_', 'bleed_alpha_bmp_shader'])
580 blacklist(['_', 'gm', '_', 'bleed_alpha_image'])
581 blacklist(['_', 'gm', '_', 'bleed_alpha_image_shader'])
582 blacklist(['_', 'gm', '_', 'bleed_image'])
583 blacklist(['_', 'gm', '_', 'dropshadowimagefilter'])
584 blacklist(['_', 'gm', '_', 'filterfastbounds'])
585 blacklist([gl_prefix, 'gm', '_', 'imageblurtiled'])
586 blacklist(['_', 'gm', '_', 'imagefiltersclipped'])
587 blacklist(['_', 'gm', '_', 'imagefiltersscaled'])
588 blacklist(['_', 'gm', '_', 'imageresizetiled'])
589 blacklist(['_', 'gm', '_', 'matrixconvolution'])
590 blacklist(['_', 'gm', '_', 'strokedlines'])
591 if sample_count is not '':
592 gl_msaa_config = gl_prefix + 'msaa' + sample_count
593 blacklist([gl_msaa_config, 'gm', '_', 'imageblurtiled'])
594 blacklist([gl_msaa_config, 'gm', '_', 'imagefiltersbase'])
595
596 match = []
597 if 'Valgrind' in bot: # skia:3021
598 match.append('~Threaded')
599
Ben Wagner6c126422017-06-19 12:45:54 -0400600 if 'Valgrind' in bot and 'PreAbandonGpuContext' in bot:
601 # skia:6575
602 match.append('~multipicturedraw_')
603
Ben Wagnerbb3e7ff2017-04-28 15:28:32 -0400604 if 'CommandBuffer' in bot:
605 # https://crbug.com/697030
606 match.append('~HalfFloatAlphaTextureTest')
607
Cary Clarka7c569d2018-02-14 11:31:25 -0500608 if 'AndroidOne' in bot:
609 match.append('~WritePixels') # skia:4711
610 match.append('~PremulAlphaRoundTrip_Gpu') # skia:7501
Brian Salomonf42a7762018-06-21 11:14:51 -0400611 match.append('~ReimportImageTextureWithMipLevels') # skia:8090
Eric Boren4c7754c2017-04-10 08:19:10 -0400612
Kevin Lubick608c35a2018-01-16 16:15:57 -0500613 if 'Chromecast' in bot:
Kevin Lubick6ea9fdf2018-01-17 08:54:21 -0500614 if 'GPU' in bot:
615 # skia:6687
Kevin Lubick6ea9fdf2018-01-17 08:54:21 -0500616 match.append('~animated-image-blurs')
Ben Wagnerd50a1932018-03-01 09:45:18 -0500617 match.append('~blur_0.01')
618 match.append('~blur_image_filter')
Eric Boren1e00d192018-04-13 15:59:02 -0400619 match.append('~check_small_sigma_offset')
Ben Wagnerd50a1932018-03-01 09:45:18 -0500620 match.append('~imageblur2')
621 match.append('~lighting')
622 match.append('~longpathdash')
623 match.append('~matrixconvolution')
Ben Wagnerdabef9d2018-02-27 16:36:12 -0500624 match.append('~textblobmixedsizes_df')
Ben Wagner98c3c612018-02-26 14:53:30 -0500625 match.append('~textblobrandomfont')
Kevin Lubick608c35a2018-01-16 16:15:57 -0500626 # Blacklisted to avoid OOM (we see DM just end with "broken pipe")
Kevin Lubick608c35a2018-01-16 16:15:57 -0500627 match.append('~bigbitmaprect_')
Kevin Lubick608c35a2018-01-16 16:15:57 -0500628 match.append('~DrawBitmapRect')
Kevin Lubick8684c712018-02-12 15:55:57 -0500629 match.append('~drawbitmaprect')
Ben Wagnerd50a1932018-03-01 09:45:18 -0500630 match.append('~GM_animated-image-blurs')
631 match.append('~ImageFilterBlurLargeImage')
632 match.append('~savelayer_clipmask')
633 match.append('~TextBlobCache')
634 match.append('~verylarge')
Kevin Lubick2dafbd72017-08-31 10:39:05 -0400635
Eric Boren4c7754c2017-04-10 08:19:10 -0400636 if 'GalaxyS6' in bot:
637 match.append('~SpecialImage') # skia:6338
Brian Osmaneee3c092017-06-15 13:25:10 -0400638 match.append('~skbug6653') # skia:6653
Eric Boren4c7754c2017-04-10 08:19:10 -0400639
Eric Boren4c7754c2017-04-10 08:19:10 -0400640 if 'MSAN' in bot:
641 match.extend(['~Once', '~Shared']) # Not sure what's up with these tests.
642
643 if 'TSAN' in bot:
644 match.extend(['~ReadWriteAlpha']) # Flaky on TSAN-covered on nvidia bots.
645 match.extend(['~RGBA4444TextureTest', # Flakier than they are important.
646 '~RGB565TextureTest'])
647
Ben Wagnerdba0bc82017-12-11 13:27:27 -0500648 # By default, we test with GPU threading enabled, unless specifically
649 # disabled.
650 if 'NoGPUThreads' in bot:
651 args.extend(['--gpuThreads', '0'])
652
Greg Daniela86385d2017-06-05 11:34:29 -0400653 if 'Vulkan' in bot and 'Adreno530' in bot:
654 # skia:5777
655 match.extend(['~CopySurface'])
Eric Boren4c7754c2017-04-10 08:19:10 -0400656
Brian Salomon3d86a192018-02-27 16:46:11 -0500657 if 'Vulkan' in bot and 'Adreno' in bot:
658 # skia:7663
659 match.extend(['~WritePixelsNonTextureMSAA_Gpu'])
660 match.extend(['~WritePixelsMSAA_Gpu'])
661
Eric Boren4c7754c2017-04-10 08:19:10 -0400662 if 'Vulkan' in bot and 'NexusPlayer' in bot:
Ben Wagner407a3b72017-09-07 22:14:07 -0400663 # skia:6132
Ben Wagner0ecc2b7e2017-11-09 22:10:44 -0500664 match.append('~^tilemodes$')
Greg Daniel4c723832017-11-13 12:59:08 -0500665 match.append('~tilemodes_npot$')
Greg Daniel41886c82017-11-15 09:20:13 -0500666 match.append('~scaled_tilemodes$')
667 match.append('~emboss')
Ben Wagner0ecc2b7e2017-11-09 22:10:44 -0500668 match.append('~^bitmapfilters$')
669 match.append('~^shadertext$')
670 match.append('~^FullScreenClearWithLayers$') #skia:7191
671 match.append('~^GrDefaultPathRendererTest$') #skia:7244
672 match.append('~^GrMSAAPathRendererTest$') #skia:7244
Ben Wagner407a3b72017-09-07 22:14:07 -0400673 # skia:7018
Ben Wagner0ecc2b7e2017-11-09 22:10:44 -0500674 match.extend(['~^ClearOp$',
675 '~^ComposedImageFilterBounds_Gpu$',
676 '~^ImageEncode_Gpu$',
677 '~^ImageFilterFailAffectsTransparentBlack_Gpu$',
678 '~^ImageFilterZeroBlurSigma_Gpu$',
679 '~^ImageNewShader_GPU$',
680 '~^ImageReadPixels_Gpu$',
681 '~^ImageScalePixels_Gpu$',
682 '~^ReadWriteAlpha$',
683 '~^SpecialImage_DeferredGpu$',
684 '~^SpecialImage_Gpu$',
685 '~^SurfaceSemaphores$'])
Robert Phillips9ad12132018-04-23 14:32:38 -0400686 # skia:7837
687 match.append('~BlurMaskBiggerThanDest')
Greg Daniel6f6de652018-07-20 17:04:01 -0400688 # skia:8166
689 match.extend(['~SkRemoteGlyphCache_DrawTextXY',
690 '~SkRemoteGlyphCache_DrawTextAsPath',
691 '~SkRemoteGlyphCache_StrikeSerialization'])
Eric Boren4c7754c2017-04-10 08:19:10 -0400692
Ben Wagner2107bd82018-06-12 14:16:07 -0400693 if 'Vulkan' in bot and 'GalaxyS7_G930FD' in bot:
694 # skia:8064
695 match.append('~^WritePixelsNonTexture_Gpu$')
696
Ben Wagner63457572017-12-21 10:49:58 -0500697 if 'Vulkan' in bot and api.vars.is_linux and 'IntelIris640' in bot:
Eric Boren4c7754c2017-04-10 08:19:10 -0400698 match.extend(['~VkHeapTests']) # skia:6245
699
Kevin Lubickec4e7352018-04-25 07:46:55 -0400700 if api.vars.is_linux and 'IntelIris640' in bot:
701 match.extend(['~GLPrograms']) # skia:7849
702
Ben Wagnerb8427032017-11-18 19:04:25 -0500703 if 'Vulkan' in bot and api.vars.is_linux and 'IntelHD405' in bot:
Ben Wagner32eb5ba2017-11-20 13:46:20 -0500704 # skia:7322
Ben Wagnerb8427032017-11-18 19:04:25 -0500705 blacklist(['vk', 'gm', '_', 'skbug_257'])
Chris Dalton414be9b2018-04-26 14:37:01 -0600706 blacklist(['vk', 'gm', '_', 'filltypespersp'])
Ben Wagnerb8427032017-11-18 19:04:25 -0500707 match.append('~^ClearOp$')
Greg Danielec34a712017-12-06 12:06:26 -0500708 match.append('~^CopySurface$')
709 match.append('~^ImageNewShader_GPU$')
Ben Wagnerb8427032017-11-18 19:04:25 -0500710 match.append('~^InitialTextureClear$')
Greg Danielec34a712017-12-06 12:06:26 -0500711 match.append('~^PinnedImageTest$')
Ben Wagnerb8427032017-11-18 19:04:25 -0500712 match.append('~^ReadPixels_Gpu$')
713 match.append('~^ReadPixels_Texture$')
Greg Danielec34a712017-12-06 12:06:26 -0500714 match.append('~^SRGBReadWritePixels$')
Ben Wagnerb8427032017-11-18 19:04:25 -0500715 match.append('~^VkUploadPixelsTests$')
716 match.append('~^WritePixelsNonTexture_Gpu$')
Brian Salomon3d86a192018-02-27 16:46:11 -0500717 match.append('~^WritePixelsNonTextureMSAA_Gpu$')
Ben Wagnerb8427032017-11-18 19:04:25 -0500718 match.append('~^WritePixels_Gpu$')
Brian Salomon3d86a192018-02-27 16:46:11 -0500719 match.append('~^WritePixelsMSAA_Gpu$')
Ben Wagnerb8427032017-11-18 19:04:25 -0500720 match.append('~^skbug6653$')
721
Ben Wagnerf1debdf2017-06-13 13:37:05 -0400722 if 'Vulkan' in bot and 'IntelIris540' in bot and 'Win' in bot:
Eric Boren4c7754c2017-04-10 08:19:10 -0400723 # skia:6398
724 blacklist(['vk', 'gm', '_', 'aarectmodes'])
725 blacklist(['vk', 'gm', '_', 'aaxfermodes'])
Greg Daniel0eef6742017-11-20 16:05:04 -0500726 blacklist(['vk', 'gm', '_', 'dont_clip_to_layer'])
Mike Klein78932122017-11-15 13:21:40 -0500727 blacklist(['vk', 'gm', '_', 'dftext'])
Eric Boren4c7754c2017-04-10 08:19:10 -0400728 blacklist(['vk', 'gm', '_', 'drawregionmodes'])
729 blacklist(['vk', 'gm', '_', 'filterfastbounds'])
Mike Klein0030c5e2017-11-13 13:27:48 -0500730 blacklist(['vk', 'gm', '_', 'fontmgr_iter'])
Mike Klein0030c5e2017-11-13 13:27:48 -0500731 blacklist(['vk', 'gm', '_', 'fontmgr_match'])
732 blacklist(['vk', 'gm', '_', 'fontscaler'])
Eric Boren4c7754c2017-04-10 08:19:10 -0400733 blacklist(['vk', 'gm', '_', 'fontscalerdistortable'])
734 blacklist(['vk', 'gm', '_', 'gammagradienttext'])
Mike Klein0030c5e2017-11-13 13:27:48 -0500735 blacklist(['vk', 'gm', '_', 'gammatext'])
Eric Boren4c7754c2017-04-10 08:19:10 -0400736 blacklist(['vk', 'gm', '_', 'gradtext'])
737 blacklist(['vk', 'gm', '_', 'hairmodes'])
738 blacklist(['vk', 'gm', '_', 'imagefilters_xfermodes'])
739 blacklist(['vk', 'gm', '_', 'imagefiltersclipped'])
Eric Boren4c7754c2017-04-10 08:19:10 -0400740 blacklist(['vk', 'gm', '_', 'imagefiltersscaled'])
741 blacklist(['vk', 'gm', '_', 'imagefiltersstroked'])
742 blacklist(['vk', 'gm', '_', 'imagefilterstransformed'])
743 blacklist(['vk', 'gm', '_', 'imageresizetiled'])
744 blacklist(['vk', 'gm', '_', 'lcdblendmodes'])
745 blacklist(['vk', 'gm', '_', 'lcdoverlap'])
Mike Klein0030c5e2017-11-13 13:27:48 -0500746 blacklist(['vk', 'gm', '_', 'lcdtext'])
Eric Boren4c7754c2017-04-10 08:19:10 -0400747 blacklist(['vk', 'gm', '_', 'lcdtextsize'])
748 blacklist(['vk', 'gm', '_', 'matriximagefilter'])
Mike Klein78932122017-11-15 13:21:40 -0500749 blacklist(['vk', 'gm', '_', 'mixedtextblobs'])
Eric Boren4c7754c2017-04-10 08:19:10 -0400750 blacklist(['vk', 'gm', '_', 'resizeimagefilter'])
751 blacklist(['vk', 'gm', '_', 'rotate_imagefilter'])
752 blacklist(['vk', 'gm', '_', 'savelayer_lcdtext'])
Greg Daniel0c269d02018-02-08 15:26:49 -0500753 blacklist(['vk', 'gm', '_', 'shadermaskfilter_image'])
Eric Boren4c7754c2017-04-10 08:19:10 -0400754 blacklist(['vk', 'gm', '_', 'srcmode'])
755 blacklist(['vk', 'gm', '_', 'surfaceprops'])
756 blacklist(['vk', 'gm', '_', 'textblobgeometrychange'])
757 blacklist(['vk', 'gm', '_', 'textbloblooper'])
758 blacklist(['vk', 'gm', '_', 'textblobmixedsizes'])
Eric Boren4c7754c2017-04-10 08:19:10 -0400759 blacklist(['vk', 'gm', '_', 'textblobrandomfont'])
760 blacklist(['vk', 'gm', '_', 'textfilter_color'])
761 blacklist(['vk', 'gm', '_', 'textfilter_image'])
Eric Boren4c7754c2017-04-10 08:19:10 -0400762 blacklist(['vk', 'gm', '_', 'varied_text_clipped_lcd'])
763 blacklist(['vk', 'gm', '_', 'varied_text_ignorable_clip_lcd'])
Eric Boren4c7754c2017-04-10 08:19:10 -0400764
Greg Daniele5b7e6d2018-06-12 10:52:59 -0400765 if 'Vulkan' in bot and 'GTX660' in bot and 'Win' in bot:
766 # skbug.com/8047
767 match.append('~FloatingPointTextureTest$')
768
Chris Dalton2b937f52018-05-17 10:17:10 -0600769 if 'MoltenVK' in bot:
770 # skbug.com/7959
771 blacklist(['_', 'gm', '_', 'vertices_scaled_shader'])
772 blacklist(['_', 'gm', '_', 'vertices'])
773 match.append('~^InitialTextureClear$')
Chris Dalton2b937f52018-05-17 10:17:10 -0600774 match.append('~^RGB565TextureTest$')
775 match.append('~^RGBA4444TextureTest$')
776 match.append('~^WritePixelsNonTextureMSAA_Gpu$')
Chris Dalton2b937f52018-05-17 10:17:10 -0600777
Ben Wagner2040ed22017-11-22 11:22:22 -0500778 if (('RadeonR9M470X' in bot or 'RadeonHD7770' in bot) and 'ANGLE' in bot):
Robert Phillips435db422017-10-04 09:38:11 -0400779 # skia:7096
780 match.append('~PinnedImageTest')
781
Robert Phillipsa96a1012018-04-23 10:46:09 -0400782 if 'ANGLE' in bot:
783 # skia:7835
784 match.append('~BlurMaskBiggerThanDest')
785
Eric Boren4c7754c2017-04-10 08:19:10 -0400786 if 'IntelIris540' in bot and 'ANGLE' in bot:
Eric Boren4c7754c2017-04-10 08:19:10 -0400787 for config in ['angle_d3d9_es2', 'angle_d3d11_es2', 'angle_gl_es2']:
Brian Salomon6e554e32017-06-23 12:08:10 -0400788 # skia:6103
Eric Boren4c7754c2017-04-10 08:19:10 -0400789 blacklist([config, 'gm', '_', 'multipicturedraw_invpathclip_simple'])
790 blacklist([config, 'gm', '_', 'multipicturedraw_noclip_simple'])
791 blacklist([config, 'gm', '_', 'multipicturedraw_pathclip_simple'])
792 blacklist([config, 'gm', '_', 'multipicturedraw_rectclip_simple'])
793 blacklist([config, 'gm', '_', 'multipicturedraw_rrectclip_simple'])
Brian Salomon6e554e32017-06-23 12:08:10 -0400794 # skia:6141
795 blacklist([config, 'gm', '_', 'discard'])
Eric Boren4c7754c2017-04-10 08:19:10 -0400796
Ben Wagner1c4668d2018-07-23 14:25:02 -0400797 if 'IntelIris6100' in bot and 'ANGLE' in bot:
798 # skia:7376
799 match.append('~^ProcessorOptimizationValidationTest$')
800
Ben Wagnerc6b2e6b2017-10-07 18:57:25 -0400801 if ('IntelIris6100' in bot or 'IntelHD4400' in bot) and 'ANGLE' in bot:
802 # skia:6857
803 blacklist(['angle_d3d9_es2', 'gm', '_', 'lighting'])
804
Kevin Lubickc14e5a72017-08-15 13:22:19 -0400805 if 'PowerVRGX6250' in bot:
806 match.append('~gradients_view_perspective_nodither') #skia:6972
807
Mike Klein3a3fbf12018-01-30 08:08:49 -0500808 if '-arm-' in bot and 'ASAN' in bot:
809 # TODO: can we run with env allocator_may_return_null=1 instead?
810 match.append('~BadImage')
811
Ben Wagner1d8726f2018-02-02 14:47:31 -0500812 if 'Mac' in bot and 'IntelHD6000' in bot:
Ben Wagnerdf430052018-02-08 16:57:04 -0500813 # skia:7574
Ben Wagner1d8726f2018-02-02 14:47:31 -0500814 match.append('~^ProcessorCloneTest$')
815 match.append('~^GrMeshTest$')
816
Ben Wagnerdf430052018-02-08 16:57:04 -0500817 if 'Mac' in bot and 'IntelHD615' in bot:
818 # skia:7603
819 match.append('~^GrMeshTest$')
820
Eric Boren4c7754c2017-04-10 08:19:10 -0400821 if blacklisted:
822 args.append('--blacklist')
823 args.extend(blacklisted)
824
Greg Danielb95d2782018-07-24 11:35:18 -0400825 if 'Metal' in bot:
826 match = ['GrUploadPixelsTests']
827
Eric Boren4c7754c2017-04-10 08:19:10 -0400828 if match:
829 args.append('--match')
830 args.extend(match)
831
832 # These bots run out of memory running RAW codec tests. Do not run them in
833 # parallel
Ben Wagner2040ed22017-11-22 11:22:22 -0500834 if 'NexusPlayer' in bot or 'Nexus5' in bot or 'Nexus9' in bot:
Eric Boren4c7754c2017-04-10 08:19:10 -0400835 args.append('--noRAW_threading')
836
Yuqian Li84be3ad2017-10-17 10:11:21 -0400837 if 'FSAA' in bot:
838 args.extend(['--analyticAA', 'false', '--deltaAA', 'false'])
839 if 'FAAA' in bot:
840 args.extend(['--deltaAA', 'false', '--forceAnalyticAA'])
841 if 'FDAA' in bot:
842 args.extend(['--deltaAA', '--forceDeltaAA'])
843
Mike Kleinc207da82017-11-10 14:24:34 -0500844 if 'NativeFonts' not in bot:
845 args.append('--nonativeFonts')
846
Mike Klein0c5fdcb2017-11-13 12:40:46 -0500847 if 'GDI' in bot:
848 args.append('--gdi')
849
Stephan Altmueller74dac542017-09-11 15:32:21 -0400850 # Let's make all bots produce verbose output by default.
851 args.append('--verbose')
Mike Kleinc9089062017-06-26 09:09:32 -0400852
Eric Boren4c7754c2017-04-10 08:19:10 -0400853 return args
854
855
856def key_params(api):
857 """Build a unique key from the builder name (as a list).
858
859 E.g. arch x86 gpu GeForce320M mode MacMini4.1 os Mac10.6
860 """
861 # Don't bother to include role, which is always Test.
Kevin Lubick9ef6de72017-10-15 21:05:58 -0400862 blacklist = ['role', 'test_filter']
Eric Boren4c7754c2017-04-10 08:19:10 -0400863
864 flat = []
865 for k in sorted(api.vars.builder_cfg.keys()):
866 if k not in blacklist:
867 flat.append(k)
868 flat.append(api.vars.builder_cfg[k])
869 return flat
870
871
872def test_steps(api):
873 """Run the DM test."""
Eric Boren72f66682018-05-18 07:36:55 -0400874 b = api.properties['buildername']
Eric Boren4c7754c2017-04-10 08:19:10 -0400875 use_hash_file = False
Eric Boren72f66682018-05-18 07:36:55 -0400876 if upload_dm_results(b):
877 host_dm_dir = str(api.flavor.host_dirs.dm_dir)
878 api.flavor.create_clean_host_dir(api.path['start_dir'].join('test'))
Eric Boren4c7754c2017-04-10 08:19:10 -0400879 device_dm_dir = str(api.flavor.device_dirs.dm_dir)
880 if host_dm_dir != device_dm_dir:
881 api.flavor.create_clean_device_dir(device_dm_dir)
882
883 # Obtain the list of already-generated hashes.
884 hash_filename = 'uninteresting_hashes.txt'
885
Eric Boren4c7754c2017-04-10 08:19:10 -0400886 host_hashes_file = api.vars.tmp_dir.join(hash_filename)
887 hashes_file = api.flavor.device_path_join(
888 api.flavor.device_dirs.tmp_dir, hash_filename)
889 api.run(
890 api.python.inline,
891 'get uninteresting hashes',
892 program="""
893 import contextlib
894 import math
895 import socket
896 import sys
897 import time
898 import urllib2
899
Stephan Altmuellerc19ebc52017-05-30 16:39:17 -0400900 HASHES_URL = 'https://storage.googleapis.com/skia-infra-gm/hash_files/gold-prod-hashes.txt'
Eric Boren4c7754c2017-04-10 08:19:10 -0400901 RETRIES = 5
902 TIMEOUT = 60
903 WAIT_BASE = 15
904
905 socket.setdefaulttimeout(TIMEOUT)
906 for retry in range(RETRIES):
907 try:
908 with contextlib.closing(
909 urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:
910 hashes = w.read()
911 with open(sys.argv[1], 'w') as f:
912 f.write(hashes)
913 break
914 except Exception as e:
915 print 'Failed to get uninteresting hashes from %s:' % HASHES_URL
916 print e
917 if retry == RETRIES:
918 raise
919 waittime = WAIT_BASE * math.pow(2, retry)
920 print 'Retry in %d seconds.' % waittime
921 time.sleep(waittime)
922 """,
923 args=[host_hashes_file],
924 abort_on_failure=False,
925 fail_build_on_failure=False,
926 infra_step=True)
927
928 if api.path.exists(host_hashes_file):
929 api.flavor.copy_file_to_device(host_hashes_file, hashes_file)
930 use_hash_file = True
931
932 # Run DM.
933 properties = [
Eric Boren72f66682018-05-18 07:36:55 -0400934 'gitHash', api.properties['revision'],
Eric Boren9a9e3872017-11-29 12:33:22 -0500935 'builder', api.vars.builder_name,
936 'buildbucket_build_id', api.properties.get('buildbucket_build_id', ''),
Eric Boren4c7754c2017-04-10 08:19:10 -0400937 ]
938 if api.vars.is_trybot:
939 properties.extend([
940 'issue', api.vars.issue,
941 'patchset', api.vars.patchset,
942 'patch_storage', api.vars.patch_storage,
943 ])
Eric Borenf9aa9e52017-04-10 09:56:10 -0400944 properties.extend(['swarming_bot_id', api.vars.swarming_bot_id])
945 properties.extend(['swarming_task_id', api.vars.swarming_task_id])
Eric Boren4c7754c2017-04-10 08:19:10 -0400946
Kevin Lubick2dafbd72017-08-31 10:39:05 -0400947 if 'Chromecast' in api.vars.builder_cfg.get('os', ''):
948 # Due to limited disk space, we only deal with skps and one image.
949 args = [
950 'dm',
Kevin Lubick2dafbd72017-08-31 10:39:05 -0400951 '--resourcePath', api.flavor.device_dirs.resource_dir,
952 '--skps', api.flavor.device_dirs.skp_dir,
953 '--images', api.flavor.device_path_join(
Kevin Lubickc2f3e8d2018-01-24 15:48:26 -0500954 api.flavor.device_dirs.resource_dir, 'images', 'color_wheel.jpg'),
Kevin Lubick608c35a2018-01-16 16:15:57 -0500955 '--nameByHash',
956 '--properties'
957 ] + properties
Kevin Lubick95379eb2018-01-17 11:20:19 -0500958 else:
959 args = [
960 'dm',
961 '--resourcePath', api.flavor.device_dirs.resource_dir,
962 '--skps', api.flavor.device_dirs.skp_dir,
963 '--images', api.flavor.device_path_join(
964 api.flavor.device_dirs.images_dir, 'dm'),
965 '--colorImages', api.flavor.device_path_join(
966 api.flavor.device_dirs.images_dir, 'colorspace'),
967 '--nameByHash',
968 '--properties'
969 ] + properties
970
971 args.extend(['--svgs', api.flavor.device_dirs.svg_dir])
Eric Boren8c172ba2018-07-19 13:27:49 -0400972 if 'Lottie' in api.vars.builder_cfg.get('extra_config', ''):
973 args.extend(['--lotties', api.flavor.device_dirs.lotties_dir])
Kevin Lubick95379eb2018-01-17 11:20:19 -0500974
975 args.append('--key')
976 args.extend(key_params(api))
Kevin Lubick608c35a2018-01-16 16:15:57 -0500977
978 if use_hash_file:
979 args.extend(['--uninterestingHashesFile', hashes_file])
Eric Boren72f66682018-05-18 07:36:55 -0400980 if upload_dm_results(b):
Kevin Lubick608c35a2018-01-16 16:15:57 -0500981 args.extend(['--writePath', api.flavor.device_dirs.dm_dir])
Kevin Lubick2dafbd72017-08-31 10:39:05 -0400982
Eric Boren89cd3572017-06-28 13:50:22 -0400983 args.extend(dm_flags(api, api.vars.builder_name))
Eric Boren4c7754c2017-04-10 08:19:10 -0400984
Eric Boren4c7754c2017-04-10 08:19:10 -0400985 # See skia:2789.
Ben Wagner37491d22017-12-13 13:00:47 -0500986 if 'AbandonGpuContext' in api.vars.extra_tokens:
Eric Boren4c7754c2017-04-10 08:19:10 -0400987 args.append('--abandonGpuContext')
Ben Wagner37491d22017-12-13 13:00:47 -0500988 if 'PreAbandonGpuContext' in api.vars.extra_tokens:
Eric Boren4c7754c2017-04-10 08:19:10 -0400989 args.append('--preAbandonGpuContext')
Ben Wagner37491d22017-12-13 13:00:47 -0500990 if 'ReleaseAndAbandonGpuContext' in api.vars.extra_tokens:
Eric Boren6ec17e32017-04-26 14:25:29 -0400991 args.append('--releaseAndAbandonGpuContext')
Eric Boren4c7754c2017-04-10 08:19:10 -0400992
Ben Wagner5655ba42017-10-02 10:48:32 -0400993 api.run(api.flavor.step, 'dm', cmd=args, abort_on_failure=False)
Eric Boren4c7754c2017-04-10 08:19:10 -0400994
Eric Boren72f66682018-05-18 07:36:55 -0400995 if upload_dm_results(b):
Eric Boren4c7754c2017-04-10 08:19:10 -0400996 # Copy images and JSON to host machine if needed.
997 api.flavor.copy_directory_contents_to_host(
Eric Boren72f66682018-05-18 07:36:55 -0400998 api.flavor.device_dirs.dm_dir, api.flavor.host_dirs.dm_dir)
Eric Boren4c7754c2017-04-10 08:19:10 -0400999
1000
borenet1ed2ae42016-07-26 11:52:17 -07001001def RunSteps(api):
Eric Borenb7023162018-05-04 13:46:15 -04001002 api.vars.setup()
1003 api.file.ensure_directory('makedirs tmp_dir', api.vars.tmp_dir)
1004 api.flavor.setup()
1005
Robert Iannucci297a7ef2017-05-12 19:09:38 -07001006 env = {}
Eric Boren4c7754c2017-04-10 08:19:10 -04001007 if 'iOS' in api.vars.builder_name:
1008 env['IOS_BUNDLE_ID'] = 'com.google.dm'
Stephan Altmueller63e843d2017-04-25 11:38:38 -04001009 env['IOS_MOUNT_POINT'] = api.vars.slave_dir.join('mnt_iosdevice')
Robert Iannucci297a7ef2017-05-12 19:09:38 -07001010 with api.context(env=env):
Eric Boren4c7754c2017-04-10 08:19:10 -04001011 try:
Kevin Lubick2dafbd72017-08-31 10:39:05 -04001012 if 'Chromecast' in api.vars.builder_name:
1013 api.flavor.install(resources=True, skps=True)
Eric Boren8c172ba2018-07-19 13:27:49 -04001014 elif 'Lottie' in api.vars.builder_name:
1015 api.flavor.install(resources=True, lotties=True)
Kevin Lubick2dafbd72017-08-31 10:39:05 -04001016 else:
Eric Boren8c172ba2018-07-19 13:27:49 -04001017 api.flavor.install(skps=True, images=True, svgs=True, resources=True)
Eric Boren4c7754c2017-04-10 08:19:10 -04001018 test_steps(api)
1019 finally:
1020 api.flavor.cleanup_steps()
1021 api.run.check_failure()
1022
1023
Eric Borenf9aa9e52017-04-10 09:56:10 -04001024TEST_BUILDERS = [
Kevin Lubick9ef6de72017-10-15 21:05:58 -04001025 'Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android',
1026 'Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android',
Ben Wagner12e69e72018-07-15 15:12:01 -04001027 ('Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All'
1028 '-Android_NoGPUThreads'),
Ben Wagner2107bd82018-06-12 14:16:07 -04001029 ('Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All'
1030 '-Android_Vulkan'),
Ben Wagner12e69e72018-07-15 15:12:01 -04001031 'Test-Android-Clang-MotoG4-CPU-Snapdragon617-arm-Release-All-Android',
Kevin Lubick9ef6de72017-10-15 21:05:58 -04001032 'Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_CCPR',
Kevin Lubick9ef6de72017-10-15 21:05:58 -04001033 'Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android',
Ben Wagner5cf6d322017-12-07 10:23:07 -05001034 'Test-Android-Clang-Nexus7-CPU-Tegra3-arm-Release-All-Android',
Kevin Lubick9ef6de72017-10-15 21:05:58 -04001035 'Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan',
Ben Wagner52423f32017-12-07 10:17:13 -05001036 'Test-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android_Vulkan',
Ben Wagner12e69e72018-07-15 15:12:01 -04001037 'Test-Android-Clang-Pixel-GPU-Adreno530-arm-Debug-All-Android_ASAN',
Kevin Lubickd7af1db2017-11-02 12:03:22 -04001038 ('Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-'
1039 'arm-Debug-All'),
Mike Klein54d7b312018-06-27 13:43:51 -04001040 'Test-Chromecast-Clang-Chorizo-CPU-Cortex_A7-arm-Release-All',
1041 'Test-Chromecast-Clang-Chorizo-GPU-Cortex_A7-arm-Release-All',
Kevin Lubick9ef6de72017-10-15 21:05:58 -04001042 'Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-ASAN',
Kevin Lubick32f318b2017-10-17 13:40:52 -04001043 'Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_00_10-Coverage',
Kevin Lubick9ef6de72017-10-15 21:05:58 -04001044 'Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-MSAN',
1045 ('Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All'
Ben Wagner9fb285e2017-10-02 16:53:07 -04001046 '-SK_USE_DISCARDABLE_SCALEDIMAGECACHE'),
Kevin Lubicka585f732018-05-07 12:08:58 -04001047 'Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-T8888',
Eric Boren8c172ba2018-07-19 13:27:49 -04001048 'Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Lottie',
Kevin Lubick9ef6de72017-10-15 21:05:58 -04001049 ('Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All'
Ben Wagner6e0a6b32017-09-26 14:11:15 -04001050 '-SK_FORCE_RASTER_PIPELINE_BLITTER'),
Kevin Lubick9ef6de72017-10-15 21:05:58 -04001051 'Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-TSAN',
Ben Wagnerd26e4462018-05-22 10:46:15 -04001052 'Test-Debian9-Clang-GCE-GPU-SwiftShader-x86_64-Release-All-SwiftShader',
Kevin Lubick88611a12018-04-26 09:46:45 -04001053 'Test-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan',
1054 'Test-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Debug-All-Vulkan',
Ben Wagner1d8726f2018-02-02 14:47:31 -05001055 'Test-Mac-Clang-MacBookAir7.2-GPU-IntelHD6000-x86_64-Debug-All',
Kevin Lubick9ef6de72017-10-15 21:05:58 -04001056 'Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All',
1057 'Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All-CommandBuffer',
Jim Van Verth1b6c75c2018-02-16 09:49:08 -05001058 'Test-Mac-Clang-MacBook10.1-GPU-IntelHD615-x86_64-Release-All-NativeFonts',
Greg Danielb95d2782018-07-24 11:35:18 -04001059 'Test-Mac-Clang-MacBookPro11.5-GPU-RadeonHD8870M-x86_64-Debug-All-Metal',
Chris Dalton2b937f52018-05-17 10:17:10 -06001060 ('Test-Mac-Clang-MacBookPro11.5-GPU-RadeonHD8870M-x86_64-Release-All-'
1061 'MoltenVK_Vulkan'),
Ben Wagner9f553932017-11-27 22:18:12 -05001062 'Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan_Coverage',
Kevin Lubick9ef6de72017-10-15 21:05:58 -04001063 ('Test-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All'
Ben Wagner6e0a6b32017-09-26 14:11:15 -04001064 '-Valgrind_AbandonGpuContext_SK_CPU_LIMIT_SSE41'),
Kevin Lubick9ef6de72017-10-15 21:05:58 -04001065 ('Test-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All'
Ben Wagner6e0a6b32017-09-26 14:11:15 -04001066 '-Valgrind_PreAbandonGpuContext_SK_CPU_LIMIT_SSE41'),
Eric Borendd8b1fc2018-05-18 09:54:02 -04001067 'Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-DDL1',
1068 'Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-DDL3',
Eric Boren9f4efd32018-07-20 08:25:42 -04001069 'Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Lottie',
Ben Wagnerb2fd61a2017-10-23 16:01:44 -04001070 'Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE',
Kevin Lubick9ef6de72017-10-15 21:05:58 -04001071 ('Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All'
Ben Wagner6e0a6b32017-09-26 14:11:15 -04001072 '-ReleaseAndAbandonGpuContext'),
Ben Wagnerfd66b5f2017-11-15 15:16:27 -05001073 'Test-Win10-Clang-NUC5i7RYH-CPU-AVX2-x86_64-Debug-All-NativeFonts_GDI',
Ben Wagner1c4668d2018-07-23 14:25:02 -04001074 'Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All-ANGLE',
Ben Wagnerb2fd61a2017-10-23 16:01:44 -04001075 'Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE',
Kevin Lubick9ef6de72017-10-15 21:05:58 -04001076 'Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan',
Ben Wagnerb2fd61a2017-10-23 16:01:44 -04001077 'Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE',
Greg Daniele5b7e6d2018-06-12 10:52:59 -04001078 'Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan',
Ben Wagnerb2fd61a2017-10-23 16:01:44 -04001079 'Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE',
Kevin Lubick9ef6de72017-10-15 21:05:58 -04001080 'Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-Vulkan',
Ben Wagner78935c22017-11-15 13:21:03 -05001081 'Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FAAA',
1082 'Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FDAA',
1083 'Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FSAA',
Kevin Lubick9ef6de72017-10-15 21:05:58 -04001084 'Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All',
Eric Borenf9aa9e52017-04-10 09:56:10 -04001085]
borenet1ed2ae42016-07-26 11:52:17 -07001086
1087
1088def GenTests(api):
Eric Borenf9aa9e52017-04-10 09:56:10 -04001089 for builder in TEST_BUILDERS:
1090 test = (
1091 api.test(builder) +
1092 api.properties(buildername=builder,
Eric Boren9a9e3872017-11-29 12:33:22 -05001093 buildbucket_build_id='123454321',
Eric Borenf9aa9e52017-04-10 09:56:10 -04001094 revision='abc123',
1095 path_config='kitchen',
1096 swarm_out_dir='[SWARM_OUT_DIR]') +
1097 api.path.exists(
1098 api.path['start_dir'].join('skia'),
1099 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
1100 'skimage', 'VERSION'),
1101 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
1102 'skp', 'VERSION'),
1103 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
1104 'svg', 'VERSION'),
1105 api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt')
Ben Wagnerf835c222017-04-30 11:14:51 -04001106 ) +
1107 api.step_data('get swarming bot id',
1108 stdout=api.raw_io.output('skia-bot-123')) +
1109 api.step_data('get swarming task id',
1110 stdout=api.raw_io.output('123456'))
Eric Borenf9aa9e52017-04-10 09:56:10 -04001111 )
Eric Borenf9aa9e52017-04-10 09:56:10 -04001112 if 'Win' in builder:
1113 test += api.platform('win', 64)
Eric Boren4c7754c2017-04-10 08:19:10 -04001114
Kevin Lubick2dafbd72017-08-31 10:39:05 -04001115 if 'Chromecast' in builder:
1116 test += api.step_data(
1117 'read chromecast ip',
1118 stdout=api.raw_io.output('192.168.1.2:5555'))
1119
Eric Borenf9aa9e52017-04-10 09:56:10 -04001120 if 'ChromeOS' in builder:
1121 test += api.step_data(
1122 'read chromeos ip',
1123 stdout=api.raw_io.output('{"user_ip":"foo@127.0.0.1"}'))
Eric Boren4c7754c2017-04-10 08:19:10 -04001124
Eric Borenf9aa9e52017-04-10 09:56:10 -04001125 yield test
Eric Boren4c7754c2017-04-10 08:19:10 -04001126
Eric Borendd8b1fc2018-05-18 09:54:02 -04001127 builder = 'Test-Win8-Clang-Golo-CPU-AVX-x86-Debug-All'
Kevin Lubickfe079d42017-04-12 08:31:48 -04001128 yield (
1129 api.test('trybot') +
1130 api.properties(buildername=builder,
Eric Boren9a9e3872017-11-29 12:33:22 -05001131 buildbucket_build_id='123454321',
Kevin Lubickfe079d42017-04-12 08:31:48 -04001132 revision='abc123',
1133 path_config='kitchen',
1134 swarm_out_dir='[SWARM_OUT_DIR]') +
1135 api.properties(patch_storage='gerrit') +
1136 api.properties.tryserver(
1137 buildername=builder,
1138 gerrit_project='skia',
1139 gerrit_url='https://skia-review.googlesource.com/',
1140 )+
1141 api.path.exists(
1142 api.path['start_dir'].join('skia'),
1143 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
1144 'skimage', 'VERSION'),
1145 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
1146 'skp', 'VERSION'),
1147 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
1148 'svg', 'VERSION'),
1149 api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt')
1150 )
1151 )
1152
Kevin Lubick9ef6de72017-10-15 21:05:58 -04001153 builder = 'Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All'
borenet1ed2ae42016-07-26 11:52:17 -07001154 yield (
Eric Boren4c7754c2017-04-10 08:19:10 -04001155 api.test('failed_dm') +
1156 api.properties(buildername=builder,
Eric Boren9a9e3872017-11-29 12:33:22 -05001157 buildbucket_build_id='123454321',
borenet1ed2ae42016-07-26 11:52:17 -07001158 revision='abc123',
1159 path_config='kitchen',
1160 swarm_out_dir='[SWARM_OUT_DIR]') +
1161 api.path.exists(
Ravi Mistry9bcca6a2016-11-21 16:06:19 -05001162 api.path['start_dir'].join('skia'),
1163 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
Eric Boren4c7754c2017-04-10 08:19:10 -04001164 'skimage', 'VERSION'),
Ravi Mistry9bcca6a2016-11-21 16:06:19 -05001165 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
Eric Boren4c7754c2017-04-10 08:19:10 -04001166 'skp', 'VERSION'),
Ravi Mistry9bcca6a2016-11-21 16:06:19 -05001167 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
Eric Boren4c7754c2017-04-10 08:19:10 -04001168 'svg', 'VERSION'),
Ravi Mistry9bcca6a2016-11-21 16:06:19 -05001169 api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt')
Eric Boren4c7754c2017-04-10 08:19:10 -04001170 ) +
1171 api.step_data('symbolized dm', retcode=1)
1172 )
1173
Kevin Lubick9ef6de72017-10-15 21:05:58 -04001174 builder = 'Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android'
Eric Boren4c7754c2017-04-10 08:19:10 -04001175 yield (
1176 api.test('failed_get_hashes') +
1177 api.properties(buildername=builder,
Eric Boren9a9e3872017-11-29 12:33:22 -05001178 buildbucket_build_id='123454321',
Eric Boren4c7754c2017-04-10 08:19:10 -04001179 revision='abc123',
1180 path_config='kitchen',
1181 swarm_out_dir='[SWARM_OUT_DIR]') +
1182 api.path.exists(
1183 api.path['start_dir'].join('skia'),
1184 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
1185 'skimage', 'VERSION'),
1186 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
1187 'skp', 'VERSION'),
1188 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
1189 'svg', 'VERSION'),
1190 api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt')
1191 ) +
1192 api.step_data('get uninteresting hashes', retcode=1)
1193 )
1194
Kevin Lubick9ef6de72017-10-15 21:05:58 -04001195 builder = ('Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-'
1196 'Debug-All-Android')
Eric Boren4c7754c2017-04-10 08:19:10 -04001197 yield (
1198 api.test('failed_push') +
1199 api.properties(buildername=builder,
Eric Boren9a9e3872017-11-29 12:33:22 -05001200 buildbucket_build_id='123454321',
Eric Boren4c7754c2017-04-10 08:19:10 -04001201 revision='abc123',
1202 path_config='kitchen',
1203 swarm_out_dir='[SWARM_OUT_DIR]') +
1204 api.path.exists(
1205 api.path['start_dir'].join('skia'),
1206 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
1207 'skimage', 'VERSION'),
1208 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
1209 'skp', 'VERSION'),
1210 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
1211 'svg', 'VERSION'),
1212 api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt')
1213 ) +
Kevin Lubickc6f74ca2018-03-01 09:21:38 -05001214 api.step_data('get swarming bot id',
1215 stdout=api.raw_io.output('build123-m2--device5')) +
Eric Boren4c7754c2017-04-10 08:19:10 -04001216 api.step_data('push [START_DIR]/skia/resources/* '+
1217 '/sdcard/revenge_of_the_skiabot/resources', retcode=1)
1218 )
1219
Ben Wagner1a2b3f02017-10-26 15:13:38 -04001220 builder = 'Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android'
Eric Borencd0a98c2018-06-20 13:23:16 -04001221 retry_step_name = 'adb pull.pull /sdcard/revenge_of_the_skiabot/dm_out'
Eric Boren4c7754c2017-04-10 08:19:10 -04001222 yield (
1223 api.test('failed_pull') +
1224 api.properties(buildername=builder,
Eric Boren9a9e3872017-11-29 12:33:22 -05001225 buildbucket_build_id='123454321',
Eric Boren4c7754c2017-04-10 08:19:10 -04001226 revision='abc123',
1227 path_config='kitchen',
1228 swarm_out_dir='[SWARM_OUT_DIR]') +
1229 api.path.exists(
1230 api.path['start_dir'].join('skia'),
1231 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
1232 'skimage', 'VERSION'),
1233 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
1234 'skp', 'VERSION'),
1235 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
1236 'svg', 'VERSION'),
1237 api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt')
1238 ) +
1239 api.step_data('dm', retcode=1) +
Ben Wagnere7e6e222018-05-25 09:47:37 -04001240 api.step_data(retry_step_name, retcode=1) +
1241 api.step_data(retry_step_name + ' (attempt 2)', retcode=1) +
1242 api.step_data(retry_step_name + ' (attempt 3)', retcode=1)
borenetbfa5b452016-10-19 10:13:32 -07001243 )
Eric Boren053d7a42017-09-15 08:35:31 -04001244
1245 yield (
Kevin Lubickbd27d1d2017-10-13 08:01:49 -04001246 api.test('internal_bot_2') +
1247 api.properties(buildername=builder,
Eric Boren9a9e3872017-11-29 12:33:22 -05001248 buildbucket_build_id='123454321',
Kevin Lubickbd27d1d2017-10-13 08:01:49 -04001249 revision='abc123',
1250 path_config='kitchen',
1251 swarm_out_dir='[SWARM_OUT_DIR]',
Eric Borenfb20ac42018-04-24 14:48:19 -04001252 internal_hardware_label='2') +
Kevin Lubickbd27d1d2017-10-13 08:01:49 -04001253 api.path.exists(
1254 api.path['start_dir'].join('skia'),
1255 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
1256 'skimage', 'VERSION'),
1257 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
1258 'skp', 'VERSION'),
1259 api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
1260 'svg', 'VERSION'),
1261 api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt')
Kevin Lubickd1bbd5f2017-11-21 16:47:16 -05001262 )
Kevin Lubickbd27d1d2017-10-13 08:01:49 -04001263 )