borenet | 1ed2ae4 | 2016-07-26 11:52:17 -0700 | [diff] [blame] | 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 |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | |
| 6 | # Recipe module for Skia Swarming test. |
| 7 | |
| 8 | |
| 9 | DEPS = [ |
Eric Boren | 896af75 | 2017-04-24 13:22:56 -0400 | [diff] [blame] | 10 | 'env', |
| 11 | 'flavor', |
Robert Iannucci | 297a7ef | 2017-05-12 19:09:38 -0700 | [diff] [blame] | 12 | 'recipe_engine/context', |
Robert Iannucci | 8cd5041 | 2017-07-07 14:36:58 -0700 | [diff] [blame] | 13 | 'recipe_engine/file', |
borenet | 1ed2ae4 | 2016-07-26 11:52:17 -0700 | [diff] [blame] | 14 | 'recipe_engine/path', |
| 15 | 'recipe_engine/platform', |
| 16 | 'recipe_engine/properties', |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 17 | 'recipe_engine/python', |
borenet | 1ed2ae4 | 2016-07-26 11:52:17 -0700 | [diff] [blame] | 18 | 'recipe_engine/raw_io', |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 19 | 'recipe_engine/step', |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 20 | 'run', |
| 21 | 'vars', |
borenet | 1ed2ae4 | 2016-07-26 11:52:17 -0700 | [diff] [blame] | 22 | ] |
| 23 | |
| 24 | |
Eric Boren | 72f6668 | 2018-05-18 07:36:55 -0400 | [diff] [blame] | 25 | def 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 Boren | 89cd357 | 2017-06-28 13:50:22 -0400 | [diff] [blame] | 40 | def dm_flags(api, bot): |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 41 | args = [] |
Brian Osman | f981066 | 2017-08-30 10:02:10 -0400 | [diff] [blame] | 42 | configs = [] |
| 43 | blacklisted = [] |
| 44 | |
| 45 | def blacklist(quad): |
Eric Boren | cd0a98c | 2018-06-20 13:23:16 -0400 | [diff] [blame] | 46 | config, src, options, name = ( |
| 47 | quad.split(' ') if isinstance(quad, str) else quad) |
Brian Osman | f981066 | 2017-08-30 10:02:10 -0400 | [diff] [blame] | 48 | if (config == '_' or |
| 49 | config in configs or |
| 50 | (config[0] == '~' and config[1:] in configs)): |
| 51 | blacklisted.extend([config, src, options, name]) |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 52 | |
Mike Klein | 97d6a7a | 2017-07-24 10:37:19 -0400 | [diff] [blame] | 53 | # 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 Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 57 | # This enables non-deterministic random seeding of the GPU FP optimization |
Brian Osman | 7a34dca | 2017-04-13 13:40:29 -0400 | [diff] [blame] | 58 | # test. |
Ben Wagner | 6da8f79 | 2017-08-10 12:22:56 -0400 | [diff] [blame] | 59 | # Not Android due to: |
Ben Wagner | 11ab43c | 2017-08-09 18:05:59 -0400 | [diff] [blame] | 60 | # - https://skia.googlesource.com/skia/+/ |
| 61 | # 5910ed347a638ded8cd4c06dbfda086695df1112/BUILD.gn#160 |
| 62 | # - https://skia.googlesource.com/skia/+/ |
| 63 | # ce06e261e68848ae21cac1052abc16bc07b961bf/tests/ProcessorTest.cpp#307 |
Ben Wagner | 6da8f79 | 2017-08-10 12:22:56 -0400 | [diff] [blame] | 64 | # 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 Wagner | 11ab43c | 2017-08-09 18:05:59 -0400 | [diff] [blame] | 69 | args.append('--randomProcessorTest') |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 70 | |
| 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 Klein | df66981 | 2017-06-23 13:30:17 -0400 | [diff] [blame] | 74 | args.extend(['--threads', '4']) |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 75 | |
Ben Wagner | 5cf6d32 | 2017-12-07 10:23:07 -0500 | [diff] [blame] | 76 | # Nexus7 runs out of memory due to having 4 cores and only 1G RAM. |
| 77 | if 'CPU' in bot and 'Nexus7' in bot: |
Ben Wagner | 1cfb6bc | 2017-12-07 12:19:30 -0500 | [diff] [blame] | 78 | args.extend(['--threads', '2']) |
Ben Wagner | 5cf6d32 | 2017-12-07 10:23:07 -0500 | [diff] [blame] | 79 | |
Ben Wagner | 12e69e7 | 2018-07-15 15:12:01 -0400 | [diff] [blame] | 80 | # 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 Lubick | 2dafbd7 | 2017-08-31 10:39:05 -0400 | [diff] [blame] | 84 | if 'Chromecast' in bot: |
| 85 | args.extend(['--threads', '0']) |
| 86 | |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 87 | # Avoid issues with dynamically exceeding resource cache limits. |
| 88 | if 'Test' in bot and 'DISCARDABLE' in bot: |
Mike Klein | df66981 | 2017-06-23 13:30:17 -0400 | [diff] [blame] | 89 | 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 Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 94 | |
Derek Sollenberger | edfe3df | 2017-07-19 15:25:24 -0400 | [diff] [blame] | 95 | # 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 Lubick | 608c35a | 2018-01-16 16:15:57 -0500 | [diff] [blame] | 100 | 'Chromecast' in bot): |
Derek Sollenberger | edfe3df | 2017-07-19 15:25:24 -0400 | [diff] [blame] | 101 | args.append('--ignoreSigInt') |
| 102 | |
Ben Wagner | 122b385 | 2018-04-20 13:43:23 -0400 | [diff] [blame] | 103 | 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 Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 108 | args.append('--nogpu') |
| 109 | |
Mike Klein | c24e0c1 | 2018-08-17 13:24:51 -0400 | [diff] [blame] | 110 | configs.append('8888') |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 111 | |
Mike Klein | 7adfd2f | 2018-08-21 13:42:53 +0000 | [diff] [blame] | 112 | if 'BonusConfigs' in bot or ('SAN' in bot and 'GCE' in bot): |
Mike Klein | c24e0c1 | 2018-08-17 13:24:51 -0400 | [diff] [blame] | 113 | configs.extend([ |
| 114 | 'pdf', |
| 115 | 'g8', '565', |
| 116 | 'pic-8888', 'tiles_rt-8888', 'lite-8888', 'serialize-8888', |
| 117 | 'gbr-8888', |
| 118 | 'f16', 'srgb', 'esrgb', 'narrow', 'enarrow', |
| 119 | 'p3', 'ep3', 'rec2020', 'erec2020']) |
Eric Boren | 9f4efd3 | 2018-07-20 08:25:42 -0400 | [diff] [blame] | 120 | |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 121 | elif api.vars.builder_cfg.get('cpu_or_gpu') == 'GPU': |
| 122 | args.append('--nocpu') |
| 123 | |
| 124 | # Add in either gles or gl configs to the canonical set based on OS |
| 125 | sample_count = '8' |
| 126 | gl_prefix = 'gl' |
| 127 | if 'Android' in bot or 'iOS' in bot: |
| 128 | sample_count = '4' |
| 129 | # We want to test the OpenGL config not the GLES config on the Shield |
| 130 | if 'NVIDIA_Shield' not in bot: |
| 131 | gl_prefix = 'gles' |
| 132 | elif 'Intel' in bot: |
| 133 | sample_count = '' |
| 134 | elif 'ChromeOS' in bot: |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 135 | gl_prefix = 'gles' |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 136 | |
Jim Van Verth | 1b6c75c | 2018-02-16 09:49:08 -0500 | [diff] [blame] | 137 | if 'NativeFonts' in bot: |
| 138 | configs.append(gl_prefix) |
| 139 | else: |
Brian Osman | a66f4da | 2018-06-28 17:52:02 +0000 | [diff] [blame] | 140 | configs.extend([gl_prefix, |
| 141 | gl_prefix + 'dft', |
| 142 | gl_prefix + 'srgb']) |
Jim Van Verth | 240516f | 2018-02-15 09:55:24 -0500 | [diff] [blame] | 143 | if sample_count is not '': |
| 144 | configs.append(gl_prefix + 'msaa' + sample_count) |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 145 | |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 146 | # The NP produces a long error stream when we run with MSAA. The Tegra3 just |
| 147 | # doesn't support it. |
| 148 | if ('NexusPlayer' in bot or |
| 149 | 'Tegra3' in bot or |
| 150 | # We aren't interested in fixing msaa bugs on current iOS devices. |
| 151 | 'iPad4' in bot or |
| 152 | 'iPadPro' in bot or |
| 153 | 'iPhone6' in bot or |
| 154 | 'iPhone7' in bot or |
| 155 | # skia:5792 |
| 156 | 'IntelHD530' in bot or |
| 157 | 'IntelIris540' in bot): |
| 158 | configs = [x for x in configs if 'msaa' not in x] |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 159 | |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 160 | # The NP produces different images for dft on every run. |
| 161 | if 'NexusPlayer' in bot: |
| 162 | configs = [x for x in configs if 'dft' not in x] |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 163 | |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 164 | # We want to test both the OpenGL config and the GLES config on Linux Intel: |
| 165 | # GL is used by Chrome, GLES is used by ChromeOS. |
Brian Osman | f981066 | 2017-08-30 10:02:10 -0400 | [diff] [blame] | 166 | # Also do the Ganesh threading verification test (render with and without |
| 167 | # worker threads, using only the SW path renderer, and compare the results). |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 168 | if 'Intel' in bot and api.vars.is_linux: |
Brian Osman | a66f4da | 2018-06-28 17:52:02 +0000 | [diff] [blame] | 169 | configs.extend(['gles', |
| 170 | 'glesdft', |
| 171 | 'glessrgb', |
| 172 | 'gltestthreading']) |
Brian Osman | f981066 | 2017-08-30 10:02:10 -0400 | [diff] [blame] | 173 | # skbug.com/6333, skbug.com/6419, skbug.com/6702 |
| 174 | blacklist('gltestthreading gm _ lcdblendmodes') |
| 175 | blacklist('gltestthreading gm _ lcdoverlap') |
Brian Osman | bef21ba | 2017-08-31 13:49:05 -0400 | [diff] [blame] | 176 | blacklist('gltestthreading gm _ textbloblooper') |
Brian Osman | 1e75f2a | 2017-09-07 09:30:44 -0400 | [diff] [blame] | 177 | # All of these GMs are flaky, too: |
| 178 | blacklist('gltestthreading gm _ bleed_alpha_bmp') |
| 179 | blacklist('gltestthreading gm _ bleed_alpha_bmp_shader') |
| 180 | blacklist('gltestthreading gm _ bleed_alpha_image') |
| 181 | blacklist('gltestthreading gm _ bleed_alpha_image_shader') |
| 182 | blacklist('gltestthreading gm _ savelayer_with_backdrop') |
| 183 | blacklist('gltestthreading gm _ persp_shaders_bw') |
Brian Salomon | 5c6ac64 | 2017-12-19 11:09:32 -0500 | [diff] [blame] | 184 | blacklist('gltestthreading gm _ dftext_blob_persp') |
Herb Derby | 2c1d0d7 | 2018-10-18 15:32:59 -0400 | [diff] [blame] | 185 | blacklist('gltestthreading gm _ dftext') |
| 186 | # skbug.com/7523 - Flaky on various GPUs |
Brian Salomon | 19eaf2d | 2018-03-19 16:06:44 -0400 | [diff] [blame] | 187 | blacklist('gltestthreading gm _ orientation') |
Mike Klein | 97627d4 | 2017-05-11 13:12:48 -0400 | [diff] [blame] | 188 | |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 189 | # CommandBuffer bot *only* runs the command_buffer config. |
| 190 | if 'CommandBuffer' in bot: |
| 191 | configs = ['commandbuffer'] |
| 192 | |
| 193 | # ANGLE bot *only* runs the angle configs |
| 194 | if 'ANGLE' in bot: |
| 195 | configs = ['angle_d3d11_es2', |
| 196 | 'angle_d3d9_es2', |
| 197 | 'angle_gl_es2', |
| 198 | 'angle_d3d11_es3'] |
| 199 | if sample_count is not '': |
| 200 | configs.append('angle_d3d11_es2_msaa' + sample_count) |
| 201 | configs.append('angle_d3d11_es3_msaa' + sample_count) |
Ben Wagner | 7464a26 | 2018-04-19 15:49:18 -0400 | [diff] [blame] | 202 | if 'GTX' in bot or 'Quadro' in bot: |
| 203 | # See skia:7823 and chromium:693090. |
| 204 | configs.append('angle_gl_es3') |
| 205 | if sample_count is not '': |
| 206 | configs.append('angle_gl_es2_msaa' + sample_count) |
| 207 | configs.append('angle_gl_es3_msaa' + sample_count) |
Ethan Nicholas | 0054311 | 2018-07-31 09:44:36 -0400 | [diff] [blame] | 208 | if 'NUC5i7RYH' in bot: |
| 209 | # skbug.com/7376 |
| 210 | blacklist('_ test _ ProcessorCloneTest') |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 211 | |
| 212 | # Vulkan bot *only* runs the vk config. |
| 213 | if 'Vulkan' in bot: |
Chris Dalton | aec79e6 | 2018-05-29 12:02:19 -0600 | [diff] [blame] | 214 | configs = ['vk'] |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 215 | |
Greg Daniel | b95d278 | 2018-07-24 11:35:18 -0400 | [diff] [blame] | 216 | if 'Metal' in bot: |
| 217 | configs = ['mtl'] |
| 218 | |
Brian Salomon | 7fc5299 | 2018-07-12 16:20:23 -0400 | [diff] [blame] | 219 | # Test 1010102 on our Linux/NVIDIA bots and the persistent cache config |
| 220 | # on the GL bots. |
Brian Salomon | bfc63c1 | 2018-07-16 15:48:22 -0400 | [diff] [blame] | 221 | if ('QuadroP400' in bot and 'PreAbandonGpuContext' not in bot and |
Brian Salomon | 6a3957c | 2018-07-19 17:01:09 -0400 | [diff] [blame] | 222 | 'TSAN' not in bot and api.vars.is_linux): |
Brian Osman | 10fc6fd | 2018-03-02 11:01:10 -0500 | [diff] [blame] | 223 | if 'Vulkan' in bot: |
| 224 | configs.append('vk1010102') |
Brian Osman | 419abf3 | 2018-03-02 14:56:15 -0500 | [diff] [blame] | 225 | # Decoding transparent images to 1010102 just looks bad |
| 226 | blacklist('vk1010102 image _ _') |
Brian Osman | 10fc6fd | 2018-03-02 11:01:10 -0500 | [diff] [blame] | 227 | else: |
Brian Salomon | 7fc5299 | 2018-07-12 16:20:23 -0400 | [diff] [blame] | 228 | configs.extend(['gl1010102', 'gltestpersistentcache']) |
Brian Osman | 419abf3 | 2018-03-02 14:56:15 -0500 | [diff] [blame] | 229 | # Decoding transparent images to 1010102 just looks bad |
| 230 | blacklist('gl1010102 image _ _') |
Brian Salomon | 0938759 | 2018-07-16 15:34:16 -0400 | [diff] [blame] | 231 | # These tests produce slightly different pixels run to run on NV. |
Brian Salomon | 7fc5299 | 2018-07-12 16:20:23 -0400 | [diff] [blame] | 232 | blacklist('gltestpersistentcache gm _ atlastext') |
Brian Salomon | 0938759 | 2018-07-16 15:34:16 -0400 | [diff] [blame] | 233 | blacklist('gltestpersistentcache gm _ dftext') |
Brian Salomon | 06e3c3c | 2018-08-03 12:54:11 -0400 | [diff] [blame] | 234 | blacklist('gltestpersistentcache gm _ glyph_pos_h_b') |
Brian Osman | 10fc6fd | 2018-03-02 11:01:10 -0500 | [diff] [blame] | 235 | |
Brian Salomon | 7bfe843 | 2018-08-31 13:35:26 -0400 | [diff] [blame] | 236 | # Test SkColorSpaceXformCanvas and rendering to wrapped dsts on a few bots |
Brian Osman | 23885d2 | 2018-12-06 09:52:22 -0500 | [diff] [blame] | 237 | # Also test 'glenarrow', which hits F16 surfaces and F16 vertex colors. |
Ben Wagner | a4cdfbb | 2018-08-31 10:20:34 -0400 | [diff] [blame] | 238 | if 'BonusConfigs' in api.vars.extra_tokens: |
Brian Osman | 23885d2 | 2018-12-06 09:52:22 -0500 | [diff] [blame] | 239 | configs = ['gbr-gl', 'glbetex', 'glbert', 'glenarrow'] |
Brian Salomon | 7bfe843 | 2018-08-31 13:35:26 -0400 | [diff] [blame] | 240 | |
Ben Wagner | a4cdfbb | 2018-08-31 10:20:34 -0400 | [diff] [blame] | 241 | |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 242 | if 'ChromeOS' in bot: |
| 243 | # Just run GLES for now - maybe add gles_msaa4 in the future |
| 244 | configs = ['gles'] |
| 245 | |
Kevin Lubick | 2dafbd7 | 2017-08-31 10:39:05 -0400 | [diff] [blame] | 246 | if 'Chromecast' in bot: |
Kevin Lubick | 608c35a | 2018-01-16 16:15:57 -0500 | [diff] [blame] | 247 | configs = ['gles'] |
Kevin Lubick | 2dafbd7 | 2017-08-31 10:39:05 -0400 | [diff] [blame] | 248 | |
Ben Wagner | 32fa510 | 2017-08-10 21:25:55 -0400 | [diff] [blame] | 249 | # Test coverage counting path renderer. |
| 250 | if 'CCPR' in bot: |
| 251 | configs = [c for c in configs if c == 'gl' or c == 'gles'] |
Chris Dalton | 7a0ebfc | 2017-10-13 12:35:50 -0600 | [diff] [blame] | 252 | args.extend(['--pr', 'ccpr', '--cachePathMasks', 'false']) |
Chris Dalton | 97598a5 | 2017-07-18 10:49:07 -0600 | [diff] [blame] | 253 | |
Robert Phillips | 36150be | 2018-03-15 13:40:07 -0400 | [diff] [blame] | 254 | # DDL is a GPU-only feature |
| 255 | if 'DDL1' in bot: |
Robert Phillips | 69eb835 | 2018-04-11 13:45:08 -0400 | [diff] [blame] | 256 | # This bot generates gl and vk comparison images for the large skps |
| 257 | configs = [c for c in configs if c == 'gl' or c == 'vk'] |
Robert Phillips | b7fafba | 2018-03-27 20:49:23 +0000 | [diff] [blame] | 258 | args.extend(['--skpViewportSize', "2048"]) |
Robert Phillips | 21ca043 | 2018-05-29 15:42:00 -0400 | [diff] [blame] | 259 | args.extend(['--pr', '~small']) |
Robert Phillips | 36150be | 2018-03-15 13:40:07 -0400 | [diff] [blame] | 260 | if 'DDL3' in bot: |
Robert Phillips | 69eb835 | 2018-04-11 13:45:08 -0400 | [diff] [blame] | 261 | # This bot generates the ddl-gl and ddl-vk images for the |
| 262 | # large skps and the gms |
Brian Salomon | 8f40b66 | 2018-12-21 17:50:43 -0500 | [diff] [blame] | 263 | ddl_configs = ['ddl-' + c for c in configs if c == 'gl' or c == 'vk'] |
| 264 | ddl2_configs = ['ddl2-' + c for c in configs if c == 'gl' or c == 'vk'] |
| 265 | configs = ddl_configs + ddl2_configs |
Robert Phillips | b7fafba | 2018-03-27 20:49:23 +0000 | [diff] [blame] | 266 | args.extend(['--skpViewportSize', "2048"]) |
Robert Phillips | e43ff78 | 2018-04-20 11:59:59 -0400 | [diff] [blame] | 267 | args.extend(['--gpuThreads', "0"]) |
Robert Phillips | 36150be | 2018-03-15 13:40:07 -0400 | [diff] [blame] | 268 | |
Eric Boren | 9f4efd3 | 2018-07-20 08:25:42 -0400 | [diff] [blame] | 269 | if 'Lottie' in bot: |
| 270 | configs = ['gl'] |
| 271 | |
Kevin Lubick | 32f318b | 2017-10-17 13:40:52 -0400 | [diff] [blame] | 272 | tf = api.vars.builder_cfg.get('test_filter') |
| 273 | if 'All' != tf: |
| 274 | # Expected format: shard_XX_YY |
| 275 | parts = tf.split('_') |
| 276 | if len(parts) == 3: |
| 277 | args.extend(['--shard', parts[1]]) |
| 278 | args.extend(['--shards', parts[2]]) |
Eric Boren | 9599b0f | 2018-04-17 15:55:57 -0400 | [diff] [blame] | 279 | else: # pragma: nocover |
| 280 | raise Exception('Invalid task name - bad shards: %s' % tf) |
Kevin Lubick | 32f318b | 2017-10-17 13:40:52 -0400 | [diff] [blame] | 281 | |
Chris Dalton | 80ace82 | 2017-07-20 10:54:04 -0600 | [diff] [blame] | 282 | args.append('--config') |
| 283 | args.extend(configs) |
| 284 | |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 285 | # Run tests, gms, and image decoding tests everywhere. |
Eric Boren | 8c172ba | 2018-07-19 13:27:49 -0400 | [diff] [blame] | 286 | args.extend('--src tests gm image lottie colorImage svg skp'.split(' ')) |
Ben Wagner | 0ecc2b7e | 2017-11-09 22:10:44 -0500 | [diff] [blame] | 287 | if api.vars.builder_cfg.get('cpu_or_gpu') == 'GPU': |
Chris Dalton | 7c304ba | 2017-09-07 11:57:16 -0600 | [diff] [blame] | 288 | # Don't run the 'svgparse_*' svgs on GPU. |
| 289 | blacklist('_ svg _ svgparse_') |
Kevin Lubick | 9ef6de7 | 2017-10-15 21:05:58 -0400 | [diff] [blame] | 290 | elif bot == 'Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-ASAN': |
Chris Dalton | 7c304ba | 2017-09-07 11:57:16 -0600 | [diff] [blame] | 291 | # Only run the CPU SVGs on 8888. |
| 292 | blacklist('~8888 svg _ _') |
| 293 | else: |
| 294 | # On CPU SVGs we only care about parsing. Only run them on the above bot. |
| 295 | args.remove('svg') |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 296 | |
Mike Klein | 97627d4 | 2017-05-11 13:12:48 -0400 | [diff] [blame] | 297 | # Eventually I'd like these to pass, but for now just skip 'em. |
| 298 | if 'SK_FORCE_RASTER_PIPELINE_BLITTER' in bot: |
| 299 | args.remove('tests') |
| 300 | |
Mike Klein | 9a01a21 | 2017-11-03 12:19:54 -0400 | [diff] [blame] | 301 | if 'NativeFonts' in bot: # images won't exercise native font integration :) |
| 302 | args.remove('image') |
| 303 | args.remove('colorImage') |
| 304 | |
Eric Boren | 8c172ba | 2018-07-19 13:27:49 -0400 | [diff] [blame] | 305 | def remove_from_args(arg): |
| 306 | if arg in args: |
| 307 | args.remove(arg) |
| 308 | |
Robert Phillips | 5f3ce3e | 2018-04-12 11:09:40 -0400 | [diff] [blame] | 309 | if 'DDL' in bot: |
| 310 | # The DDL bots just render the large skps and the gms |
Eric Boren | 8c172ba | 2018-07-19 13:27:49 -0400 | [diff] [blame] | 311 | remove_from_args('tests') |
| 312 | remove_from_args('image') |
| 313 | remove_from_args('colorImage') |
| 314 | remove_from_args('svg') |
Robert Phillips | 36150be | 2018-03-15 13:40:07 -0400 | [diff] [blame] | 315 | else: |
Robert Phillips | b7fafba | 2018-03-27 20:49:23 +0000 | [diff] [blame] | 316 | # Currently, only the DDL bots render skps |
Eric Boren | 8c172ba | 2018-07-19 13:27:49 -0400 | [diff] [blame] | 317 | remove_from_args('skp') |
| 318 | |
| 319 | if 'Lottie' in api.vars.builder_cfg.get('extra_config', ''): |
| 320 | # Only run the lotties on Lottie bots. |
| 321 | remove_from_args('tests') |
| 322 | remove_from_args('gm') |
| 323 | remove_from_args('image') |
| 324 | remove_from_args('colorImage') |
| 325 | remove_from_args('svg') |
| 326 | remove_from_args('skp') |
| 327 | else: |
| 328 | remove_from_args('lottie') |
Robert Phillips | 36150be | 2018-03-15 13:40:07 -0400 | [diff] [blame] | 329 | |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 330 | # TODO: ??? |
| 331 | blacklist('f16 _ _ dstreadshuffle') |
| 332 | blacklist('glsrgb image _ _') |
| 333 | blacklist('glessrgb image _ _') |
| 334 | |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 335 | # Not any point to running these. |
Mike Klein | b7ea3da | 2017-10-31 17:42:08 +0000 | [diff] [blame] | 336 | blacklist('gbr-8888 image _ _') |
| 337 | blacklist('gbr-8888 colorImage _ _') |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 338 | |
Mike Klein | 515bda6 | 2018-01-09 11:21:58 -0500 | [diff] [blame] | 339 | # --src image --config g8 means "decode into Gray8", which isn't supported. |
| 340 | blacklist('g8 image _ _') |
| 341 | blacklist('g8 colorImage _ _') |
| 342 | |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 343 | if 'Valgrind' in bot: |
| 344 | # These take 18+ hours to run. |
| 345 | blacklist('pdf gm _ fontmgr_iter') |
| 346 | blacklist('pdf _ _ PANO_20121023_214540.jpg') |
| 347 | blacklist('pdf skp _ worldjournal') |
| 348 | blacklist('pdf skp _ desk_baidu.skp') |
| 349 | blacklist('pdf skp _ desk_wikipedia.skp') |
| 350 | blacklist('_ svg _ _') |
| 351 | |
| 352 | if 'iOS' in bot: |
| 353 | blacklist(gl_prefix + ' skp _ _') |
| 354 | |
| 355 | if 'Mac' in bot or 'iOS' in bot: |
| 356 | # CG fails on questionable bmps |
| 357 | blacklist('_ image gen_platf rgba32abf.bmp') |
| 358 | blacklist('_ image gen_platf rgb24prof.bmp') |
| 359 | blacklist('_ image gen_platf rgb24lprof.bmp') |
| 360 | blacklist('_ image gen_platf 8bpp-pixeldata-cropped.bmp') |
| 361 | blacklist('_ image gen_platf 4bpp-pixeldata-cropped.bmp') |
| 362 | blacklist('_ image gen_platf 32bpp-pixeldata-cropped.bmp') |
| 363 | blacklist('_ image gen_platf 24bpp-pixeldata-cropped.bmp') |
| 364 | |
| 365 | # CG has unpredictable behavior on this questionable gif |
| 366 | # It's probably using uninitialized memory |
| 367 | blacklist('_ image gen_platf frame_larger_than_image.gif') |
| 368 | |
| 369 | # CG has unpredictable behavior on incomplete pngs |
| 370 | # skbug.com/5774 |
| 371 | blacklist('_ image gen_platf inc0.png') |
| 372 | blacklist('_ image gen_platf inc1.png') |
| 373 | blacklist('_ image gen_platf inc2.png') |
| 374 | blacklist('_ image gen_platf inc3.png') |
| 375 | blacklist('_ image gen_platf inc4.png') |
| 376 | blacklist('_ image gen_platf inc5.png') |
| 377 | blacklist('_ image gen_platf inc6.png') |
| 378 | blacklist('_ image gen_platf inc7.png') |
| 379 | blacklist('_ image gen_platf inc8.png') |
| 380 | blacklist('_ image gen_platf inc9.png') |
| 381 | blacklist('_ image gen_platf inc10.png') |
| 382 | blacklist('_ image gen_platf inc11.png') |
| 383 | blacklist('_ image gen_platf inc12.png') |
| 384 | blacklist('_ image gen_platf inc13.png') |
| 385 | blacklist('_ image gen_platf inc14.png') |
Leon Scroggins III | a66ac00 | 2018-10-26 09:45:11 -0400 | [diff] [blame] | 386 | blacklist('_ image gen_platf incInterlaced.png') |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 387 | |
Ben Wagner | 3f67914 | 2017-11-27 13:02:25 -0500 | [diff] [blame] | 388 | # These images fail after Mac 10.13.1 upgrade. |
| 389 | blacklist('_ image gen_platf incInterlaced.gif') |
| 390 | blacklist('_ image gen_platf inc1.gif') |
| 391 | blacklist('_ image gen_platf inc0.gif') |
| 392 | blacklist('_ image gen_platf butterfly.gif') |
| 393 | |
Matt Sarett | 6c50a2e | 2017-05-01 09:13:05 -0400 | [diff] [blame] | 394 | # WIC fails on questionable bmps |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 395 | if 'Win' in bot: |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 396 | blacklist('_ image gen_platf pal8os2v2.bmp') |
| 397 | blacklist('_ image gen_platf pal8os2v2-16.bmp') |
| 398 | blacklist('_ image gen_platf rgba32abf.bmp') |
| 399 | blacklist('_ image gen_platf rgb24prof.bmp') |
| 400 | blacklist('_ image gen_platf rgb24lprof.bmp') |
| 401 | blacklist('_ image gen_platf 8bpp-pixeldata-cropped.bmp') |
| 402 | blacklist('_ image gen_platf 4bpp-pixeldata-cropped.bmp') |
| 403 | blacklist('_ image gen_platf 32bpp-pixeldata-cropped.bmp') |
| 404 | blacklist('_ image gen_platf 24bpp-pixeldata-cropped.bmp') |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 405 | if 'x86_64' in bot and 'CPU' in bot: |
| 406 | # This GM triggers a SkSmallAllocator assert. |
| 407 | blacklist('_ gm _ composeshader_bitmap') |
| 408 | |
Matt Sarett | 6c50a2e | 2017-05-01 09:13:05 -0400 | [diff] [blame] | 409 | if 'Win' in bot or 'Mac' in bot: |
Leon Scroggins III | 3a3cf43 | 2017-08-18 13:08:16 -0400 | [diff] [blame] | 410 | # WIC and CG fail on arithmetic jpegs |
Matt Sarett | 6c50a2e | 2017-05-01 09:13:05 -0400 | [diff] [blame] | 411 | blacklist('_ image gen_platf testimgari.jpg') |
Leon Scroggins III | 3a3cf43 | 2017-08-18 13:08:16 -0400 | [diff] [blame] | 412 | # More questionable bmps that fail on Mac, too. skbug.com/6984 |
| 413 | blacklist('_ image gen_platf rle8-height-negative.bmp') |
| 414 | blacklist('_ image gen_platf rle4-height-negative.bmp') |
Matt Sarett | 6c50a2e | 2017-05-01 09:13:05 -0400 | [diff] [blame] | 415 | |
Leon Scroggins III | 3abcd82 | 2018-10-18 11:28:36 -0400 | [diff] [blame] | 416 | # These PNGs have CRC errors. The platform generators seem to draw |
| 417 | # uninitialized memory without reporting an error, so skip them to |
| 418 | # avoid lots of images on Gold. |
| 419 | blacklist('_ image gen_platf error') |
| 420 | |
Kevin Lubick | 2dafbd7 | 2017-08-31 10:39:05 -0400 | [diff] [blame] | 421 | if 'Android' in bot or 'iOS' in bot or 'Chromecast' in bot: |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 422 | # This test crashes the N9 (perhaps because of large malloc/frees). It also |
| 423 | # is fairly slow and not platform-specific. So we just disable it on all of |
| 424 | # Android and iOS. skia:5438 |
| 425 | blacklist('_ test _ GrShape') |
| 426 | |
Eric Boren | fb20ac4 | 2018-04-24 14:48:19 -0400 | [diff] [blame] | 427 | if api.vars.internal_hardware_label == '2': |
Kevin Lubick | bd27d1d | 2017-10-13 08:01:49 -0400 | [diff] [blame] | 428 | # skia:7160 |
| 429 | blacklist('_ test _ SRGBReadWritePixels') |
| 430 | blacklist('_ test _ SRGBMipMap') |
| 431 | |
Kevin Lubick | 8243988 | 2018-12-12 15:50:14 -0500 | [diff] [blame] | 432 | if api.vars.internal_hardware_label == '5': |
| 433 | # http://b/118312149#comment9 |
| 434 | blacklist('_ test _ SRGBReadWritePixels') |
| 435 | |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 436 | # skia:4095 |
Mike Reed | fb49909 | 2017-06-26 13:53:32 +0000 | [diff] [blame] | 437 | bad_serialize_gms = ['bleed_image', |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 438 | 'c_gms', |
| 439 | 'colortype', |
| 440 | 'colortype_xfermodes', |
| 441 | 'drawfilter', |
| 442 | 'fontmgr_bounds_0.75_0', |
| 443 | 'fontmgr_bounds_1_-0.25', |
| 444 | 'fontmgr_bounds', |
| 445 | 'fontmgr_match', |
| 446 | 'fontmgr_iter', |
| 447 | 'imagemasksubset'] |
| 448 | |
| 449 | # skia:5589 |
| 450 | bad_serialize_gms.extend(['bitmapfilters', |
| 451 | 'bitmapshaders', |
| 452 | 'bleed', |
| 453 | 'bleed_alpha_bmp', |
| 454 | 'bleed_alpha_bmp_shader', |
| 455 | 'convex_poly_clip', |
| 456 | 'extractalpha', |
| 457 | 'filterbitmap_checkerboard_32_32_g8', |
| 458 | 'filterbitmap_image_mandrill_64', |
| 459 | 'shadows', |
| 460 | 'simpleaaclip_aaclip']) |
| 461 | # skia:5595 |
| 462 | bad_serialize_gms.extend(['composeshader_bitmap', |
| 463 | 'scaled_tilemodes_npot', |
| 464 | 'scaled_tilemodes']) |
| 465 | |
| 466 | # skia:5778 |
| 467 | bad_serialize_gms.append('typefacerendering_pfaMac') |
| 468 | # skia:5942 |
| 469 | bad_serialize_gms.append('parsedpaths') |
| 470 | |
| 471 | # these use a custom image generator which doesn't serialize |
| 472 | bad_serialize_gms.append('ImageGeneratorExternal_rect') |
| 473 | bad_serialize_gms.append('ImageGeneratorExternal_shader') |
| 474 | |
| 475 | # skia:6189 |
| 476 | bad_serialize_gms.append('shadow_utils') |
| 477 | |
Brian Salomon | be3c1d2 | 2018-05-21 12:54:39 -0400 | [diff] [blame] | 478 | # skia:7938 |
| 479 | bad_serialize_gms.append('persp_images') |
| 480 | |
Matt Sarett | 9f3dcb3 | 2017-05-04 08:53:32 -0400 | [diff] [blame] | 481 | # Not expected to round trip encoding/decoding. |
Mike Klein | 0b78a69 | 2017-10-31 17:31:17 -0400 | [diff] [blame] | 482 | bad_serialize_gms.append('all_bitmap_configs') |
Matt Sarett | 9f3dcb3 | 2017-05-04 08:53:32 -0400 | [diff] [blame] | 483 | bad_serialize_gms.append('makecolorspace') |
Mike Klein | 0a44d5c | 2018-10-02 11:10:59 -0400 | [diff] [blame] | 484 | bad_serialize_gms.append('readpixels') |
Brian Salomon | 0087c83 | 2018-10-15 14:48:20 -0400 | [diff] [blame] | 485 | bad_serialize_gms.append('draw_image_set_rect_to_rect') |
Matt Sarett | 9f3dcb3 | 2017-05-04 08:53:32 -0400 | [diff] [blame] | 486 | |
Brian Salomon | 7072e22 | 2017-11-29 15:12:45 -0500 | [diff] [blame] | 487 | # This GM forces a path to be convex. That property doesn't survive |
| 488 | # serialization. |
| 489 | bad_serialize_gms.append('analytic_antialias_convex') |
| 490 | |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 491 | for test in bad_serialize_gms: |
| 492 | blacklist(['serialize-8888', 'gm', '_', test]) |
| 493 | |
| 494 | if 'Mac' not in bot: |
| 495 | for test in ['bleed_alpha_image', 'bleed_alpha_image_shader']: |
| 496 | blacklist(['serialize-8888', 'gm', '_', test]) |
| 497 | # It looks like we skip these only for out-of-memory concerns. |
Kevin Lubick | 608c35a | 2018-01-16 16:15:57 -0500 | [diff] [blame] | 498 | if 'Win' in bot or 'Android' in bot: |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 499 | for test in ['verylargebitmap', 'verylarge_picture_image']: |
| 500 | blacklist(['serialize-8888', 'gm', '_', test]) |
Ben Wagner | 2e4e73f | 2017-09-08 15:21:44 -0400 | [diff] [blame] | 501 | if 'Mac' in bot and 'CPU' in bot: |
Ben Wagner | 38db79f | 2017-08-23 15:05:50 -0400 | [diff] [blame] | 502 | # skia:6992 |
Ben Wagner | 6f98bc6 | 2017-09-05 16:02:28 -0400 | [diff] [blame] | 503 | blacklist(['pic-8888', 'gm', '_', 'encode-platform']) |
Ben Wagner | 38db79f | 2017-08-23 15:05:50 -0400 | [diff] [blame] | 504 | blacklist(['serialize-8888', 'gm', '_', 'encode-platform']) |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 505 | |
| 506 | # skia:4769 |
| 507 | for test in ['drawfilter']: |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 508 | blacklist([ 'pic-8888', 'gm', '_', test]) |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 509 | blacklist([ 'lite-8888', 'gm', '_', test]) |
| 510 | # skia:4703 |
| 511 | for test in ['image-cacherator-from-picture', |
| 512 | 'image-cacherator-from-raster', |
| 513 | 'image-cacherator-from-ctable']: |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 514 | blacklist([ 'pic-8888', 'gm', '_', test]) |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 515 | blacklist(['serialize-8888', 'gm', '_', test]) |
| 516 | |
| 517 | # GM that requires raster-backed canvas |
Brian Osman | 368895b | 2018-11-26 10:17:57 -0500 | [diff] [blame] | 518 | for test in ['complexclip4_bw', 'complexclip4_aa', 'p3']: |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 519 | blacklist([ 'pic-8888', 'gm', '_', test]) |
| 520 | blacklist([ 'lite-8888', 'gm', '_', test]) |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 521 | blacklist(['serialize-8888', 'gm', '_', test]) |
| 522 | |
| 523 | # GM that not support tiles_rt |
| 524 | for test in ['complexclip4_bw', 'complexclip4_aa']: |
| 525 | blacklist([ 'tiles_rt-8888', 'gm', '_', test]) |
| 526 | |
| 527 | # Extensions for RAW images |
Ben Wagner | 6e0a6b3 | 2017-09-26 14:11:15 -0400 | [diff] [blame] | 528 | r = ['arw', 'cr2', 'dng', 'nef', 'nrw', 'orf', 'raf', 'rw2', 'pef', 'srw', |
| 529 | 'ARW', 'CR2', 'DNG', 'NEF', 'NRW', 'ORF', 'RAF', 'RW2', 'PEF', 'SRW'] |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 530 | |
| 531 | # skbug.com/4888 |
| 532 | # Blacklist RAW images (and a few large PNGs) on GPU bots |
| 533 | # until we can resolve failures. |
Matt Sarett | 929bfeb | 2017-05-22 10:34:41 -0400 | [diff] [blame] | 534 | if 'GPU' in bot: |
| 535 | blacklist('_ image _ interlaced1.png') |
| 536 | blacklist('_ image _ interlaced2.png') |
| 537 | blacklist('_ image _ interlaced3.png') |
| 538 | for raw_ext in r: |
| 539 | blacklist('_ image _ .%s' % raw_ext) |
| 540 | |
| 541 | # Blacklist memory intensive tests on 32-bit bots. |
Ben Wagner | fd66b5f | 2017-11-15 15:16:27 -0500 | [diff] [blame] | 542 | if ('Win8' in bot or 'Win2016' in bot) and 'x86-' in bot: |
Matt Sarett | 929bfeb | 2017-05-22 10:34:41 -0400 | [diff] [blame] | 543 | blacklist('_ image f16 _') |
Matt Sarett | 112565e | 2017-05-22 13:45:15 -0400 | [diff] [blame] | 544 | blacklist('_ image _ abnormal.wbmp') |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 545 | blacklist('_ image _ interlaced1.png') |
| 546 | blacklist('_ image _ interlaced2.png') |
| 547 | blacklist('_ image _ interlaced3.png') |
| 548 | for raw_ext in r: |
| 549 | blacklist('_ image _ .%s' % raw_ext) |
| 550 | |
Ben Wagner | 3f33069 | 2017-12-07 15:14:54 -0500 | [diff] [blame] | 551 | if 'Nexus5' in bot and 'GPU' in bot: |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 552 | # skia:5876 |
| 553 | blacklist(['_', 'gm', '_', 'encode-platform']) |
| 554 | |
| 555 | if 'AndroidOne-GPU' in bot: # skia:4697, skia:4704, skia:4694, skia:4705 |
| 556 | blacklist(['_', 'gm', '_', 'bigblurs']) |
| 557 | blacklist(['_', 'gm', '_', 'bleed']) |
| 558 | blacklist(['_', 'gm', '_', 'bleed_alpha_bmp']) |
| 559 | blacklist(['_', 'gm', '_', 'bleed_alpha_bmp_shader']) |
| 560 | blacklist(['_', 'gm', '_', 'bleed_alpha_image']) |
| 561 | blacklist(['_', 'gm', '_', 'bleed_alpha_image_shader']) |
| 562 | blacklist(['_', 'gm', '_', 'bleed_image']) |
| 563 | blacklist(['_', 'gm', '_', 'dropshadowimagefilter']) |
| 564 | blacklist(['_', 'gm', '_', 'filterfastbounds']) |
| 565 | blacklist([gl_prefix, 'gm', '_', 'imageblurtiled']) |
| 566 | blacklist(['_', 'gm', '_', 'imagefiltersclipped']) |
| 567 | blacklist(['_', 'gm', '_', 'imagefiltersscaled']) |
| 568 | blacklist(['_', 'gm', '_', 'imageresizetiled']) |
| 569 | blacklist(['_', 'gm', '_', 'matrixconvolution']) |
| 570 | blacklist(['_', 'gm', '_', 'strokedlines']) |
| 571 | if sample_count is not '': |
| 572 | gl_msaa_config = gl_prefix + 'msaa' + sample_count |
| 573 | blacklist([gl_msaa_config, 'gm', '_', 'imageblurtiled']) |
| 574 | blacklist([gl_msaa_config, 'gm', '_', 'imagefiltersbase']) |
| 575 | |
| 576 | match = [] |
| 577 | if 'Valgrind' in bot: # skia:3021 |
| 578 | match.append('~Threaded') |
| 579 | |
Ben Wagner | 6c12642 | 2017-06-19 12:45:54 -0400 | [diff] [blame] | 580 | if 'Valgrind' in bot and 'PreAbandonGpuContext' in bot: |
| 581 | # skia:6575 |
| 582 | match.append('~multipicturedraw_') |
| 583 | |
Ben Wagner | bb3e7ff | 2017-04-28 15:28:32 -0400 | [diff] [blame] | 584 | if 'CommandBuffer' in bot: |
| 585 | # https://crbug.com/697030 |
| 586 | match.append('~HalfFloatAlphaTextureTest') |
| 587 | |
Cary Clark | a7c569d | 2018-02-14 11:31:25 -0500 | [diff] [blame] | 588 | if 'AndroidOne' in bot: |
| 589 | match.append('~WritePixels') # skia:4711 |
| 590 | match.append('~PremulAlphaRoundTrip_Gpu') # skia:7501 |
Brian Salomon | f42a776 | 2018-06-21 11:14:51 -0400 | [diff] [blame] | 591 | match.append('~ReimportImageTextureWithMipLevels') # skia:8090 |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 592 | |
Kevin Lubick | 608c35a | 2018-01-16 16:15:57 -0500 | [diff] [blame] | 593 | if 'Chromecast' in bot: |
Kevin Lubick | 6ea9fdf | 2018-01-17 08:54:21 -0500 | [diff] [blame] | 594 | if 'GPU' in bot: |
| 595 | # skia:6687 |
Kevin Lubick | 6ea9fdf | 2018-01-17 08:54:21 -0500 | [diff] [blame] | 596 | match.append('~animated-image-blurs') |
Ben Wagner | d50a193 | 2018-03-01 09:45:18 -0500 | [diff] [blame] | 597 | match.append('~blur_0.01') |
| 598 | match.append('~blur_image_filter') |
Eric Boren | 1e00d19 | 2018-04-13 15:59:02 -0400 | [diff] [blame] | 599 | match.append('~check_small_sigma_offset') |
Ben Wagner | d50a193 | 2018-03-01 09:45:18 -0500 | [diff] [blame] | 600 | match.append('~imageblur2') |
| 601 | match.append('~lighting') |
| 602 | match.append('~longpathdash') |
| 603 | match.append('~matrixconvolution') |
Ben Wagner | dabef9d | 2018-02-27 16:36:12 -0500 | [diff] [blame] | 604 | match.append('~textblobmixedsizes_df') |
Ben Wagner | 98c3c61 | 2018-02-26 14:53:30 -0500 | [diff] [blame] | 605 | match.append('~textblobrandomfont') |
Kevin Lubick | 608c35a | 2018-01-16 16:15:57 -0500 | [diff] [blame] | 606 | # Blacklisted to avoid OOM (we see DM just end with "broken pipe") |
Kevin Lubick | 608c35a | 2018-01-16 16:15:57 -0500 | [diff] [blame] | 607 | match.append('~bigbitmaprect_') |
Kevin Lubick | 608c35a | 2018-01-16 16:15:57 -0500 | [diff] [blame] | 608 | match.append('~DrawBitmapRect') |
Kevin Lubick | 8684c71 | 2018-02-12 15:55:57 -0500 | [diff] [blame] | 609 | match.append('~drawbitmaprect') |
Ben Wagner | d50a193 | 2018-03-01 09:45:18 -0500 | [diff] [blame] | 610 | match.append('~GM_animated-image-blurs') |
| 611 | match.append('~ImageFilterBlurLargeImage') |
| 612 | match.append('~savelayer_clipmask') |
| 613 | match.append('~TextBlobCache') |
| 614 | match.append('~verylarge') |
Kevin Lubick | 2dafbd7 | 2017-08-31 10:39:05 -0400 | [diff] [blame] | 615 | |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 616 | if 'GalaxyS6' in bot: |
| 617 | match.append('~SpecialImage') # skia:6338 |
Brian Osman | eee3c09 | 2017-06-15 13:25:10 -0400 | [diff] [blame] | 618 | match.append('~skbug6653') # skia:6653 |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 619 | |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 620 | if 'MSAN' in bot: |
| 621 | match.extend(['~Once', '~Shared']) # Not sure what's up with these tests. |
| 622 | |
| 623 | if 'TSAN' in bot: |
| 624 | match.extend(['~ReadWriteAlpha']) # Flaky on TSAN-covered on nvidia bots. |
| 625 | match.extend(['~RGBA4444TextureTest', # Flakier than they are important. |
| 626 | '~RGB565TextureTest']) |
| 627 | |
Ben Wagner | dba0bc8 | 2017-12-11 13:27:27 -0500 | [diff] [blame] | 628 | # By default, we test with GPU threading enabled, unless specifically |
| 629 | # disabled. |
| 630 | if 'NoGPUThreads' in bot: |
| 631 | args.extend(['--gpuThreads', '0']) |
| 632 | |
Greg Daniel | a86385d | 2017-06-05 11:34:29 -0400 | [diff] [blame] | 633 | if 'Vulkan' in bot and 'Adreno530' in bot: |
| 634 | # skia:5777 |
| 635 | match.extend(['~CopySurface']) |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 636 | |
Brian Salomon | 3d86a19 | 2018-02-27 16:46:11 -0500 | [diff] [blame] | 637 | if 'Vulkan' in bot and 'Adreno' in bot: |
| 638 | # skia:7663 |
| 639 | match.extend(['~WritePixelsNonTextureMSAA_Gpu']) |
| 640 | match.extend(['~WritePixelsMSAA_Gpu']) |
| 641 | |
Ben Wagner | 6345757 | 2017-12-21 10:49:58 -0500 | [diff] [blame] | 642 | if 'Vulkan' in bot and api.vars.is_linux and 'IntelIris640' in bot: |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 643 | match.extend(['~VkHeapTests']) # skia:6245 |
| 644 | |
Kevin Lubick | ec4e735 | 2018-04-25 07:46:55 -0400 | [diff] [blame] | 645 | if api.vars.is_linux and 'IntelIris640' in bot: |
| 646 | match.extend(['~GLPrograms']) # skia:7849 |
| 647 | |
Ben Wagner | b842703 | 2017-11-18 19:04:25 -0500 | [diff] [blame] | 648 | if 'Vulkan' in bot and api.vars.is_linux and 'IntelHD405' in bot: |
Ben Wagner | 32eb5ba | 2017-11-20 13:46:20 -0500 | [diff] [blame] | 649 | # skia:7322 |
Ben Wagner | b842703 | 2017-11-18 19:04:25 -0500 | [diff] [blame] | 650 | blacklist(['vk', 'gm', '_', 'skbug_257']) |
Chris Dalton | 414be9b | 2018-04-26 14:37:01 -0600 | [diff] [blame] | 651 | blacklist(['vk', 'gm', '_', 'filltypespersp']) |
Ben Wagner | b842703 | 2017-11-18 19:04:25 -0500 | [diff] [blame] | 652 | match.append('~^ClearOp$') |
Greg Daniel | ec34a71 | 2017-12-06 12:06:26 -0500 | [diff] [blame] | 653 | match.append('~^CopySurface$') |
| 654 | match.append('~^ImageNewShader_GPU$') |
Ben Wagner | b842703 | 2017-11-18 19:04:25 -0500 | [diff] [blame] | 655 | match.append('~^InitialTextureClear$') |
Greg Daniel | ec34a71 | 2017-12-06 12:06:26 -0500 | [diff] [blame] | 656 | match.append('~^PinnedImageTest$') |
Ben Wagner | b842703 | 2017-11-18 19:04:25 -0500 | [diff] [blame] | 657 | match.append('~^ReadPixels_Gpu$') |
| 658 | match.append('~^ReadPixels_Texture$') |
Greg Daniel | ec34a71 | 2017-12-06 12:06:26 -0500 | [diff] [blame] | 659 | match.append('~^SRGBReadWritePixels$') |
Ben Wagner | b842703 | 2017-11-18 19:04:25 -0500 | [diff] [blame] | 660 | match.append('~^VkUploadPixelsTests$') |
| 661 | match.append('~^WritePixelsNonTexture_Gpu$') |
Brian Salomon | 3d86a19 | 2018-02-27 16:46:11 -0500 | [diff] [blame] | 662 | match.append('~^WritePixelsNonTextureMSAA_Gpu$') |
Ben Wagner | b842703 | 2017-11-18 19:04:25 -0500 | [diff] [blame] | 663 | match.append('~^WritePixels_Gpu$') |
Brian Salomon | 3d86a19 | 2018-02-27 16:46:11 -0500 | [diff] [blame] | 664 | match.append('~^WritePixelsMSAA_Gpu$') |
Ben Wagner | b842703 | 2017-11-18 19:04:25 -0500 | [diff] [blame] | 665 | |
Greg Daniel | e5b7e6d | 2018-06-12 10:52:59 -0400 | [diff] [blame] | 666 | if 'Vulkan' in bot and 'GTX660' in bot and 'Win' in bot: |
| 667 | # skbug.com/8047 |
| 668 | match.append('~FloatingPointTextureTest$') |
| 669 | |
Ben Wagner | b73cb3f | 2019-01-04 13:18:10 -0500 | [diff] [blame] | 670 | if 'Vulkan' in bot and 'Win10' in bot and 'IntelIris655' in bot: |
| 671 | # skia:8659 |
| 672 | blacklist(['vk', 'gm', '_', 'aarectmodes']) |
| 673 | blacklist(['vk', 'gm', '_', 'aaxfermodes']) |
| 674 | blacklist(['vk', 'gm', '_', 'crbug_892988']) |
| 675 | blacklist(['vk', 'gm', '_', 'dftext']) |
| 676 | blacklist(['vk', 'gm', '_', 'dftext_blob_persp']) |
| 677 | blacklist(['vk', 'gm', '_', 'dont_clip_to_layer']) |
| 678 | blacklist(['vk', 'gm', '_', 'drawregionmodes']) |
| 679 | blacklist(['vk', 'gm', '_', 'filterfastbounds']) |
| 680 | blacklist(['vk', 'gm', '_', 'fontmgr_iter']) |
| 681 | blacklist(['vk', 'gm', '_', 'fontmgr_match']) |
| 682 | blacklist(['vk', 'gm', '_', 'fontscalerdistortable']) |
| 683 | blacklist(['vk', 'gm', '_', 'gammagradienttext']) |
| 684 | blacklist(['vk', 'gm', '_', 'gammatext']) |
| 685 | blacklist(['vk', 'gm', '_', 'gradtext']) |
| 686 | blacklist(['vk', 'gm', '_', 'hairmodes']) |
| 687 | blacklist(['vk', 'gm', '_', 'imagefilters_xfermodes']) |
| 688 | blacklist(['vk', 'gm', '_', 'imagefiltersclipped']) |
| 689 | blacklist(['vk', 'gm', '_', 'imagefiltersscaled']) |
| 690 | blacklist(['vk', 'gm', '_', 'imagefiltersstroked']) |
| 691 | blacklist(['vk', 'gm', '_', 'imagefilterstransformed']) |
| 692 | blacklist(['vk', 'gm', '_', 'imageresizetiled']) |
| 693 | blacklist(['vk', 'gm', '_', 'lcdblendmodes']) |
| 694 | blacklist(['vk', 'gm', '_', 'lcdoverlap']) |
| 695 | blacklist(['vk', 'gm', '_', 'lcdtext']) |
| 696 | blacklist(['vk', 'gm', '_', 'lcdtextsize']) |
| 697 | blacklist(['vk', 'gm', '_', 'matriximagefilter']) |
| 698 | blacklist(['vk', 'gm', '_', 'resizeimagefilter']) |
| 699 | blacklist(['vk', 'gm', '_', 'rotate_imagefilter']) |
| 700 | blacklist(['vk', 'gm', '_', 'savelayer_lcdtext']) |
| 701 | blacklist(['vk', 'gm', '_', 'shadermaskfilter_image']) |
| 702 | blacklist(['vk', 'gm', '_', 'srcmode']) |
| 703 | blacklist(['vk', 'gm', '_', 'surfaceprops']) |
| 704 | blacklist(['vk', 'gm', '_', 'textblobgeometrychange']) |
| 705 | blacklist(['vk', 'gm', '_', 'textbloblooper']) |
| 706 | blacklist(['vk', 'gm', '_', 'textblobrandomfont']) |
| 707 | blacklist(['vk', 'gm', '_', 'textfilter_color']) |
| 708 | blacklist(['vk', 'gm', '_', 'textfilter_image']) |
| 709 | blacklist(['vk', 'gm', '_', 'varied_text_clipped_lcd']) |
| 710 | blacklist(['vk', 'gm', '_', 'varied_text_ignorable_clip_lcd']) |
| 711 | if 'Debug' in bot: |
| 712 | blacklist(['vk', 'gm', '_', 'fontscaler']) |
| 713 | blacklist(['vk', 'gm', '_', 'mixedtextblobs']) |
| 714 | blacklist(['vk', 'gm', '_', 'textblobmixedsizes']) |
| 715 | blacklist(['vk', 'gm', '_', 'textblobmixedsizes_df']) |
| 716 | |
Chris Dalton | 2b937f5 | 2018-05-17 10:17:10 -0600 | [diff] [blame] | 717 | if 'MoltenVK' in bot: |
| 718 | # skbug.com/7959 |
| 719 | blacklist(['_', 'gm', '_', 'vertices_scaled_shader']) |
| 720 | blacklist(['_', 'gm', '_', 'vertices']) |
| 721 | match.append('~^InitialTextureClear$') |
Chris Dalton | 2b937f5 | 2018-05-17 10:17:10 -0600 | [diff] [blame] | 722 | match.append('~^RGB565TextureTest$') |
| 723 | match.append('~^RGBA4444TextureTest$') |
| 724 | match.append('~^WritePixelsNonTextureMSAA_Gpu$') |
Chris Dalton | 2b937f5 | 2018-05-17 10:17:10 -0600 | [diff] [blame] | 725 | |
Robert Phillips | a96a101 | 2018-04-23 10:46:09 -0400 | [diff] [blame] | 726 | if 'ANGLE' in bot: |
| 727 | # skia:7835 |
| 728 | match.append('~BlurMaskBiggerThanDest') |
| 729 | |
Ben Wagner | 0473a31 | 2018-08-29 14:15:15 -0400 | [diff] [blame] | 730 | if 'IntelIris6100' in bot and 'ANGLE' in bot and 'Release' in bot: |
Ben Wagner | 1c4668d | 2018-07-23 14:25:02 -0400 | [diff] [blame] | 731 | # skia:7376 |
| 732 | match.append('~^ProcessorOptimizationValidationTest$') |
| 733 | |
Ben Wagner | c6b2e6b | 2017-10-07 18:57:25 -0400 | [diff] [blame] | 734 | if ('IntelIris6100' in bot or 'IntelHD4400' in bot) and 'ANGLE' in bot: |
| 735 | # skia:6857 |
| 736 | blacklist(['angle_d3d9_es2', 'gm', '_', 'lighting']) |
| 737 | |
Kevin Lubick | c14e5a7 | 2017-08-15 13:22:19 -0400 | [diff] [blame] | 738 | if 'PowerVRGX6250' in bot: |
| 739 | match.append('~gradients_view_perspective_nodither') #skia:6972 |
| 740 | |
Mike Klein | 3a3fbf1 | 2018-01-30 08:08:49 -0500 | [diff] [blame] | 741 | if '-arm-' in bot and 'ASAN' in bot: |
| 742 | # TODO: can we run with env allocator_may_return_null=1 instead? |
| 743 | match.append('~BadImage') |
| 744 | |
Ben Wagner | 1d8726f | 2018-02-02 14:47:31 -0500 | [diff] [blame] | 745 | if 'Mac' in bot and 'IntelHD6000' in bot: |
Ben Wagner | df43005 | 2018-02-08 16:57:04 -0500 | [diff] [blame] | 746 | # skia:7574 |
Ben Wagner | 1d8726f | 2018-02-02 14:47:31 -0500 | [diff] [blame] | 747 | match.append('~^ProcessorCloneTest$') |
| 748 | match.append('~^GrMeshTest$') |
| 749 | |
Ben Wagner | df43005 | 2018-02-08 16:57:04 -0500 | [diff] [blame] | 750 | if 'Mac' in bot and 'IntelHD615' in bot: |
| 751 | # skia:7603 |
| 752 | match.append('~^GrMeshTest$') |
| 753 | |
Timothy Liang | b1f02f3 | 2018-08-10 13:30:26 -0400 | [diff] [blame] | 754 | if 'Metal' in bot: |
| 755 | # skia:8243 |
| 756 | match.append('~^ClearOp$') |
| 757 | match.append('~^DDLSurfaceCharacterizationTest$') |
| 758 | match.append('~^DDLOperatorEqTest$') |
| 759 | match.append('~^DeferredProxyTest$') |
| 760 | match.append('~^GPUMemorySize$') |
| 761 | match.append('~^GrContext_colorTypeSupportedAsImage$') |
| 762 | match.append('~^GrContext_colorTypeSupportedAsSurface$') |
| 763 | match.append('~^GrContext_maxSurfaceSamplesForColorType$') |
| 764 | match.append('~^GrContextFactory_sharedContexts$') |
| 765 | match.append('~^GrPipelineDynamicStateTest$') |
Timothy Liang | b1f02f3 | 2018-08-10 13:30:26 -0400 | [diff] [blame] | 766 | match.append('~^InitialTextureClear$') |
| 767 | match.append('~^PromiseImageTest$') |
| 768 | match.append('~^ResourceAllocatorTest$') |
| 769 | match.append('~^RGB565TextureTest$') |
| 770 | match.append('~^RGBA4444TextureTest$') |
| 771 | match.append('~^TransferPixelsTest$') |
Timothy Liang | b1f02f3 | 2018-08-10 13:30:26 -0400 | [diff] [blame] | 772 | match.append('~^SurfaceSemaphores$') |
| 773 | match.append('~^VertexAttributeCount$') |
| 774 | match.append('~^WrappedProxyTest$') |
| 775 | |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 776 | if blacklisted: |
| 777 | args.append('--blacklist') |
| 778 | args.extend(blacklisted) |
| 779 | |
| 780 | if match: |
| 781 | args.append('--match') |
| 782 | args.extend(match) |
| 783 | |
| 784 | # These bots run out of memory running RAW codec tests. Do not run them in |
| 785 | # parallel |
Ben Wagner | 2040ed2 | 2017-11-22 11:22:22 -0500 | [diff] [blame] | 786 | if 'NexusPlayer' in bot or 'Nexus5' in bot or 'Nexus9' in bot: |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 787 | args.append('--noRAW_threading') |
| 788 | |
Yuqian Li | 84be3ad | 2017-10-17 10:11:21 -0400 | [diff] [blame] | 789 | if 'FSAA' in bot: |
| 790 | args.extend(['--analyticAA', 'false', '--deltaAA', 'false']) |
| 791 | if 'FAAA' in bot: |
| 792 | args.extend(['--deltaAA', 'false', '--forceAnalyticAA']) |
| 793 | if 'FDAA' in bot: |
| 794 | args.extend(['--deltaAA', '--forceDeltaAA']) |
| 795 | |
Mike Klein | c207da8 | 2017-11-10 14:24:34 -0500 | [diff] [blame] | 796 | if 'NativeFonts' not in bot: |
| 797 | args.append('--nonativeFonts') |
| 798 | |
Mike Klein | 0c5fdcb | 2017-11-13 12:40:46 -0500 | [diff] [blame] | 799 | if 'GDI' in bot: |
| 800 | args.append('--gdi') |
| 801 | |
Robert Phillips | 9945f76 | 2018-10-11 10:05:27 -0400 | [diff] [blame] | 802 | if ('QuadroP400' in bot or |
| 803 | 'Adreno540' in bot or |
| 804 | 'IntelHD2000' in bot or # gen 6 - sandy bridge |
| 805 | 'IntelHD4400' in bot or # gen 7 - haswell |
| 806 | 'IntelHD405' in bot or # gen 8 - cherryview braswell |
| 807 | 'IntelIris6100' in bot or # gen 8 - broadwell |
| 808 | 'IntelIris540' in bot or # gen 9 - skylake |
| 809 | 'IntelIris640' in bot or # gen 9 - kaby lake |
Ben Wagner | b73cb3f | 2019-01-04 13:18:10 -0500 | [diff] [blame] | 810 | 'IntelIris655' in bot or # gen 9 - coffee lake |
Robert Phillips | 9945f76 | 2018-10-11 10:05:27 -0400 | [diff] [blame] | 811 | 'MaliT760' in bot or |
| 812 | 'MaliT860' in bot or |
| 813 | 'MaliT880' in bot): |
Robert Phillips | 8505a0a | 2018-10-10 12:41:41 -0400 | [diff] [blame] | 814 | args.extend(['--reduceOpListSplitting']) |
| 815 | |
Stephan Altmueller | 74dac54 | 2017-09-11 15:32:21 -0400 | [diff] [blame] | 816 | # Let's make all bots produce verbose output by default. |
| 817 | args.append('--verbose') |
Mike Klein | c908906 | 2017-06-26 09:09:32 -0400 | [diff] [blame] | 818 | |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 819 | return args |
| 820 | |
| 821 | |
| 822 | def key_params(api): |
| 823 | """Build a unique key from the builder name (as a list). |
| 824 | |
| 825 | E.g. arch x86 gpu GeForce320M mode MacMini4.1 os Mac10.6 |
| 826 | """ |
| 827 | # Don't bother to include role, which is always Test. |
Kevin Lubick | 9ef6de7 | 2017-10-15 21:05:58 -0400 | [diff] [blame] | 828 | blacklist = ['role', 'test_filter'] |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 829 | |
| 830 | flat = [] |
| 831 | for k in sorted(api.vars.builder_cfg.keys()): |
| 832 | if k not in blacklist: |
| 833 | flat.append(k) |
| 834 | flat.append(api.vars.builder_cfg[k]) |
Kevin Lubick | 3fee923 | 2018-08-24 13:30:34 -0400 | [diff] [blame] | 835 | |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 836 | return flat |
| 837 | |
| 838 | |
| 839 | def test_steps(api): |
| 840 | """Run the DM test.""" |
Eric Boren | 72f6668 | 2018-05-18 07:36:55 -0400 | [diff] [blame] | 841 | b = api.properties['buildername'] |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 842 | use_hash_file = False |
Eric Boren | 72f6668 | 2018-05-18 07:36:55 -0400 | [diff] [blame] | 843 | if upload_dm_results(b): |
| 844 | host_dm_dir = str(api.flavor.host_dirs.dm_dir) |
| 845 | api.flavor.create_clean_host_dir(api.path['start_dir'].join('test')) |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 846 | device_dm_dir = str(api.flavor.device_dirs.dm_dir) |
| 847 | if host_dm_dir != device_dm_dir: |
| 848 | api.flavor.create_clean_device_dir(device_dm_dir) |
| 849 | |
| 850 | # Obtain the list of already-generated hashes. |
| 851 | hash_filename = 'uninteresting_hashes.txt' |
| 852 | |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 853 | host_hashes_file = api.vars.tmp_dir.join(hash_filename) |
| 854 | hashes_file = api.flavor.device_path_join( |
| 855 | api.flavor.device_dirs.tmp_dir, hash_filename) |
| 856 | api.run( |
| 857 | api.python.inline, |
| 858 | 'get uninteresting hashes', |
| 859 | program=""" |
| 860 | import contextlib |
| 861 | import math |
| 862 | import socket |
| 863 | import sys |
| 864 | import time |
| 865 | import urllib2 |
| 866 | |
Stephan Altmüller | 64cc576 | 2018-08-02 08:51:38 +0200 | [diff] [blame] | 867 | HASHES_URL = sys.argv[1] |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 868 | RETRIES = 5 |
| 869 | TIMEOUT = 60 |
| 870 | WAIT_BASE = 15 |
| 871 | |
| 872 | socket.setdefaulttimeout(TIMEOUT) |
| 873 | for retry in range(RETRIES): |
| 874 | try: |
| 875 | with contextlib.closing( |
| 876 | urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w: |
| 877 | hashes = w.read() |
Stephan Altmüller | 64cc576 | 2018-08-02 08:51:38 +0200 | [diff] [blame] | 878 | with open(sys.argv[2], 'w') as f: |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 879 | f.write(hashes) |
| 880 | break |
| 881 | except Exception as e: |
| 882 | print 'Failed to get uninteresting hashes from %s:' % HASHES_URL |
| 883 | print e |
| 884 | if retry == RETRIES: |
| 885 | raise |
| 886 | waittime = WAIT_BASE * math.pow(2, retry) |
| 887 | print 'Retry in %d seconds.' % waittime |
| 888 | time.sleep(waittime) |
| 889 | """, |
Stephan Altmüller | 64cc576 | 2018-08-02 08:51:38 +0200 | [diff] [blame] | 890 | args=[api.properties['gold_hashes_url'], host_hashes_file], |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 891 | abort_on_failure=False, |
| 892 | fail_build_on_failure=False, |
| 893 | infra_step=True) |
| 894 | |
| 895 | if api.path.exists(host_hashes_file): |
| 896 | api.flavor.copy_file_to_device(host_hashes_file, hashes_file) |
| 897 | use_hash_file = True |
| 898 | |
| 899 | # Run DM. |
| 900 | properties = [ |
Eric Boren | 72f6668 | 2018-05-18 07:36:55 -0400 | [diff] [blame] | 901 | 'gitHash', api.properties['revision'], |
Eric Boren | 9a9e387 | 2017-11-29 12:33:22 -0500 | [diff] [blame] | 902 | 'builder', api.vars.builder_name, |
| 903 | 'buildbucket_build_id', api.properties.get('buildbucket_build_id', ''), |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 904 | ] |
| 905 | if api.vars.is_trybot: |
| 906 | properties.extend([ |
| 907 | 'issue', api.vars.issue, |
| 908 | 'patchset', api.vars.patchset, |
| 909 | 'patch_storage', api.vars.patch_storage, |
| 910 | ]) |
Eric Boren | f9aa9e5 | 2017-04-10 09:56:10 -0400 | [diff] [blame] | 911 | properties.extend(['swarming_bot_id', api.vars.swarming_bot_id]) |
| 912 | properties.extend(['swarming_task_id', api.vars.swarming_task_id]) |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 913 | |
Kevin Lubick | 2dafbd7 | 2017-08-31 10:39:05 -0400 | [diff] [blame] | 914 | if 'Chromecast' in api.vars.builder_cfg.get('os', ''): |
| 915 | # Due to limited disk space, we only deal with skps and one image. |
| 916 | args = [ |
| 917 | 'dm', |
Kevin Lubick | 2dafbd7 | 2017-08-31 10:39:05 -0400 | [diff] [blame] | 918 | '--resourcePath', api.flavor.device_dirs.resource_dir, |
| 919 | '--skps', api.flavor.device_dirs.skp_dir, |
| 920 | '--images', api.flavor.device_path_join( |
Kevin Lubick | c2f3e8d | 2018-01-24 15:48:26 -0500 | [diff] [blame] | 921 | api.flavor.device_dirs.resource_dir, 'images', 'color_wheel.jpg'), |
Kevin Lubick | 608c35a | 2018-01-16 16:15:57 -0500 | [diff] [blame] | 922 | '--nameByHash', |
| 923 | '--properties' |
| 924 | ] + properties |
Kevin Lubick | 95379eb | 2018-01-17 11:20:19 -0500 | [diff] [blame] | 925 | else: |
| 926 | args = [ |
| 927 | 'dm', |
| 928 | '--resourcePath', api.flavor.device_dirs.resource_dir, |
| 929 | '--skps', api.flavor.device_dirs.skp_dir, |
| 930 | '--images', api.flavor.device_path_join( |
| 931 | api.flavor.device_dirs.images_dir, 'dm'), |
| 932 | '--colorImages', api.flavor.device_path_join( |
| 933 | api.flavor.device_dirs.images_dir, 'colorspace'), |
| 934 | '--nameByHash', |
| 935 | '--properties' |
| 936 | ] + properties |
| 937 | |
| 938 | args.extend(['--svgs', api.flavor.device_dirs.svg_dir]) |
Eric Boren | 8c172ba | 2018-07-19 13:27:49 -0400 | [diff] [blame] | 939 | if 'Lottie' in api.vars.builder_cfg.get('extra_config', ''): |
| 940 | args.extend(['--lotties', api.flavor.device_dirs.lotties_dir]) |
Kevin Lubick | 95379eb | 2018-01-17 11:20:19 -0500 | [diff] [blame] | 941 | |
| 942 | args.append('--key') |
Kevin Lubick | 3fee923 | 2018-08-24 13:30:34 -0400 | [diff] [blame] | 943 | keys = key_params(api) |
| 944 | |
| 945 | if 'Lottie' in api.vars.builder_cfg.get('extra_config', ''): |
| 946 | keys.extend(['renderer', 'skottie']) |
| 947 | |
| 948 | args.extend(keys) |
Kevin Lubick | 608c35a | 2018-01-16 16:15:57 -0500 | [diff] [blame] | 949 | |
| 950 | if use_hash_file: |
| 951 | args.extend(['--uninterestingHashesFile', hashes_file]) |
Eric Boren | 72f6668 | 2018-05-18 07:36:55 -0400 | [diff] [blame] | 952 | if upload_dm_results(b): |
Kevin Lubick | 608c35a | 2018-01-16 16:15:57 -0500 | [diff] [blame] | 953 | args.extend(['--writePath', api.flavor.device_dirs.dm_dir]) |
Kevin Lubick | 2dafbd7 | 2017-08-31 10:39:05 -0400 | [diff] [blame] | 954 | |
Eric Boren | 89cd357 | 2017-06-28 13:50:22 -0400 | [diff] [blame] | 955 | args.extend(dm_flags(api, api.vars.builder_name)) |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 956 | |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 957 | # See skia:2789. |
Ben Wagner | 37491d2 | 2017-12-13 13:00:47 -0500 | [diff] [blame] | 958 | if 'AbandonGpuContext' in api.vars.extra_tokens: |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 959 | args.append('--abandonGpuContext') |
Ben Wagner | 37491d2 | 2017-12-13 13:00:47 -0500 | [diff] [blame] | 960 | if 'PreAbandonGpuContext' in api.vars.extra_tokens: |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 961 | args.append('--preAbandonGpuContext') |
Ben Wagner | 37491d2 | 2017-12-13 13:00:47 -0500 | [diff] [blame] | 962 | if 'ReleaseAndAbandonGpuContext' in api.vars.extra_tokens: |
Eric Boren | 6ec17e3 | 2017-04-26 14:25:29 -0400 | [diff] [blame] | 963 | args.append('--releaseAndAbandonGpuContext') |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 964 | |
Ben Wagner | 5655ba4 | 2017-10-02 10:48:32 -0400 | [diff] [blame] | 965 | api.run(api.flavor.step, 'dm', cmd=args, abort_on_failure=False) |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 966 | |
Eric Boren | 72f6668 | 2018-05-18 07:36:55 -0400 | [diff] [blame] | 967 | if upload_dm_results(b): |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 968 | # Copy images and JSON to host machine if needed. |
| 969 | api.flavor.copy_directory_contents_to_host( |
Eric Boren | 72f6668 | 2018-05-18 07:36:55 -0400 | [diff] [blame] | 970 | api.flavor.device_dirs.dm_dir, api.flavor.host_dirs.dm_dir) |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 971 | |
| 972 | |
borenet | 1ed2ae4 | 2016-07-26 11:52:17 -0700 | [diff] [blame] | 973 | def RunSteps(api): |
Eric Boren | b702316 | 2018-05-04 13:46:15 -0400 | [diff] [blame] | 974 | api.vars.setup() |
| 975 | api.file.ensure_directory('makedirs tmp_dir', api.vars.tmp_dir) |
| 976 | api.flavor.setup() |
| 977 | |
Robert Iannucci | 297a7ef | 2017-05-12 19:09:38 -0700 | [diff] [blame] | 978 | env = {} |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 979 | if 'iOS' in api.vars.builder_name: |
| 980 | env['IOS_BUNDLE_ID'] = 'com.google.dm' |
Stephan Altmueller | 63e843d | 2017-04-25 11:38:38 -0400 | [diff] [blame] | 981 | env['IOS_MOUNT_POINT'] = api.vars.slave_dir.join('mnt_iosdevice') |
Robert Iannucci | 297a7ef | 2017-05-12 19:09:38 -0700 | [diff] [blame] | 982 | with api.context(env=env): |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 983 | try: |
Kevin Lubick | 2dafbd7 | 2017-08-31 10:39:05 -0400 | [diff] [blame] | 984 | if 'Chromecast' in api.vars.builder_name: |
| 985 | api.flavor.install(resources=True, skps=True) |
Eric Boren | 8c172ba | 2018-07-19 13:27:49 -0400 | [diff] [blame] | 986 | elif 'Lottie' in api.vars.builder_name: |
| 987 | api.flavor.install(resources=True, lotties=True) |
Kevin Lubick | 2dafbd7 | 2017-08-31 10:39:05 -0400 | [diff] [blame] | 988 | else: |
Eric Boren | 8c172ba | 2018-07-19 13:27:49 -0400 | [diff] [blame] | 989 | api.flavor.install(skps=True, images=True, svgs=True, resources=True) |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 990 | test_steps(api) |
| 991 | finally: |
| 992 | api.flavor.cleanup_steps() |
| 993 | api.run.check_failure() |
| 994 | |
| 995 | |
Eric Boren | f9aa9e5 | 2017-04-10 09:56:10 -0400 | [diff] [blame] | 996 | TEST_BUILDERS = [ |
Kevin Lubick | 9ef6de7 | 2017-10-15 21:05:58 -0400 | [diff] [blame] | 997 | 'Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android', |
| 998 | 'Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android', |
Ben Wagner | 12e69e7 | 2018-07-15 15:12:01 -0400 | [diff] [blame] | 999 | ('Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All' |
| 1000 | '-Android_NoGPUThreads'), |
Ben Wagner | 2107bd8 | 2018-06-12 14:16:07 -0400 | [diff] [blame] | 1001 | ('Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All' |
| 1002 | '-Android_Vulkan'), |
Ben Wagner | 12e69e7 | 2018-07-15 15:12:01 -0400 | [diff] [blame] | 1003 | 'Test-Android-Clang-MotoG4-CPU-Snapdragon617-arm-Release-All-Android', |
Kevin Lubick | 9ef6de7 | 2017-10-15 21:05:58 -0400 | [diff] [blame] | 1004 | 'Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_CCPR', |
Kevin Lubick | 9ef6de7 | 2017-10-15 21:05:58 -0400 | [diff] [blame] | 1005 | 'Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android', |
Ben Wagner | 5cf6d32 | 2017-12-07 10:23:07 -0500 | [diff] [blame] | 1006 | 'Test-Android-Clang-Nexus7-CPU-Tegra3-arm-Release-All-Android', |
Ben Wagner | 31629a8 | 2018-08-22 13:10:32 -0400 | [diff] [blame] | 1007 | 'Test-Android-Clang-NexusPlayer-GPU-PowerVRG6430-x86-Release-All-Android', |
Ben Wagner | 52423f3 | 2017-12-07 10:17:13 -0500 | [diff] [blame] | 1008 | 'Test-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android_Vulkan', |
Ben Wagner | 12e69e7 | 2018-07-15 15:12:01 -0400 | [diff] [blame] | 1009 | 'Test-Android-Clang-Pixel-GPU-Adreno530-arm-Debug-All-Android_ASAN', |
Kevin Lubick | d7af1db | 2017-11-02 12:03:22 -0400 | [diff] [blame] | 1010 | ('Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-' |
| 1011 | 'arm-Debug-All'), |
Mike Klein | 54d7b31 | 2018-06-27 13:43:51 -0400 | [diff] [blame] | 1012 | 'Test-Chromecast-Clang-Chorizo-CPU-Cortex_A7-arm-Release-All', |
| 1013 | 'Test-Chromecast-Clang-Chorizo-GPU-Cortex_A7-arm-Release-All', |
Kevin Lubick | 9ef6de7 | 2017-10-15 21:05:58 -0400 | [diff] [blame] | 1014 | 'Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-ASAN', |
Mike Klein | c24e0c1 | 2018-08-17 13:24:51 -0400 | [diff] [blame] | 1015 | 'Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-BonusConfigs', |
Kevin Lubick | 32f318b | 2017-10-17 13:40:52 -0400 | [diff] [blame] | 1016 | 'Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_00_10-Coverage', |
Kevin Lubick | 9ef6de7 | 2017-10-15 21:05:58 -0400 | [diff] [blame] | 1017 | 'Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-MSAN', |
| 1018 | ('Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All' |
Ben Wagner | 9fb285e | 2017-10-02 16:53:07 -0400 | [diff] [blame] | 1019 | '-SK_USE_DISCARDABLE_SCALEDIMAGECACHE'), |
Eric Boren | 8c172ba | 2018-07-19 13:27:49 -0400 | [diff] [blame] | 1020 | 'Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Lottie', |
Kevin Lubick | 9ef6de7 | 2017-10-15 21:05:58 -0400 | [diff] [blame] | 1021 | ('Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All' |
Ben Wagner | 6e0a6b3 | 2017-09-26 14:11:15 -0400 | [diff] [blame] | 1022 | '-SK_FORCE_RASTER_PIPELINE_BLITTER'), |
Kevin Lubick | 9ef6de7 | 2017-10-15 21:05:58 -0400 | [diff] [blame] | 1023 | 'Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-TSAN', |
Ben Wagner | d26e446 | 2018-05-22 10:46:15 -0400 | [diff] [blame] | 1024 | 'Test-Debian9-Clang-GCE-GPU-SwiftShader-x86_64-Release-All-SwiftShader', |
Kevin Lubick | 88611a1 | 2018-04-26 09:46:45 -0400 | [diff] [blame] | 1025 | 'Test-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan', |
| 1026 | 'Test-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Debug-All-Vulkan', |
Jim Van Verth | 1b6c75c | 2018-02-16 09:49:08 -0500 | [diff] [blame] | 1027 | 'Test-Mac-Clang-MacBook10.1-GPU-IntelHD615-x86_64-Release-All-NativeFonts', |
Ben Wagner | 7ea5428 | 2018-08-22 14:07:48 -0400 | [diff] [blame] | 1028 | 'Test-Mac-Clang-MacBookAir7.2-GPU-IntelHD6000-x86_64-Debug-All', |
| 1029 | 'Test-Mac-Clang-MacBookPro11.5-CPU-AVX2-x86_64-Release-All', |
Greg Daniel | b95d278 | 2018-07-24 11:35:18 -0400 | [diff] [blame] | 1030 | 'Test-Mac-Clang-MacBookPro11.5-GPU-RadeonHD8870M-x86_64-Debug-All-Metal', |
Chris Dalton | 2b937f5 | 2018-05-17 10:17:10 -0600 | [diff] [blame] | 1031 | ('Test-Mac-Clang-MacBookPro11.5-GPU-RadeonHD8870M-x86_64-Release-All-' |
| 1032 | 'MoltenVK_Vulkan'), |
Ben Wagner | 7ea5428 | 2018-08-22 14:07:48 -0400 | [diff] [blame] | 1033 | 'Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All-CommandBuffer', |
Ben Wagner | 9f55393 | 2017-11-27 22:18:12 -0500 | [diff] [blame] | 1034 | 'Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan_Coverage', |
Kevin Lubick | 9ef6de7 | 2017-10-15 21:05:58 -0400 | [diff] [blame] | 1035 | ('Test-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All' |
Ben Wagner | 6e0a6b3 | 2017-09-26 14:11:15 -0400 | [diff] [blame] | 1036 | '-Valgrind_AbandonGpuContext_SK_CPU_LIMIT_SSE41'), |
Kevin Lubick | 9ef6de7 | 2017-10-15 21:05:58 -0400 | [diff] [blame] | 1037 | ('Test-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All' |
Ben Wagner | 6e0a6b3 | 2017-09-26 14:11:15 -0400 | [diff] [blame] | 1038 | '-Valgrind_PreAbandonGpuContext_SK_CPU_LIMIT_SSE41'), |
Eric Boren | dd8b1fc | 2018-05-18 09:54:02 -0400 | [diff] [blame] | 1039 | 'Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-DDL1', |
| 1040 | 'Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-DDL3', |
Eric Boren | 9f4efd3 | 2018-07-20 08:25:42 -0400 | [diff] [blame] | 1041 | 'Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Lottie', |
Ben Wagner | a4cdfbb | 2018-08-31 10:20:34 -0400 | [diff] [blame] | 1042 | 'Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-BonusConfigs', |
Kevin Lubick | 9ef6de7 | 2017-10-15 21:05:58 -0400 | [diff] [blame] | 1043 | ('Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All' |
Ben Wagner | 6e0a6b3 | 2017-09-26 14:11:15 -0400 | [diff] [blame] | 1044 | '-ReleaseAndAbandonGpuContext'), |
Ben Wagner | fd66b5f | 2017-11-15 15:16:27 -0500 | [diff] [blame] | 1045 | 'Test-Win10-Clang-NUC5i7RYH-CPU-AVX2-x86_64-Debug-All-NativeFonts_GDI', |
Ben Wagner | 0473a31 | 2018-08-29 14:15:15 -0400 | [diff] [blame] | 1046 | 'Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE', |
Ben Wagner | b73cb3f | 2019-01-04 13:18:10 -0500 | [diff] [blame] | 1047 | 'Test-Win10-Clang-NUC8i5BEK-GPU-IntelIris655-x86_64-Debug-All-Vulkan', |
Ben Wagner | b2fd61a | 2017-10-23 16:01:44 -0400 | [diff] [blame] | 1048 | 'Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE', |
Greg Daniel | e5b7e6d | 2018-06-12 10:52:59 -0400 | [diff] [blame] | 1049 | 'Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan', |
Ben Wagner | b2fd61a | 2017-10-23 16:01:44 -0400 | [diff] [blame] | 1050 | 'Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE', |
Ben Wagner | 78935c2 | 2017-11-15 13:21:03 -0500 | [diff] [blame] | 1051 | 'Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FAAA', |
| 1052 | 'Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FDAA', |
| 1053 | 'Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FSAA', |
Ben Wagner | 31629a8 | 2018-08-22 13:10:32 -0400 | [diff] [blame] | 1054 | 'Test-iOS-Clang-iPadPro-GPU-PowerVRGT7800-arm64-Release-All', |
Eric Boren | f9aa9e5 | 2017-04-10 09:56:10 -0400 | [diff] [blame] | 1055 | ] |
borenet | 1ed2ae4 | 2016-07-26 11:52:17 -0700 | [diff] [blame] | 1056 | |
| 1057 | |
| 1058 | def GenTests(api): |
Eric Boren | f9aa9e5 | 2017-04-10 09:56:10 -0400 | [diff] [blame] | 1059 | for builder in TEST_BUILDERS: |
| 1060 | test = ( |
| 1061 | api.test(builder) + |
| 1062 | api.properties(buildername=builder, |
Eric Boren | 9a9e387 | 2017-11-29 12:33:22 -0500 | [diff] [blame] | 1063 | buildbucket_build_id='123454321', |
Eric Boren | f9aa9e5 | 2017-04-10 09:56:10 -0400 | [diff] [blame] | 1064 | revision='abc123', |
| 1065 | path_config='kitchen', |
Stephan Altmüller | 64cc576 | 2018-08-02 08:51:38 +0200 | [diff] [blame] | 1066 | gold_hashes_url='https://example.com/hashes.txt', |
Eric Boren | f9aa9e5 | 2017-04-10 09:56:10 -0400 | [diff] [blame] | 1067 | swarm_out_dir='[SWARM_OUT_DIR]') + |
| 1068 | api.path.exists( |
| 1069 | api.path['start_dir'].join('skia'), |
| 1070 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1071 | 'skimage', 'VERSION'), |
| 1072 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1073 | 'skp', 'VERSION'), |
| 1074 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1075 | 'svg', 'VERSION'), |
| 1076 | api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt') |
Ben Wagner | f835c22 | 2017-04-30 11:14:51 -0400 | [diff] [blame] | 1077 | ) + |
| 1078 | api.step_data('get swarming bot id', |
| 1079 | stdout=api.raw_io.output('skia-bot-123')) + |
| 1080 | api.step_data('get swarming task id', |
| 1081 | stdout=api.raw_io.output('123456')) |
Eric Boren | f9aa9e5 | 2017-04-10 09:56:10 -0400 | [diff] [blame] | 1082 | ) |
Eric Boren | f9aa9e5 | 2017-04-10 09:56:10 -0400 | [diff] [blame] | 1083 | if 'Win' in builder: |
| 1084 | test += api.platform('win', 64) |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 1085 | |
Kevin Lubick | 2dafbd7 | 2017-08-31 10:39:05 -0400 | [diff] [blame] | 1086 | if 'Chromecast' in builder: |
| 1087 | test += api.step_data( |
| 1088 | 'read chromecast ip', |
| 1089 | stdout=api.raw_io.output('192.168.1.2:5555')) |
| 1090 | |
Eric Boren | f9aa9e5 | 2017-04-10 09:56:10 -0400 | [diff] [blame] | 1091 | if 'ChromeOS' in builder: |
| 1092 | test += api.step_data( |
| 1093 | 'read chromeos ip', |
| 1094 | stdout=api.raw_io.output('{"user_ip":"foo@127.0.0.1"}')) |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 1095 | |
Eric Boren | f9aa9e5 | 2017-04-10 09:56:10 -0400 | [diff] [blame] | 1096 | yield test |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 1097 | |
Eric Boren | dd8b1fc | 2018-05-18 09:54:02 -0400 | [diff] [blame] | 1098 | builder = 'Test-Win8-Clang-Golo-CPU-AVX-x86-Debug-All' |
Kevin Lubick | fe079d4 | 2017-04-12 08:31:48 -0400 | [diff] [blame] | 1099 | yield ( |
| 1100 | api.test('trybot') + |
| 1101 | api.properties(buildername=builder, |
Eric Boren | 9a9e387 | 2017-11-29 12:33:22 -0500 | [diff] [blame] | 1102 | buildbucket_build_id='123454321', |
Kevin Lubick | fe079d4 | 2017-04-12 08:31:48 -0400 | [diff] [blame] | 1103 | revision='abc123', |
| 1104 | path_config='kitchen', |
Stephan Altmüller | 64cc576 | 2018-08-02 08:51:38 +0200 | [diff] [blame] | 1105 | gold_hashes_url='https://example.com/hashes.txt', |
Kevin Lubick | fe079d4 | 2017-04-12 08:31:48 -0400 | [diff] [blame] | 1106 | swarm_out_dir='[SWARM_OUT_DIR]') + |
| 1107 | api.properties(patch_storage='gerrit') + |
| 1108 | api.properties.tryserver( |
| 1109 | buildername=builder, |
| 1110 | gerrit_project='skia', |
| 1111 | gerrit_url='https://skia-review.googlesource.com/', |
| 1112 | )+ |
| 1113 | api.path.exists( |
| 1114 | api.path['start_dir'].join('skia'), |
| 1115 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1116 | 'skimage', 'VERSION'), |
| 1117 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1118 | 'skp', 'VERSION'), |
| 1119 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1120 | 'svg', 'VERSION'), |
| 1121 | api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt') |
| 1122 | ) |
| 1123 | ) |
| 1124 | |
Kevin Lubick | 9ef6de7 | 2017-10-15 21:05:58 -0400 | [diff] [blame] | 1125 | builder = 'Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All' |
borenet | 1ed2ae4 | 2016-07-26 11:52:17 -0700 | [diff] [blame] | 1126 | yield ( |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 1127 | api.test('failed_dm') + |
| 1128 | api.properties(buildername=builder, |
Eric Boren | 9a9e387 | 2017-11-29 12:33:22 -0500 | [diff] [blame] | 1129 | buildbucket_build_id='123454321', |
borenet | 1ed2ae4 | 2016-07-26 11:52:17 -0700 | [diff] [blame] | 1130 | revision='abc123', |
| 1131 | path_config='kitchen', |
Stephan Altmüller | 64cc576 | 2018-08-02 08:51:38 +0200 | [diff] [blame] | 1132 | gold_hashes_url='https://example.com/hashes.txt', |
borenet | 1ed2ae4 | 2016-07-26 11:52:17 -0700 | [diff] [blame] | 1133 | swarm_out_dir='[SWARM_OUT_DIR]') + |
| 1134 | api.path.exists( |
Ravi Mistry | 9bcca6a | 2016-11-21 16:06:19 -0500 | [diff] [blame] | 1135 | api.path['start_dir'].join('skia'), |
| 1136 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 1137 | 'skimage', 'VERSION'), |
Ravi Mistry | 9bcca6a | 2016-11-21 16:06:19 -0500 | [diff] [blame] | 1138 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 1139 | 'skp', 'VERSION'), |
Ravi Mistry | 9bcca6a | 2016-11-21 16:06:19 -0500 | [diff] [blame] | 1140 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 1141 | 'svg', 'VERSION'), |
Ravi Mistry | 9bcca6a | 2016-11-21 16:06:19 -0500 | [diff] [blame] | 1142 | api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt') |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 1143 | ) + |
| 1144 | api.step_data('symbolized dm', retcode=1) |
| 1145 | ) |
| 1146 | |
Kevin Lubick | 9ef6de7 | 2017-10-15 21:05:58 -0400 | [diff] [blame] | 1147 | builder = 'Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android' |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 1148 | yield ( |
| 1149 | api.test('failed_get_hashes') + |
| 1150 | api.properties(buildername=builder, |
Eric Boren | 9a9e387 | 2017-11-29 12:33:22 -0500 | [diff] [blame] | 1151 | buildbucket_build_id='123454321', |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 1152 | revision='abc123', |
| 1153 | path_config='kitchen', |
Stephan Altmüller | 64cc576 | 2018-08-02 08:51:38 +0200 | [diff] [blame] | 1154 | gold_hashes_url='https://example.com/hashes.txt', |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 1155 | swarm_out_dir='[SWARM_OUT_DIR]') + |
| 1156 | api.path.exists( |
| 1157 | api.path['start_dir'].join('skia'), |
| 1158 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1159 | 'skimage', 'VERSION'), |
| 1160 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1161 | 'skp', 'VERSION'), |
| 1162 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1163 | 'svg', 'VERSION'), |
| 1164 | api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt') |
| 1165 | ) + |
| 1166 | api.step_data('get uninteresting hashes', retcode=1) |
| 1167 | ) |
| 1168 | |
Kevin Lubick | 9ef6de7 | 2017-10-15 21:05:58 -0400 | [diff] [blame] | 1169 | builder = ('Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-' |
| 1170 | 'Debug-All-Android') |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 1171 | yield ( |
| 1172 | api.test('failed_push') + |
| 1173 | api.properties(buildername=builder, |
Eric Boren | 9a9e387 | 2017-11-29 12:33:22 -0500 | [diff] [blame] | 1174 | buildbucket_build_id='123454321', |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 1175 | revision='abc123', |
| 1176 | path_config='kitchen', |
Stephan Altmüller | 64cc576 | 2018-08-02 08:51:38 +0200 | [diff] [blame] | 1177 | gold_hashes_url='https://example.com/hashes.txt', |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 1178 | swarm_out_dir='[SWARM_OUT_DIR]') + |
| 1179 | api.path.exists( |
| 1180 | api.path['start_dir'].join('skia'), |
| 1181 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1182 | 'skimage', 'VERSION'), |
| 1183 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1184 | 'skp', 'VERSION'), |
| 1185 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1186 | 'svg', 'VERSION'), |
| 1187 | api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt') |
| 1188 | ) + |
Kevin Lubick | c6f74ca | 2018-03-01 09:21:38 -0500 | [diff] [blame] | 1189 | api.step_data('get swarming bot id', |
| 1190 | stdout=api.raw_io.output('build123-m2--device5')) + |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 1191 | api.step_data('push [START_DIR]/skia/resources/* '+ |
| 1192 | '/sdcard/revenge_of_the_skiabot/resources', retcode=1) |
| 1193 | ) |
| 1194 | |
Ben Wagner | 1a2b3f0 | 2017-10-26 15:13:38 -0400 | [diff] [blame] | 1195 | builder = 'Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android' |
Eric Boren | cd0a98c | 2018-06-20 13:23:16 -0400 | [diff] [blame] | 1196 | retry_step_name = 'adb pull.pull /sdcard/revenge_of_the_skiabot/dm_out' |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 1197 | yield ( |
| 1198 | api.test('failed_pull') + |
| 1199 | api.properties(buildername=builder, |
Eric Boren | 9a9e387 | 2017-11-29 12:33:22 -0500 | [diff] [blame] | 1200 | buildbucket_build_id='123454321', |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 1201 | revision='abc123', |
| 1202 | path_config='kitchen', |
Stephan Altmüller | 64cc576 | 2018-08-02 08:51:38 +0200 | [diff] [blame] | 1203 | gold_hashes_url='https://example.com/hashes.txt', |
Eric Boren | 4c7754c | 2017-04-10 08:19:10 -0400 | [diff] [blame] | 1204 | swarm_out_dir='[SWARM_OUT_DIR]') + |
| 1205 | api.path.exists( |
| 1206 | api.path['start_dir'].join('skia'), |
| 1207 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1208 | 'skimage', 'VERSION'), |
| 1209 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1210 | 'skp', 'VERSION'), |
| 1211 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1212 | 'svg', 'VERSION'), |
| 1213 | api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt') |
| 1214 | ) + |
| 1215 | api.step_data('dm', retcode=1) + |
Ben Wagner | e7e6e22 | 2018-05-25 09:47:37 -0400 | [diff] [blame] | 1216 | api.step_data(retry_step_name, retcode=1) + |
| 1217 | api.step_data(retry_step_name + ' (attempt 2)', retcode=1) + |
| 1218 | api.step_data(retry_step_name + ' (attempt 3)', retcode=1) |
borenet | bfa5b45 | 2016-10-19 10:13:32 -0700 | [diff] [blame] | 1219 | ) |
Eric Boren | 053d7a4 | 2017-09-15 08:35:31 -0400 | [diff] [blame] | 1220 | |
| 1221 | yield ( |
Kevin Lubick | bd27d1d | 2017-10-13 08:01:49 -0400 | [diff] [blame] | 1222 | api.test('internal_bot_2') + |
| 1223 | api.properties(buildername=builder, |
Eric Boren | 9a9e387 | 2017-11-29 12:33:22 -0500 | [diff] [blame] | 1224 | buildbucket_build_id='123454321', |
Kevin Lubick | bd27d1d | 2017-10-13 08:01:49 -0400 | [diff] [blame] | 1225 | revision='abc123', |
| 1226 | path_config='kitchen', |
| 1227 | swarm_out_dir='[SWARM_OUT_DIR]', |
Stephan Altmüller | 64cc576 | 2018-08-02 08:51:38 +0200 | [diff] [blame] | 1228 | gold_hashes_url='https://example.com/hashes.txt', |
Eric Boren | fb20ac4 | 2018-04-24 14:48:19 -0400 | [diff] [blame] | 1229 | internal_hardware_label='2') + |
Kevin Lubick | bd27d1d | 2017-10-13 08:01:49 -0400 | [diff] [blame] | 1230 | api.path.exists( |
| 1231 | api.path['start_dir'].join('skia'), |
| 1232 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1233 | 'skimage', 'VERSION'), |
| 1234 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1235 | 'skp', 'VERSION'), |
| 1236 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1237 | 'svg', 'VERSION'), |
| 1238 | api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt') |
Kevin Lubick | d1bbd5f | 2017-11-21 16:47:16 -0500 | [diff] [blame] | 1239 | ) |
Kevin Lubick | bd27d1d | 2017-10-13 08:01:49 -0400 | [diff] [blame] | 1240 | ) |
Kevin Lubick | 8243988 | 2018-12-12 15:50:14 -0500 | [diff] [blame] | 1241 | |
| 1242 | yield ( |
| 1243 | api.test('internal_bot_5') + |
| 1244 | api.properties(buildername=builder, |
| 1245 | buildbucket_build_id='123454321', |
| 1246 | revision='abc123', |
| 1247 | path_config='kitchen', |
| 1248 | swarm_out_dir='[SWARM_OUT_DIR]', |
| 1249 | gold_hashes_url='https://example.com/hashes.txt', |
| 1250 | internal_hardware_label='5') + |
| 1251 | api.path.exists( |
| 1252 | api.path['start_dir'].join('skia'), |
| 1253 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1254 | 'skimage', 'VERSION'), |
| 1255 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1256 | 'skp', 'VERSION'), |
| 1257 | api.path['start_dir'].join('skia', 'infra', 'bots', 'assets', |
| 1258 | 'svg', 'VERSION'), |
| 1259 | api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt') |
| 1260 | ) |
| 1261 | ) |