Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1 | # Copyright 2017 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 | # This is a .pyl, or "Python Literal", file. You can treat it just like a |
| 6 | # .json file, with the following exceptions: |
| 7 | # * all keys must be quoted (use single quotes, please); |
| 8 | # * comments are allowed, using '#' syntax; and |
| 9 | # * trailing commas are allowed. |
| 10 | |
| 11 | # Exceptions to the common test suites can only include removal from |
| 12 | # particular bots, and modifications on particular bots. By design, |
| 13 | # it's not possible to add one-off tests to bots. Instead they have to |
| 14 | # be added to one of the test suites in test_suites.pyl. |
| 15 | # |
Jeff Yoon | e2188f6 | 2020-08-24 20:55:57 | [diff] [blame] | 16 | # Note that if you are excluding with variants, you will need to exclude |
| 17 | # per variant, with the identifier appended to the test suite name. |
| 18 | # For example, if you have ios_chrome_ui_eg2tests_module with variant |
| 19 | # SIM_IPHONE_6S_14_0 (identifier = "iPhone 6s 14.0"), you |
| 20 | # must exclude with the test name as: |
| 21 | # "ios_chrome_ui_eg2tests_module_iPhone 6s 14.0" |
| 22 | |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 23 | # The goal is to drive the number of exceptions to zero, to make all |
| 24 | # the bots behave similarly. |
| 25 | { |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 26 | 'android_browsertests': { |
Sven Zheng | 3b68eabd | 2021-07-21 02:05:47 | [diff] [blame] | 27 | 'remove_from': [ |
| 28 | # Remove from CQ bots due to capacity. |
| 29 | 'android-lollipop-arm-rel', |
| 30 | ], |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 31 | 'modifications': { |
Haiyang Pan | ca7fcec | 2021-03-19 02:11:10 | [diff] [blame] | 32 | 'android-11-x86-fyi-rel': { |
| 33 | 'swarming': { |
| 34 | 'shards': 2, |
| 35 | }, |
| 36 | }, |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 37 | 'android-pie-arm64-rel': { |
Andrew Luo | be83fd8 | 2019-12-19 03:07:58 | [diff] [blame] | 38 | 'args': [ |
| 39 | '--gtest_filter=-ImportantSitesUtilBrowserTest.DSENotConsideredImportantInRegularMode', # https://crbug.com/1034001 |
| 40 | ], |
Haiyang Pan | fbd2b48 | 2020-09-23 23:41:25 | [diff] [blame] | 41 | # TODO(crbug.com/1111436): Move this back to walleye if/when additional |
| 42 | # capacity has been deployed. |
| 43 | 'swarming': { |
| 44 | 'dimension_sets': [ |
| 45 | { |
| 46 | 'device_type': 'sailfish', |
| 47 | }, |
| 48 | ], |
Haiyang Pan | 1678f0c0 | 2021-03-09 23:05:09 | [diff] [blame] | 49 | 'shards': 2, |
Haiyang Pan | fbd2b48 | 2020-09-23 23:41:25 | [diff] [blame] | 50 | }, |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 51 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 52 | 'android-pie-x86-rel': { |
John Budorick | 191adfcd | 2020-01-29 18:19:04 | [diff] [blame] | 53 | 'args': [ |
| 54 | '--gtest_filter=-ImportantSitesUtilBrowserTest.DSENotConsideredImportantInRegularMode', # https://crbug.com/1034001 |
| 55 | ], |
Haiyang Pan | 7cd609d | 2021-04-08 20:17:24 | [diff] [blame] | 56 | 'swarming': { |
| 57 | 'shards': 2, |
| 58 | }, |
John Budorick | 191adfcd | 2020-01-29 18:19:04 | [diff] [blame] | 59 | }, |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 60 | }, |
| 61 | }, |
Sven Zheng | c60debc | 2020-09-10 18:40:52 | [diff] [blame] | 62 | 'android_sync_integration_tests': { |
| 63 | 'remove_from': [ |
| 64 | # Remove from CQ bots due to capacity. |
| 65 | 'android-marshmallow-arm64-rel', |
| 66 | 'android-lollipop-arm-rel', |
| 67 | ], |
| 68 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 69 | 'android_webview_unittests': { |
| 70 | 'remove_from': [ |
John Budorick | 826d5ed | 2017-12-28 19:27:32 | [diff] [blame] | 71 | # On chromium.android, these do not need to run prior to M. |
Haiyang Pan | a3ff55ae | 2020-04-23 18:26:54 | [diff] [blame] | 72 | 'android-lollipop-arm-rel', |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 73 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 74 | }, |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 75 | 'angle_end2end_tests': { |
| 76 | 'remove_from': [ |
| 77 | # TODO(ynovikov) Investigate why the test breaks on older devices. |
| 78 | 'Android FYI Release (Nexus 5)', |
| 79 | 'Android FYI Release (Nexus 6)', |
| 80 | 'Android FYI Release (Nexus 9)', |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 81 | # Temporarily disabled due to bad NVIDIA driver upgrade crbug.com/950542 |
| 82 | 'Linux FYI Debug (NVIDIA)', |
| 83 | ], |
Yuly Novikov | 60cbf64 | 2020-11-19 20:43:15 | [diff] [blame] | 84 | 'modifications': { |
| 85 | # anglebug.com/5328 suspecting blue screen caused by multiprocess |
Yuly Novikov | 60cbf64 | 2020-11-19 20:43:15 | [diff] [blame] | 86 | 'Optional Win10 x64 Release (Intel HD 630)': { |
| 87 | 'args': [ |
| 88 | '--max-processes=1', |
| 89 | ], |
| 90 | }, |
| 91 | 'Win10 FYI x64 Exp Release (Intel HD 630)': { |
| 92 | 'args': [ |
| 93 | '--max-processes=1', |
| 94 | ], |
| 95 | }, |
| 96 | 'Win10 FYI x64 Release (Intel HD 630)': { |
| 97 | 'args': [ |
| 98 | '--max-processes=1', |
| 99 | ], |
| 100 | }, |
Yuly Novikov | 80d2e67 | 2021-02-13 00:16:04 | [diff] [blame] | 101 | 'win10-angle-x64-intel': { |
| 102 | 'args': [ |
| 103 | '--max-processes=1', |
| 104 | ], |
| 105 | }, |
Yuly Novikov | 60cbf64 | 2020-11-19 20:43:15 | [diff] [blame] | 106 | }, |
Yuly Novikov | 922b1fa9 | 2021-02-25 22:25:40 | [diff] [blame] | 107 | 'replacements': { |
| 108 | 'Linux FYI Release (AMD RX 5500 XT)': { |
| 109 | 'args': { |
| 110 | '--max-processes': '1', |
| 111 | }, |
| 112 | }, |
| 113 | }, |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 114 | }, |
Ian Elliott | 3634d68 | 2021-03-10 21:19:30 | [diff] [blame] | 115 | 'angle_gles1_conformance_tests': { |
| 116 | 'replacements': { |
| 117 | 'Win10 FYI x64 Debug (NVIDIA)': { |
| 118 | 'args': { |
| 119 | '--test-timeout': '60', |
| 120 | }, |
| 121 | }, |
Ian Elliott | 3634d68 | 2021-03-10 21:19:30 | [diff] [blame] | 122 | }, |
| 123 | }, |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 124 | 'angle_unittests': { |
| 125 | 'remove_from': [ |
| 126 | # On Android, these are already run on the main waterfall. |
| 127 | 'Android FYI Release (Nexus 5X)', |
Yuly Novikov | c1117ae8 | 2021-01-15 22:33:36 | [diff] [blame] | 128 | # Times out listing tests crbug.com/1167314 |
| 129 | 'android-asan', |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 130 | # Does not currently work on Lacros configurations. |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 131 | 'linux-lacros-code-coverage', |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 132 | 'linux-lacros-tester-rel', |
| 133 | 'linux-lacros-tester-fyi-rel', |
| 134 | ], |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 135 | }, |
| 136 | 'angle_white_box_tests': { |
Yuly Novikov | 60cbf64 | 2020-11-19 20:43:15 | [diff] [blame] | 137 | 'modifications': { |
| 138 | # anglebug.com/5328 suspecting blue screen caused by multiprocess |
Yuly Novikov | 60cbf64 | 2020-11-19 20:43:15 | [diff] [blame] | 139 | 'Optional Win10 x64 Release (Intel HD 630)': { |
| 140 | 'args': [ |
| 141 | '--max-processes=1', |
| 142 | ], |
| 143 | }, |
| 144 | 'Win10 FYI x64 Exp Release (Intel HD 630)': { |
| 145 | 'args': [ |
| 146 | '--max-processes=1', |
| 147 | ], |
| 148 | }, |
| 149 | 'Win10 FYI x64 Release (Intel HD 630)': { |
| 150 | 'args': [ |
| 151 | '--max-processes=1', |
| 152 | ], |
| 153 | }, |
Yuly Novikov | 80d2e67 | 2021-02-13 00:16:04 | [diff] [blame] | 154 | 'win10-angle-x64-intel': { |
| 155 | 'args': [ |
| 156 | '--max-processes=1', |
| 157 | ], |
| 158 | }, |
Yuly Novikov | 60cbf64 | 2020-11-19 20:43:15 | [diff] [blame] | 159 | }, |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 160 | }, |
Yuke Liao | b6beaeca | 2021-04-29 23:41:51 | [diff] [blame] | 161 | 'aura_unittests_amd64-generic': { |
| 162 | 'remove_from': [ |
| 163 | # TODO(crbug.com/1204231): Re-enable. |
| 164 | 'lacros-amd64-generic-rel', |
| 165 | ] |
| 166 | }, |
Yuke Liao | 79a8cf5 | 2021-06-11 18:14:34 | [diff] [blame] | 167 | 'aura_unittests_eve': { |
| 168 | 'remove_from': [ |
| 169 | # TODO(crbug.com/1204231): Re-enable. |
| 170 | 'lacros-amd64-generic-rel', |
| 171 | ] |
| 172 | }, |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 173 | 'base_unittests': { |
| 174 | 'modifications': { |
Haiyang Pan | c7c009e | 2021-03-18 19:31:23 | [diff] [blame] | 175 | 'android-11-x86-fyi-rel': { |
| 176 | 'args': [ |
| 177 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.base_unittests.filter', |
| 178 | ], |
| 179 | }, |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 180 | 'fuchsia-code-coverage': { |
| 181 | 'swarming': { |
| 182 | 'shards': 5, |
| 183 | }, |
| 184 | }, |
| 185 | }, |
| 186 | }, |
Haiyang Pan | 363c59a | 2020-07-23 05:47:04 | [diff] [blame] | 187 | 'blink_platform_unittests': { |
| 188 | 'modifications': { |
| 189 | # TODO(crbug.com/1108121): Remove this filter |
| 190 | 'android-nougat-arm64-rel': { |
| 191 | 'args': [ |
| 192 | '--gtest_filter=-HarfBuzzShaperTest.ShapeHorizontalWithoutSubpixelPositionWithKerningIsRounded', |
| 193 | ], |
| 194 | }, |
Haiyang Pan | fbd2b48 | 2020-09-23 23:41:25 | [diff] [blame] | 195 | 'android-pie-arm64-rel': { |
| 196 | # TODO(crbug.com/1111436): Move this back to walleye if/when additional |
| 197 | # capacity has been deployed. |
| 198 | 'swarming': { |
| 199 | 'dimension_sets': [ |
| 200 | { |
| 201 | 'device_type': 'sailfish', |
| 202 | }, |
| 203 | ], |
| 204 | }, |
| 205 | }, |
Chong Gu | 5248145 | 2021-04-02 17:52:41 | [diff] [blame] | 206 | 'fuchsia-code-coverage': { |
| 207 | 'swarming': { |
| 208 | 'shards': 5, |
| 209 | }, |
| 210 | }, |
Haiyang Pan | 363c59a | 2020-07-23 05:47:04 | [diff] [blame] | 211 | }, |
| 212 | }, |
Chong Gu | c2d145e | 2021-03-31 19:55:34 | [diff] [blame] | 213 | 'blink_unittests': { |
| 214 | 'modifications': { |
| 215 | 'fuchsia-code-coverage': { |
| 216 | 'swarming': { |
| 217 | 'shards': 30, |
| 218 | }, |
| 219 | }, |
| 220 | }, |
| 221 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 222 | 'blink_web_tests': { |
| 223 | 'remove_from': [ |
Nico Weber | ab2d612 | 2021-06-22 12:31:39 | [diff] [blame] | 224 | 'mac-arm64-rel-tests', # TODO(https://crbug.com/1169240): Enable |
Ilia Samsonov | ca3dfd5 | 2020-08-07 18:39:01 | [diff] [blame] | 225 | 'Mac10.11 Tests', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 226 | 'Win 7 Tests x64 (1)', # 64-bit win is unsupported by the layout tests. |
| 227 | 'Win10 Tests x64 (dbg)', |
| 228 | ], |
| 229 | 'modifications': { |
| 230 | 'Fuchsia x64': { |
| 231 | 'args': [ |
| 232 | '--platform=fuchsia', |
| 233 | ], |
| 234 | 'swarming': { |
| 235 | 'shards': 1, |
| 236 | }, |
| 237 | }, |
| 238 | 'Linux Tests': { |
| 239 | "args": [ |
| 240 | "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw", |
| 241 | ], |
| 242 | }, |
| 243 | 'Linux Tests (dbg)(1)': { |
| 244 | 'args': [ |
| 245 | '--debug', |
| 246 | ], |
| 247 | 'swarming': { |
Sven Zheng | 439fcdf | 2021-07-13 20:14:57 | [diff] [blame] | 248 | 'shards': 30, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 249 | }, |
| 250 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 251 | 'Mac10.11 Tests': { |
| 252 | # TODO(kbr): this is essentially redundant. |
| 253 | 'swarming': { |
| 254 | 'dimension_sets': [ |
| 255 | { |
Dirk Pranke | 772f55f | 2021-04-28 04:51:16 | [diff] [blame] | 256 | 'cpu': 'x86-64', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 257 | 'gpu': 'none', |
| 258 | 'os': 'Mac-10.11.6', |
| 259 | }, |
| 260 | ], |
| 261 | 'shards': 25, |
| 262 | }, |
| 263 | }, |
| 264 | 'Mac10.12 Tests': { |
| 265 | 'swarming': { |
| 266 | 'shards': 25, |
| 267 | }, |
| 268 | }, |
| 269 | 'Mac10.13 Tests': { |
| 270 | 'swarming': { |
| 271 | 'dimension_sets': [ |
| 272 | { |
Erik Staab | 59591f3 | 2020-08-25 23:07:07 | [diff] [blame] | 273 | 'gpu': None, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 274 | }, |
| 275 | ], |
| 276 | 'shards': 25, |
| 277 | }, |
| 278 | }, |
Zhaoyang Li | 69e2e00 | 2021-02-19 21:57:35 | [diff] [blame] | 279 | 'Mac10.15 Tests': { |
| 280 | 'swarming': { |
| 281 | 'dimension_sets': [ |
| 282 | { |
| 283 | 'gpu': None, |
| 284 | }, |
| 285 | ], |
| 286 | 'shards': 25, |
| 287 | }, |
| 288 | }, |
Zhaoyang Li | 7842759 | 2021-03-25 19:03:23 | [diff] [blame] | 289 | 'Mac10.15 Tests (dbg)': { |
| 290 | 'args': [ |
| 291 | '--debug', |
| 292 | ], |
| 293 | 'swarming': { |
Takuto Ikuta | 7967d4e | 2021-07-19 06:31:43 | [diff] [blame] | 294 | 'shards': 40, |
Zhaoyang Li | 7842759 | 2021-03-25 19:03:23 | [diff] [blame] | 295 | }, |
| 296 | }, |
Chong Gu | 75af969a | 2021-03-22 14:46:14 | [diff] [blame] | 297 | 'ToTFuchsia x64': { |
| 298 | 'args': [ |
| 299 | '--platform=fuchsia', |
| 300 | ], |
| 301 | 'swarming': { |
| 302 | 'shards': 1, |
| 303 | }, |
| 304 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 305 | 'V8 Blink Linux Debug': { |
Michael Achenbach | 455d3924 | 2020-06-22 13:33:45 | [diff] [blame] | 306 | # This builder compiles Chromium in release mode, but V8 in debug. |
| 307 | # TODO(machenbach): Change name and out directory of this builder to |
| 308 | # something less confusing. |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 309 | 'args': [ |
Michael Achenbach | 455d3924 | 2020-06-22 13:33:45 | [diff] [blame] | 310 | '-t', |
| 311 | 'Debug', |
| 312 | '--release', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 313 | ], |
| 314 | }, |
| 315 | 'V8 Blink Linux Future': { |
| 316 | 'args': [ |
| 317 | '--additional-driver-flag=--js-flags=--future', |
| 318 | ], |
| 319 | }, |
| 320 | 'WebKit Linux ASAN': { |
| 321 | 'args': [ |
| 322 | '--additional-expectations', |
| 323 | '../../third_party/blink/web_tests/ASANExpectations', |
| 324 | '--time-out-ms', |
| 325 | '48000', |
| 326 | '--enable-sanitizer', |
| 327 | ], |
| 328 | 'swarming': { |
| 329 | 'shards': 20, |
| 330 | }, |
| 331 | }, |
| 332 | 'WebKit Linux Leak': { |
| 333 | 'args': [ |
| 334 | '--additional-expectations', |
| 335 | '../../third_party/blink/web_tests/LeakExpectations', |
| 336 | '--time-out-ms', |
| 337 | '48000', |
| 338 | '--enable-leak-detection', |
| 339 | ], |
| 340 | 'swarming': { |
| 341 | 'shards': 10, |
| 342 | }, |
| 343 | }, |
| 344 | 'WebKit Linux MSAN': { |
| 345 | 'args': [ |
| 346 | '--additional-expectations', |
| 347 | '../../third_party/blink/web_tests/MSANExpectations', |
| 348 | '--time-out-ms', |
| 349 | '66000', |
| 350 | '--enable-sanitizer', |
| 351 | ], |
| 352 | 'swarming': { |
| 353 | 'expiration': 36000, |
| 354 | 'hard_timeout': 10800, |
| 355 | 'io_timeout': 3600, |
| 356 | 'shards': 20, |
| 357 | }, |
| 358 | }, |
| 359 | 'WebKit Linux composite_after_paint Dummy Builder': { |
| 360 | 'args': [ |
| 361 | '--additional-driver-flag=--enable-blink-features=CompositeAfterPaint', |
| 362 | ], |
Xianzhu Wang | 2dc614e | 2021-03-04 22:56:39 | [diff] [blame] | 363 | 'swarming': { |
| 364 | 'shards': 20, |
| 365 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 366 | }, |
| 367 | 'WebKit Linux layout_ng_disabled Builder': { |
| 368 | 'args': [ |
| 369 | '--additional-driver-flag=--disable-blink-features=LayoutNG', |
| 370 | ], |
Stephen Martinis | 6eb8a557 | 2021-03-02 00:23:08 | [diff] [blame] | 371 | 'swarming': { |
| 372 | 'shards': 20, |
| 373 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 374 | }, |
| 375 | 'Win10 Tests x64': { |
| 376 | 'args': [ |
| 377 | '--target', |
Takuto Ikuta | b28b582e | 2021-02-10 01:41:21 | [diff] [blame] | 378 | 'Release_x64', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 379 | ], |
| 380 | 'swarming': { |
| 381 | "shards": 28 |
| 382 | }, |
| 383 | }, |
| 384 | 'Win10 Tests x64 (dbg)': { |
| 385 | 'args': [ |
| 386 | '--debug', |
| 387 | '--target', |
Takuto Ikuta | b28b582e | 2021-02-10 01:41:21 | [diff] [blame] | 388 | 'Debug_x64', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 389 | ], |
| 390 | }, |
Kuan Huang | c93e867 | 2021-06-29 21:13:45 | [diff] [blame] | 391 | 'Win10 Tests x64 20h2': { |
| 392 | 'args': [ |
| 393 | '--target', |
| 394 | 'Release_x64', |
| 395 | ], |
| 396 | 'swarming': { |
| 397 | "shards": 28 |
| 398 | }, |
| 399 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 400 | 'Win7 Tests (dbg)(1)': { |
| 401 | 'args': [ |
| 402 | '--debug', |
| 403 | '--time-out-ms', |
| 404 | '60000' |
| 405 | ], |
| 406 | 'experiment_percentage': 100, |
| 407 | # TODO(kbr): the "Windows-7-SP1" Swarming dimension set is implicit, |
| 408 | # from prefered_os_dimension in |
| 409 | # tools/build/scripts/slave/recipe_modules/swarming/api.py. Ideally, |
| 410 | # Swarming dimensions would be either specified for all testers on the |
| 411 | # waterfall (and therefore, explicitly specified for all tests in the |
| 412 | # generated JSON), or this would be removed, and the implicit one used. |
| 413 | 'swarming': { |
| 414 | 'dimension_sets': [ |
| 415 | { |
| 416 | 'os': 'Windows-7-SP1', |
| 417 | } |
| 418 | ], |
| 419 | }, |
| 420 | }, |
| 421 | # tryserver.chromium.android |
| 422 | 'android_blink_rel': { |
| 423 | 'args': [ |
| 424 | '--release', |
| 425 | '--android', |
| 426 | # TODO(crbug.com/912120): Breakpad was entirely disabled on |
| 427 | # Android. Remove this when it no longer affects Android crash |
| 428 | # log handling. |
| 429 | '--disable-breakpad', |
| 430 | # TODO(crbug.com/875172): run on the real GPU since the |
| 431 | # software fallback, SwiftShader, isn't yet for 32-bit ARM. |
| 432 | '--additional-driver-flag=--use-gpu-in-tests', |
| 433 | ], |
| 434 | }, |
| 435 | 'devtools_frontend_linux_blink_light_rel': { |
| 436 | 'args': [ |
| 437 | 'http/tests/devtools', |
| 438 | ], |
| 439 | 'swarming': { |
| 440 | 'shards': 4, |
| 441 | }, |
| 442 | }, |
| 443 | 'fuchsia-fyi-x64-rel': { |
| 444 | 'args': [ |
| 445 | '--platform=fuchsia', |
| 446 | ], |
| 447 | 'swarming': { |
| 448 | 'shards': 1, |
| 449 | }, |
| 450 | }, |
Mathias Carlen | 30968a6 | 2020-03-31 08:47:04 | [diff] [blame] | 451 | 'linux-autofill-assistant': { |
| 452 | 'args': [ |
| 453 | '--release', |
| 454 | ], |
| 455 | }, |
Yuzu Saijo | 9709bcc | 2020-03-18 09:12:20 | [diff] [blame] | 456 | 'linux-bfcache-rel': { |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 457 | 'args': [ |
Hitoshi Yoshida | 01e12b3 | 2020-11-27 02:47:59 | [diff] [blame] | 458 | '--additional-driver-flag=--enable-features=BackForwardCache:enable_same_site/true', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 459 | '--additional-expectations=../../third_party/blink/web_tests/FlagExpectations/enable-features=BackForwardCache', |
| 460 | ], |
| 461 | }, |
| 462 | 'linux-blink-animation-use-time-delta': { |
| 463 | 'args': [ |
| 464 | '--debug', |
| 465 | ], |
| 466 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 467 | 'linux-blink-heap-concurrent-marking-tsan-rel': { |
| 468 | 'args': [ |
| 469 | '--release', |
| 470 | '--additional-driver-flag=--enable-features=BlinkHeapConcurrentMarking', |
| 471 | ], |
| 472 | }, |
Daniel Libby | 178c983 | 2020-10-08 20:36:14 | [diff] [blame] | 473 | 'linux-blink-web-tests-force-accessibility-rel': { |
| 474 | 'args': [ |
| 475 | '--additional-driver-flag=--force-renderer-accessibility', |
| 476 | ], |
| 477 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 478 | 'linux-code-coverage': { |
| 479 | 'args': [ |
| 480 | '--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw', |
| 481 | ], |
| 482 | 'swarming': { |
| 483 | 'shards': 20, |
| 484 | }, |
| 485 | }, |
Prakhar | da595bf2 | 2021-07-13 17:26:57 | [diff] [blame] | 486 | 'linux-exp-code-coverage': { |
| 487 | 'args': [ |
| 488 | '--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw', |
| 489 | ], |
| 490 | 'swarming': { |
| 491 | 'shards': 20, |
| 492 | }, |
| 493 | }, |
Aaron Gable | 40f79aa | 2020-03-21 01:21:15 | [diff] [blame] | 494 | 'linux-layout-tests-edit-ng': { |
| 495 | 'args': [ |
Yoshifumi Inoue | bebca26 | 2020-04-08 22:03:49 | [diff] [blame] | 496 | '--additional-driver-flag=--enable-blink-features=EditingNG', |
Aaron Gable | 40f79aa | 2020-03-21 01:21:15 | [diff] [blame] | 497 | ], |
| 498 | }, |
Stephanie Kim | 5c7f31d | 2021-04-27 18:00:06 | [diff] [blame] | 499 | 'linux-xenial-rel': { |
| 500 | "args": [ |
| 501 | "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw", |
| 502 | ], |
| 503 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 504 | 'mac10.12-blink-rel-dummy': { |
| 505 | 'swarming': { |
| 506 | 'shards': 20, |
| 507 | }, |
| 508 | }, |
| 509 | 'mac10.13-blink-rel-dummy': { |
| 510 | 'swarming': { |
| 511 | 'shards': 20, |
| 512 | }, |
| 513 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 514 | 'mac10.14-blink-rel-dummy': { |
| 515 | 'swarming': { |
Xinan Lin | d2f9171 | 2021-04-29 21:13:56 | [diff] [blame] | 516 | # Increase timeout and reduce shards. |
| 517 | # See https://crbug.com/1203565. |
| 518 | 'shards': 12, |
| 519 | 'hard_timeout': 1800, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 520 | }, |
| 521 | }, |
Ilia Samsonov | 7efe05e | 2020-05-07 19:00:46 | [diff] [blame] | 522 | 'mac10.15-blink-rel-dummy': { |
| 523 | 'swarming': { |
| 524 | 'shards': 20, |
| 525 | }, |
| 526 | }, |
Ilia Samsonov | dd271c6c2 | 2020-09-08 22:24:44 | [diff] [blame] | 527 | 'mac11.0-blink-rel-dummy': { |
| 528 | 'swarming': { |
Dirk Pranke | 2cc6179 | 2021-06-10 20:24:54 | [diff] [blame] | 529 | 'shards': 12, |
| 530 | 'hard_timeout': 1800, |
Ilia Samsonov | dd271c6c2 | 2020-09-08 22:24:44 | [diff] [blame] | 531 | }, |
| 532 | }, |
Weizhong Xia | dfc98e0 | 2021-04-29 22:39:38 | [diff] [blame] | 533 | 'win10-blink-rel-dummy': { |
| 534 | 'swarming': { |
| 535 | 'hard_timeout': 1200, |
| 536 | }, |
| 537 | }, |
Preethi Mohan | d030de4 | 2021-07-22 21:12:13 | [diff] [blame^] | 538 | 'win10.20h2-blink-rel-dummy': { |
| 539 | 'swarming': { |
| 540 | 'hard_timeout': 1200, |
| 541 | }, |
| 542 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 543 | }, |
| 544 | }, |
John Budorick | ca99585 | 2019-06-26 16:55:55 | [diff] [blame] | 545 | 'breakpad_unittests': { |
| 546 | 'modifications': { |
| 547 | 'android-asan': { |
| 548 | 'args': [ |
| 549 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.asan.breakpad_unittests.filter', |
| 550 | ], |
| 551 | }, |
| 552 | }, |
| 553 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 554 | 'browser_tests': { |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 555 | 'remove_from': [ |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 556 | 'CrWinAsan(dll)', # https://crbug.com/935598 |
Nico Weber | 3af4da7 | 2018-02-27 01:59:41 | [diff] [blame] | 557 | 'linux-win_cross-rel', |
Nico Weber | dae13cd9 | 2018-12-14 13:56:26 | [diff] [blame] | 558 | 'ToTLinuxTSan', # https://crbug.com/368525 |
Zhaoyang Li | 69e2e00 | 2021-02-19 21:57:35 | [diff] [blame] | 559 | # TODO(crbug.com/1171053): Enable the suite in 'Mac10.13 Tests' once it's |
| 560 | # off CQ. |
Gary Tong | d5f5a74 | 2021-01-29 00:01:13 | [diff] [blame] | 561 | 'Mac10.13 Tests', # https://crbug.com/1042757 |
Zhaoyang Li | 69e2e00 | 2021-02-19 21:57:35 | [diff] [blame] | 562 | 'Mac10.15 Tests', # https://crbug.com/1042757 |
Lindsay Pasricha | 8155d05 | 2021-04-22 00:06:43 | [diff] [blame] | 563 | 'Mac10.15 Tests (dbg)', # https://crbug.com/1201386 |
| 564 | 'mac-code-coverage', # https://crbug.com/1201386 |
Nico Weber | d3695968 | 2018-04-12 03:33:46 | [diff] [blame] | 565 | 'Linux TSan Tests', # https://crbug.com/368525 |
Stephen Martinis | e701f5a | 2018-05-04 01:25:11 | [diff] [blame] | 566 | 'Win10 Tests x64 (dbg)', |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 567 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 568 | 'modifications': { |
Nico Weber | 3f91979 | 2020-06-12 23:34:52 | [diff] [blame] | 569 | 'CrWinAsan': { |
| 570 | # These are very slow on the ASAN trybot for some reason. |
| 571 | # crbug.com/794372 |
| 572 | 'swarming': { |
| 573 | 'shards': 40, |
| 574 | }, |
| 575 | }, |
| 576 | 'CrWinAsan(dll)': { |
| 577 | # These are very slow on the ASAN trybot for some reason. |
| 578 | # crbug.com/794372 |
| 579 | 'swarming': { |
| 580 | 'shards': 40, |
| 581 | }, |
| 582 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 583 | 'Linux - Future (dbg)': { # client.v8.chromium |
Yuke Liao | ea70f47 | 2019-12-19 06:03:36 | [diff] [blame] | 584 | 'swarming': { |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 585 | 'shards': 10, |
Yuke Liao | ea70f47 | 2019-12-19 06:03:36 | [diff] [blame] | 586 | }, |
| 587 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 588 | 'Linux ASan LSan Tests (1)': { |
| 589 | # These are very slow on the ASAN trybot for some reason. |
| 590 | # crbug.com/794372 |
Roberto Carrillo | 2c9ec97 | 2019-03-20 03:11:19 | [diff] [blame] | 591 | 'swarming': { |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 592 | 'shards': 40, |
Roberto Carrillo | 2c9ec97 | 2019-03-20 03:11:19 | [diff] [blame] | 593 | }, |
| 594 | }, |
Chris Cunningham | 1d0e9e1 | 2020-02-26 22:56:40 | [diff] [blame] | 595 | 'Linux ASan Tests (sandboxed)': { |
| 596 | 'swarming': { |
John Abd-El-Malek | 3a63161 | 2020-07-08 21:40:41 | [diff] [blame] | 597 | 'shards': 30, # https://crbug.com/1103330 |
Chris Cunningham | 1d0e9e1 | 2020-02-26 22:56:40 | [diff] [blame] | 598 | }, |
| 599 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 600 | 'Linux Chromium OS ASan LSan Tests (1)': { |
| 601 | # These are very slow on the ASAN trybot for some reason. |
| 602 | # crbug.com/794372 |
Roberto Carrillo | 5a5c98dc | 2019-10-30 22:33:51 | [diff] [blame] | 603 | 'swarming': { |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 604 | 'shards': 31, |
Roberto Carrillo | 5a5c98dc | 2019-10-30 22:33:51 | [diff] [blame] | 605 | }, |
| 606 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 607 | 'Linux ChromiumOS MSan Tests': { |
| 608 | # These are very slow on the Chrome OS MSAN trybot for some reason. |
| 609 | # crbug.com/865455 |
Kenneth Russell | 56a3e86 | 2017-12-08 03:11:34 | [diff] [blame] | 610 | 'swarming': { |
Ben Pastene | 44221d3 | 2020-05-21 23:38:36 | [diff] [blame] | 611 | 'shards': 32, |
Kenneth Russell | 56a3e86 | 2017-12-08 03:11:34 | [diff] [blame] | 612 | }, |
Ben Pastene | 44221d3 | 2020-05-21 23:38:36 | [diff] [blame] | 613 | 'args': [ |
| 614 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.msan.browser_tests.oobe_negative.filter', |
| 615 | ], |
Kenneth Russell | 56a3e86 | 2017-12-08 03:11:34 | [diff] [blame] | 616 | }, |
John Budorick | 614f91a | 2020-03-30 20:34:55 | [diff] [blame] | 617 | 'Linux Tests (dbg)(1)': { |
| 618 | # crbug.com/1066161 |
| 619 | 'swarming': { |
| 620 | 'shards': 20, |
| 621 | }, |
| 622 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 623 | 'Mac ASan 64 Tests (1)': { |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 624 | 'swarming': { |
Stephen Martinis | cd3c383 | 2020-11-19 22:01:24 | [diff] [blame] | 625 | 'shards': 30, |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 626 | }, |
Lindsay Pasricha | 8155d05 | 2021-04-22 00:06:43 | [diff] [blame] | 627 | # crbug.com/1196416 |
| 628 | 'args': [ |
| 629 | '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac-rel.browser_tests.filter', |
| 630 | ], |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 631 | }, |
Lindsay Pasricha | 76f44d2 | 2021-04-07 16:16:26 | [diff] [blame] | 632 | 'Mac10.15 Tests': { |
| 633 | # crbug.com/1042757 |
| 634 | 'swarming': { |
| 635 | 'dimension_sets': [ |
| 636 | { |
| 637 | # These shards are liable to time out when running on macmini7,1. |
| 638 | 'cores': '8|12', |
| 639 | } |
| 640 | ], |
| 641 | }, |
| 642 | # crbug.com/1196416 |
| 643 | 'args': [ |
| 644 | '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac-rel.browser_tests.filter', |
| 645 | ], |
| 646 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 647 | 'ToTWin(dbg)': { |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 648 | 'swarming': { |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 649 | 'shards': 20, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 650 | }, |
| 651 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 652 | 'ToTWin64(dbg)': { |
Kenneth Russell | 8ceeabf | 2017-12-11 17:53:28 | [diff] [blame] | 653 | 'swarming': { |
| 654 | 'shards': 20, |
| 655 | }, |
| 656 | }, |
Kenneth Russell | 6c83d21 | 2018-07-27 20:52:59 | [diff] [blame] | 657 | 'Win10 Tests x64': { |
| 658 | # crbug.com/868082 |
| 659 | 'args': [ |
| 660 | '--disable-features=WebRTC-H264WithOpenH264FFmpeg', |
| 661 | ], |
Takuto Ikuta | c9c269a | 2019-01-10 22:40:25 | [diff] [blame] | 662 | 'swarming': { |
| 663 | # This is for slow test execution that often becomes a critical path of |
| 664 | # swarming jobs. crbug.com/868114 |
| 665 | 'shards': 15, |
| 666 | } |
Kenneth Russell | 6c83d21 | 2018-07-27 20:52:59 | [diff] [blame] | 667 | }, |
Kuan Huang | c93e867 | 2021-06-29 21:13:45 | [diff] [blame] | 668 | 'Win10 Tests x64 20h2': { |
| 669 | # crbug.com/868082 |
| 670 | 'args': [ |
| 671 | '--disable-features=WebRTC-H264WithOpenH264FFmpeg', |
| 672 | ], |
| 673 | 'swarming': { |
| 674 | # This is for slow test execution that often becomes a critical path of |
| 675 | # swarming jobs. crbug.com/868114 |
| 676 | 'shards': 15, |
| 677 | } |
| 678 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 679 | 'Win7 Tests (1)': { |
| 680 | # This is for slow test execution that often becomes a critical path of |
| 681 | # swarming jobs. crbug.com/868114 |
| 682 | 'swarming': { |
| 683 | 'shards': 15, |
| 684 | }, |
| 685 | }, |
| 686 | 'Win7 Tests (dbg)(1)': { |
Pavol Marko | c579e07 | 2019-12-05 22:42:02 | [diff] [blame] | 687 | 'swarming': { |
| 688 | 'shards': 20, |
| 689 | }, |
| 690 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 691 | 'linux-chromeos-chrome': { |
| 692 | # TODO(https://crbug.com/932269): Promote out of experiment when the |
| 693 | # tests are green. |
| 694 | 'args': [ |
| 695 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.browser_tests.filter', |
| 696 | ], |
| 697 | }, |
| 698 | 'linux-chromeos-code-coverage': { |
Nico Weber | 0c2861b | 2018-12-14 18:05:16 | [diff] [blame] | 699 | 'swarming': { |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 700 | 'shards': 50, |
| 701 | }, |
| 702 | }, |
| 703 | 'linux-chromeos-dbg': { |
| 704 | 'swarming': { |
Garrett Beaty | d81c918 | 2021-05-12 02:52:50 | [diff] [blame] | 705 | 'shards': 40, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 706 | }, |
| 707 | }, |
Jacob Kopczynski | 3a555bd3 | 2020-12-10 01:41:16 | [diff] [blame] | 708 | 'linux-chromeos-ltc': { |
| 709 | 'args': [ |
| 710 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.browser_tests.filter', |
| 711 | ], |
| 712 | }, |
| 713 | 'linux-chromeos-lts': { |
| 714 | 'args': [ |
Noel Gordon | 2e32361 | 2021-04-14 21:51:36 | [diff] [blame] | 715 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.browser_tests.filter', |
Jacob Kopczynski | 3a555bd3 | 2020-12-10 01:41:16 | [diff] [blame] | 716 | ], |
| 717 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 718 | 'linux-chromeos-rel': { |
| 719 | 'swarming': { |
| 720 | 'shards': 20, |
Stephanie Kim | e9008f7 | 2020-03-05 23:01:16 | [diff] [blame] | 721 | 'dimension_sets': [ |
| 722 | { |
| 723 | 'kvm': '1', |
| 724 | }, |
| 725 | ], |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 726 | }, |
| 727 | }, |
| 728 | 'linux-code-coverage': { |
Yuke Liao | 58e1d20 | 2020-03-20 23:02:01 | [diff] [blame] | 729 | 'args': [ |
| 730 | '--no-sandbox', |
| 731 | ], |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 732 | 'swarming': { |
| 733 | 'shards': 50, |
| 734 | }, |
| 735 | }, |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 736 | 'linux-lacros-code-coverage': { |
| 737 | 'args': [ |
Ben Pastene | d1b2fd19 | 2021-05-11 19:10:18 | [diff] [blame] | 738 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.browser_tests.filter', |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 739 | ], |
| 740 | }, |
Yuke Liao | d75285f9 | 2020-08-18 18:33:56 | [diff] [blame] | 741 | 'linux-lacros-rel': { |
| 742 | 'args': [ |
Ben Pastene | d1b2fd19 | 2021-05-11 19:10:18 | [diff] [blame] | 743 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.browser_tests.filter', |
Yuke Liao | d75285f9 | 2020-08-18 18:33:56 | [diff] [blame] | 744 | ], |
| 745 | }, |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 746 | 'linux-lacros-tester-rel': { |
| 747 | 'args': [ |
Ben Pastene | d1b2fd19 | 2021-05-11 19:10:18 | [diff] [blame] | 748 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.browser_tests.filter', |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 749 | ], |
| 750 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 751 | 'linux-trusty-rel': { |
| 752 | 'args': [ |
John Budorick | 79ec901 | 2020-01-08 21:56:31 | [diff] [blame] | 753 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux_trusty_rel.browser_tests.filter', |
| 754 | ], |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 755 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 756 | 'win-asan': { |
Nico Weber | 3f91979 | 2020-06-12 23:34:52 | [diff] [blame] | 757 | # These are very slow on the ASAN trybot for some reason. |
| 758 | # crbug.com/794372 |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 759 | 'swarming': { |
Nico Weber | 3f91979 | 2020-06-12 23:34:52 | [diff] [blame] | 760 | 'shards': 40, |
Nico Weber | 0c2861b | 2018-12-14 18:05:16 | [diff] [blame] | 761 | }, |
| 762 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 763 | }, |
| 764 | }, |
Maksim Sisov | 4af9c03 | 2020-06-12 12:43:11 | [diff] [blame] | 765 | 'browser_tests_wayland': { |
| 766 | 'modifications': { |
Maksim Sisov | 69730f8 | 2020-11-11 12:09:13 | [diff] [blame] | 767 | # CQ tester. |
Maksim Sisov | 4af9c03 | 2020-06-12 12:43:11 | [diff] [blame] | 768 | 'Linux Ozone Tester (Wayland)': { |
| 769 | 'args': [ |
| 770 | '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.wayland_browser_tests.filter', |
| 771 | ], |
| 772 | }, |
Maksim Sisov | 69730f8 | 2020-11-11 12:09:13 | [diff] [blame] | 773 | # CI tester. |
| 774 | 'Linux Tester (Ozone Wayland)': { |
| 775 | 'args': [ |
| 776 | '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.wayland_browser_tests.filter', |
| 777 | ], |
| 778 | }, |
Maksim Sisov | 4af9c03 | 2020-06-12 12:43:11 | [diff] [blame] | 779 | }, |
| 780 | }, |
Erik Chen | 681dc028 | 2019-11-26 22:54:49 | [diff] [blame] | 781 | 'cc_unittests': { |
| 782 | 'modifications': { |
Erik Chen | 681dc028 | 2019-11-26 22:54:49 | [diff] [blame] | 783 | 'Linux TSan Tests': { |
| 784 | 'swarming': { |
| 785 | 'shards': 3, |
| 786 | }, |
| 787 | }, |
Haiyang Pan | cf76586 | 2021-03-18 20:39:15 | [diff] [blame] | 788 | 'android-11-x86-fyi-rel': { |
| 789 | # https://crbug.com/1039860 |
| 790 | 'args': [ |
| 791 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.cc_unittests.filter', |
| 792 | ], |
| 793 | }, |
Haiyang Pan | 2486dcb | 2020-09-18 17:53:06 | [diff] [blame] | 794 | 'android-marshmallow-x86-rel-non-cq': { |
John Budorick | fa8f1da9 | 2020-01-15 18:11:38 | [diff] [blame] | 795 | # https://crbug.com/1039860 |
| 796 | 'args': [ |
| 797 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.cc_unittests.filter', |
| 798 | ], |
| 799 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 800 | 'android-pie-x86-rel': { |
John Budorick | fa8f1da9 | 2020-01-15 18:11:38 | [diff] [blame] | 801 | # https://crbug.com/1039860 |
| 802 | 'args': [ |
| 803 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.cc_unittests.filter', |
| 804 | ], |
| 805 | }, |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 806 | 'fuchsia-code-coverage': { |
| 807 | 'swarming': { |
| 808 | 'shards': 4, |
| 809 | }, |
| 810 | }, |
Erik Chen | 681dc028 | 2019-11-26 22:54:49 | [diff] [blame] | 811 | }, |
| 812 | }, |
Prakhar | 94f444a | 2020-10-08 07:30:08 | [diff] [blame] | 813 | 'check_static_initializers': { |
| 814 | 'modifications': { |
| 815 | 'Mac Builder': { |
| 816 | 'args': [ |
| 817 | '--allow-coverage-initializer', |
| 818 | ], |
| 819 | }, |
| 820 | }, |
| 821 | }, |
Dirk Pranke | 1b76709 | 2017-12-07 04:44:23 | [diff] [blame] | 822 | 'checkbins': { |
| 823 | 'remove_from': [ |
Stephen Martinis | 47d7713 | 2019-04-24 23:51:33 | [diff] [blame] | 824 | 'linux-archive-dbg', |
| 825 | 'linux-archive-rel', |
| 826 | 'mac-archive-dbg', |
| 827 | 'mac-archive-rel', |
Stephen Martinis | 01cb322 | 2021-05-13 23:07:09 | [diff] [blame] | 828 | 'mac-arm64-archive-dbg', |
| 829 | 'mac-arm64-archive-rel', |
Dirk Pranke | 1b76709 | 2017-12-07 04:44:23 | [diff] [blame] | 830 | ], |
| 831 | }, |
Ben Pastene | 7a05a8f | 2020-11-12 17:25:51 | [diff] [blame] | 832 | 'chrome_all_tast_tests': { |
| 833 | 'modifications': { |
| 834 | 'chromeos-betty-pi-arc-cfi-thin-lto-chrome': { |
| 835 | 'args': [ |
| 836 | # This bot sets symbol_level=2, which doesn't fit inside a normal VM. |
| 837 | '--strip-chrome', |
| 838 | ], |
| 839 | }, |
| 840 | }, |
| 841 | }, |
Andrew Luo | d252791ac | 2019-10-15 00:28:13 | [diff] [blame] | 842 | 'chrome_java_test_pagecontroller_tests': { |
Haiyang Pan | fbd2b48 | 2020-09-23 23:41:25 | [diff] [blame] | 843 | 'modifications': { |
| 844 | 'android-pie-arm64-rel': { |
| 845 | # TODO(crbug.com/1111436): Move this back to walleye if/when additional |
| 846 | # capacity has been deployed. |
| 847 | 'swarming': { |
| 848 | 'dimension_sets': [ |
| 849 | { |
| 850 | 'device_type': 'sailfish', |
| 851 | }, |
| 852 | ], |
| 853 | }, |
| 854 | }, |
| 855 | }, |
Andrew Luo | d252791ac | 2019-10-15 00:28:13 | [diff] [blame] | 856 | }, |
Haiyang Pan | 6e42a56 | 2021-01-29 21:48:05 | [diff] [blame] | 857 | 'chrome_modern_public_bundle_fake_modules_smoke_test': { |
| 858 | 'remove_from': [ |
| 859 | # Runs on android-marshmallow-x86-rel already (crbug.com/1127110) |
| 860 | 'android-marshmallow-arm64-rel', |
| 861 | ], |
| 862 | }, |
Haiyang Pan | b4baf93 | 2021-01-26 03:35:01 | [diff] [blame] | 863 | 'chrome_modern_public_bundle_smoke_test': { |
Haiyang Pan | 6e42a56 | 2021-01-29 21:48:05 | [diff] [blame] | 864 | 'remove_from': [ |
| 865 | # Runs on android-marshmallow-x86-rel already (crbug.com/1127110) |
| 866 | 'android-marshmallow-arm64-rel', |
| 867 | ], |
Haiyang Pan | b4baf93 | 2021-01-26 03:35:01 | [diff] [blame] | 868 | }, |
Yun Liu | 7cfd28a | 2019-10-30 01:57:12 | [diff] [blame] | 869 | 'chrome_public_smoke_test': { |
| 870 | 'remove_from': [ |
Ben Joyce | 02dc809 | 2021-03-04 21:48:19 | [diff] [blame] | 871 | 'android-code-coverage-native', # Does not generate profraw data. |
Ben Joyce | 46ca601 | 2021-03-31 19:19:25 | [diff] [blame] | 872 | 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data. |
Haiyang Pan | b4baf93 | 2021-01-26 03:35:01 | [diff] [blame] | 873 | # Runs on android-marshmallow-x86-rel already (crbug.com/1127110#c21) |
| 874 | 'android-marshmallow-arm64-rel', |
Yun Liu | 7cfd28a | 2019-10-30 01:57:12 | [diff] [blame] | 875 | ], |
| 876 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 877 | 'chrome_public_test_apk': { |
John Budorick | 27d2d44e | 2019-05-20 20:26:09 | [diff] [blame] | 878 | 'remove_from': [ |
| 879 | 'android-asan', # https://crbug.com/964562 |
Ben Joyce | 02dc809 | 2021-03-04 21:48:19 | [diff] [blame] | 880 | 'android-code-coverage-native', # Does not generate profraw data. |
Haiyang Pan | a3ff55ae | 2020-04-23 18:26:54 | [diff] [blame] | 881 | 'android-lollipop-arm-rel', # https://crbug.com/1060245 |
Ben Joyce | 46ca601 | 2021-03-31 19:19:25 | [diff] [blame] | 882 | 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data. |
Haiyang Pan | 2c95fc2 | 2021-02-18 22:52:13 | [diff] [blame] | 883 | |
| 884 | # Runs on android-marshmallow-x86-rel already (crbug.com/1127110) |
| 885 | 'android-marshmallow-arm64-rel', |
| 886 | 'android-marshmallow-x86-rel-non-cq', |
John Budorick | 27d2d44e | 2019-05-20 20:26:09 | [diff] [blame] | 887 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 888 | 'modifications': { |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 889 | 'Marshmallow 64 bit Tester': { |
| 890 | 'swarming': { |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 891 | 'shards': 14, |
| 892 | }, |
| 893 | }, |
Arthur Wang | 5dd7b07c | 2020-04-04 01:05:22 | [diff] [blame] | 894 | 'Marshmallow Tablet Tester': { |
| 895 | 'args': [ |
| 896 | '--timeout-scale', |
| 897 | '2.0', |
| 898 | ], |
| 899 | }, |
Ben Pastene | c73e96e9 | 2018-07-12 01:40:35 | [diff] [blame] | 900 | 'Oreo Phone Tester': { |
bsheedy | 0183346 | 2018-12-07 01:05:57 | [diff] [blame] | 901 | # TODO(https://crbug.com/884413): Re-enable this once the tests are |
| 902 | # either passing or there is more capacity. |
| 903 | 'experiment_percentage': 0, |
Ben Pastene | c73e96e9 | 2018-07-12 01:40:35 | [diff] [blame] | 904 | }, |
Haiyang Pan | b80557c | 2021-03-13 03:01:44 | [diff] [blame] | 905 | 'android-11-x86-fyi-rel': { |
| 906 | 'args': [ |
Haiyang Pan | adcf343 | 2021-06-18 03:23:23 | [diff] [blame] | 907 | '--avd-config=../../tools/android/avd/proto/generic_playstore_android30.textpb', |
Haiyang Pan | b80557c | 2021-03-13 03:01:44 | [diff] [blame] | 908 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.chrome_public_test_apk.filter', |
Haiyang Pan | 1d5ca286 | 2021-04-01 22:21:09 | [diff] [blame] | 909 | '--timeout-scale=2.0', |
Haiyang Pan | b80557c | 2021-03-13 03:01:44 | [diff] [blame] | 910 | ], |
Haiyang Pan | 51450ab | 2021-03-23 00:48:57 | [diff] [blame] | 911 | # TODO(crbug.com/1137474): Revisit the shard number once failed tests |
| 912 | # are fixed. |
| 913 | 'swarming': { |
| 914 | 'shards': 30, |
Haiyang Pan | adcf343 | 2021-06-18 03:23:23 | [diff] [blame] | 915 | 'named_caches': [ |
| 916 | { |
| 917 | 'name': 'avd_generic_playstore_android30', |
| 918 | 'path': '.android', |
| 919 | }, |
| 920 | { |
| 921 | 'name': 'system_images_android_30_google_apis_playstore_x86', |
| 922 | 'path': '.emulator_sdk', |
| 923 | }, |
| 924 | ], |
| 925 | 'dimension_sets': [ |
| 926 | { |
| 927 | 'machine_type': 'e2-standard-8', # use 8-core to shorten runtime |
| 928 | }, |
| 929 | ], |
Haiyang Pan | 51450ab | 2021-03-23 00:48:57 | [diff] [blame] | 930 | }, |
Haiyang Pan | b80557c | 2021-03-13 03:01:44 | [diff] [blame] | 931 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 932 | 'android-arm64-proguard-rel': { |
| 933 | 'swarming': { |
| 934 | 'shards': 25, |
| 935 | }, |
| 936 | }, |
Haiyang Pan | 1ad3bb03 | 2020-04-24 23:52:03 | [diff] [blame] | 937 | 'android-lollipop-arm-rel-swarming': { |
Brian Sheedy | 44a7a003 | 2020-04-16 19:20:57 | [diff] [blame] | 938 | 'swarming': { |
Brian Sheedy | 180c2dd | 2020-04-22 19:34:31 | [diff] [blame] | 939 | 'service_account': '[email protected]' |
Brian Sheedy | 44a7a003 | 2020-04-16 19:20:57 | [diff] [blame] | 940 | }, |
| 941 | }, |
Brian Sheedy | 44a7a003 | 2020-04-16 19:20:57 | [diff] [blame] | 942 | 'android-marshmallow-arm64-rel-swarming': { |
| 943 | 'swarming': { |
Brian Sheedy | 180c2dd | 2020-04-22 19:34:31 | [diff] [blame] | 944 | 'service_account': '[email protected]' |
Brian Sheedy | 44a7a003 | 2020-04-16 19:20:57 | [diff] [blame] | 945 | }, |
| 946 | }, |
Haiyang Pan | 742760c | 2021-02-12 03:21:41 | [diff] [blame] | 947 | 'android-marshmallow-x86-rel': { |
| 948 | 'args': [ |
| 949 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_m.chrome_public_test_apk.filter', |
| 950 | ], |
| 951 | 'swarming': { |
| 952 | # TODO(crbug.com/1127110): Revisit shards and machine_type if there |
| 953 | # are n2 machines available in the test pool. |
| 954 | 'shards': 25, |
| 955 | 'dimension_sets': [ |
| 956 | { |
| 957 | 'machine_type': 'e2-standard-8', # use 8-core to shorten runtime |
| 958 | }, |
| 959 | ], |
| 960 | }, |
Haiyang Pan | 37fbd7a4 | 2020-06-03 03:27:37 | [diff] [blame] | 961 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 962 | 'android-pie-arm64-rel': { |
| 963 | 'args': [ |
| 964 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_arm64_rel.chrome_public_test_apk.filter', # https://crbug.com/1010211 |
| 965 | ], |
Haiyang Pan | 43640ee | 2020-02-13 01:38:00 | [diff] [blame] | 966 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 967 | 'android-pie-x86-rel': { |
Haiyang Pan | 43640ee | 2020-02-13 01:38:00 | [diff] [blame] | 968 | 'args': [ |
Haiyang Pan | 7137307 | 2020-03-02 19:57:49 | [diff] [blame] | 969 | '--avd-config=../../tools/android/avd/proto/generic_playstore_android28.textpb', |
| 970 | # https://crbug.com/1046059 |
Haiyang Pan | 23f64f5 | 2020-06-04 01:23:32 | [diff] [blame] | 971 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_p.chrome_public_test_apk.filter', |
Haiyang Pan | 43640ee | 2020-02-13 01:38:00 | [diff] [blame] | 972 | ], |
Haiyang Pan | 7137307 | 2020-03-02 19:57:49 | [diff] [blame] | 973 | 'swarming': { |
Haiyang Pan | 2c43830 | 2021-06-11 23:50:38 | [diff] [blame] | 974 | # soft affinity so that bots with caches will be picked first |
| 975 | 'optional_dimensions': { |
| 976 | '60': [ |
| 977 | { |
| 978 | 'caches': 'avd_generic_playstore_android28', |
| 979 | } |
| 980 | ], |
| 981 | }, |
Haiyang Pan | 7137307 | 2020-03-02 19:57:49 | [diff] [blame] | 982 | 'named_caches': [ |
| 983 | { |
| 984 | 'name': 'avd_generic_playstore_android28', |
| 985 | 'path': '.android', |
| 986 | }, |
| 987 | { |
| 988 | 'name': 'system_images_android_28_google_apis_playstore_x86', |
| 989 | 'path': '.emulator_sdk', |
| 990 | }, |
Haiyang Pan | 98040282 | 2020-10-07 23:24:56 | [diff] [blame] | 991 | ], |
| 992 | 'dimension_sets': [ |
| 993 | { |
| 994 | 'machine_type': 'n1-standard-8', # use 8-core to shorten runtime |
| 995 | }, |
| 996 | ], |
Sky Malice | 50f0883 | 2021-07-17 22:37:04 | [diff] [blame] | 997 | # See https://crbug.com/1230192, runs of 40-60 minutes at 20 shards. |
| 998 | 'shards': 30, |
Haiyang Pan | 7137307 | 2020-03-02 19:57:49 | [diff] [blame] | 999 | }, |
John Budorick | 3400947 | 2018-04-03 17:38:44 | [diff] [blame] | 1000 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1001 | }, |
| 1002 | }, |
| 1003 | 'chrome_public_test_vr_apk': { |
Nico Weber | b0b3f586 | 2018-07-13 18:45:15 | [diff] [blame] | 1004 | 'remove_from': [ |
Brian Sheedy | 29ac569 | 2021-01-06 17:41:49 | [diff] [blame] | 1005 | # Decided to no longer run VR tests on L, crbug.com/1159619. |
| 1006 | 'Lollipop Phone Tester', |
bsheedy | 410dd7c | 2018-06-15 22:42:09 | [diff] [blame] | 1007 | 'Lollipop Tablet Tester', |
| 1008 | 'Marshmallow Tablet Tester', |
Brian Sheedy | 29ac569 | 2021-01-06 17:41:49 | [diff] [blame] | 1009 | 'android-lollipop-arm-rel', |
Haiyang Pan | d12ff546 | 2021-07-12 17:29:02 | [diff] [blame] | 1010 | |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 1011 | 'android-pie-arm64-rel', # https://crbug.com/1010211 |
bsheedy | df58b4e | 2018-11-01 19:42:16 | [diff] [blame] | 1012 | 'ToTAndroid', |
John Budorick | 27d2d44e | 2019-05-20 20:26:09 | [diff] [blame] | 1013 | 'android-asan', # https://crbug.com/964562 |
Ben Joyce | 02dc809 | 2021-03-04 21:48:19 | [diff] [blame] | 1014 | 'android-code-coverage-native', # Does not generate profraw data. |
Ben Joyce | 46ca601 | 2021-03-31 19:19:25 | [diff] [blame] | 1015 | 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data. |
bsheedy | 410dd7c | 2018-06-15 22:42:09 | [diff] [blame] | 1016 | ], |
Haiyang Pan | 363c59a | 2020-07-23 05:47:04 | [diff] [blame] | 1017 | 'modifications': { |
Brian Sheedy | 4dc4a6f | 2020-09-17 22:18:50 | [diff] [blame] | 1018 | # Use "--remove-system-package" according to crbug.com/931947#c1 |
Haiyang Pan | 363c59a | 2020-07-23 05:47:04 | [diff] [blame] | 1019 | 'android-nougat-arm64-rel': { |
| 1020 | 'args': [ |
Brian Sheedy | 4dc4a6f | 2020-09-17 22:18:50 | [diff] [blame] | 1021 | # Applying a mixin via an exception doesn't work, so manually apply |
| 1022 | # the same arguments as the 'vr_instrumentation_test' mixin. |
| 1023 | '--remove-system-package=com.google.vr.vrcore', |
| 1024 | '--additional-apk=//third_party/gvr-android-sdk/test-apks/vr_services/vr_services_current.apk', |
| 1025 | ], |
Brian Sheedy | 4a652b7 | 2020-12-17 23:59:49 | [diff] [blame] | 1026 | }, |
Haiyang Pan | 363c59a | 2020-07-23 05:47:04 | [diff] [blame] | 1027 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1028 | }, |
bsheedy | 75a4dd5 | 2018-11-27 23:24:30 | [diff] [blame] | 1029 | 'chrome_public_test_vr_apk-vega': { |
| 1030 | 'modifications': { |
bsheedy | 75a4dd5 | 2018-11-27 23:24:30 | [diff] [blame] | 1031 | 'Oreo Phone Tester': { |
| 1032 | 'swarming': { |
| 1033 | 'dimension_sets': [ |
| 1034 | { |
| 1035 | 'device_os': 'OVR1.180808.003', |
| 1036 | 'device_type': 'vega', |
| 1037 | 'os': 'Android', |
| 1038 | }, |
| 1039 | ], |
| 1040 | }, |
| 1041 | } |
| 1042 | } |
| 1043 | }, |
Rakib M. Hasan | a56be79 | 2021-03-15 21:14:40 | [diff] [blame] | 1044 | 'chrome_public_wpt': { |
| 1045 | 'modifications': { |
| 1046 | 'android-web-platform-pie-x86-fyi-rel': { |
| 1047 | 'swarming': { |
| 1048 | 'dimension_sets': [ |
| 1049 | { |
| 1050 | 'machine_type': 'n1-standard-8', |
| 1051 | }, |
| 1052 | ], |
| 1053 | 'shards': 18, |
| 1054 | }, |
| 1055 | }, |
| 1056 | }, |
| 1057 | }, |
Ian Struiksma | eb285db0 | 2020-10-20 22:19:34 | [diff] [blame] | 1058 | 'chrome_sizes': { |
| 1059 | 'modifications': { |
Yuke Liao | 97568030 | 2021-02-18 18:34:54 | [diff] [blame] | 1060 | 'lacros-amd64-generic-chrome': { |
| 1061 | 'swarming': { |
| 1062 | 'dimension_sets': [ |
| 1063 | { |
Yuke Liao | 31225ee3 | 2021-03-17 23:21:33 | [diff] [blame] | 1064 | 'cpu': 'x86-64', |
Yuke Liao | 97568030 | 2021-02-18 18:34:54 | [diff] [blame] | 1065 | 'os': 'Ubuntu-16.04', |
| 1066 | }, |
| 1067 | ], |
| 1068 | }, |
| 1069 | }, |
Ian Struiksma | eb285db0 | 2020-10-20 22:19:34 | [diff] [blame] | 1070 | 'win-chrome': { |
| 1071 | 'swarming': { |
| 1072 | # TODO(crbug.com/1124829): Remove this exception once pool |
| 1073 | # chrome.tests is migrated to 1909. |
| 1074 | 'dimension_sets': [ |
| 1075 | { |
| 1076 | 'os': 'Windows-10-15063', |
| 1077 | }, |
| 1078 | ], |
| 1079 | }, |
| 1080 | }, |
| 1081 | 'win64-chrome': { |
| 1082 | 'swarming': { |
| 1083 | # TODO(crbug.com/1124829): Remove this exception once pool |
| 1084 | # chrome.tests is migrated to 1909. |
| 1085 | 'dimension_sets': [ |
| 1086 | { |
| 1087 | 'os': 'Windows-10-15063', |
| 1088 | }, |
| 1089 | ], |
| 1090 | }, |
| 1091 | }, |
| 1092 | }, |
| 1093 | }, |
Takuto Ikuta | 1b749b90 | 2019-04-11 18:05:53 | [diff] [blame] | 1094 | 'chromedriver_py_tests': { |
| 1095 | 'remove_from': [ |
| 1096 | # Timeout happens sometimes (crbug.com/951799). |
Takuto Ikuta | 1b749b90 | 2019-04-11 18:05:53 | [diff] [blame] | 1097 | 'Win10 Tests x64 (dbg)', |
| 1098 | ], |
| 1099 | }, |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 1100 | 'components_browsertests': { |
Chong Gu | 0ed5dcda | 2021-07-15 21:26:11 | [diff] [blame] | 1101 | 'remove_from': [ |
| 1102 | 'fuchsia-fyi-arm64-rel', # https://crbug.com/961457 |
| 1103 | 'fuchsia-fyi-x64-rel', # https://crbug.com/961457 |
| 1104 | ], |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 1105 | 'modifications': { |
| 1106 | 'android-11-x86-fyi-rel': { |
| 1107 | 'swarming': { |
| 1108 | 'shards': 2, |
| 1109 | }, |
| 1110 | }, |
| 1111 | }, |
| 1112 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1113 | 'components_unittests': { |
Yun Liu | 3e759dbb | 2019-11-01 19:25:52 | [diff] [blame] | 1114 | 'remove_from': [ |
Garrett Beaty | 47a2d80 | 2020-11-10 20:50:53 | [diff] [blame] | 1115 | # https://crbug.com/1147531 - covered on lollipop |
| 1116 | 'android-marshmallow-arm64-rel', |
Stephen Roe | ac49597 | 2020-02-25 23:32:41 | [diff] [blame] | 1117 | 'Fuchsia ARM64', # https://crbug.com/961457 |
Yun Liu | 16394ab3 | 2019-11-19 16:37:57 | [diff] [blame] | 1118 | 'Fuchsia x64', # https://crbug.com/961457 |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 1119 | 'fuchsia-code-coverage', # https://crbug.com/961457 |
Stephen Roe | 2cfe780f | 2020-07-13 21:52:51 | [diff] [blame] | 1120 | 'fuchsia-fyi-arm64-dbg', # https://crbug.com/961457 |
Stephen Roe | 45beae9 | 2021-05-27 23:26:32 | [diff] [blame] | 1121 | 'fuchsia-fyi-arm64-femu', # https://crbug.com/961457 |
Kevin Marshall | ce2afe1b | 2019-12-06 00:49:21 | [diff] [blame] | 1122 | 'fuchsia-fyi-x64-dbg', # https://crbug.com/961457 |
Chong Gu | 75af969a | 2021-03-22 14:46:14 | [diff] [blame] | 1123 | 'ToTFuchsia x64', # https://crbug.com/961457 |
| 1124 | 'ToTFuchsiaOfficial', # https://crbug.com/961457 |
Yun Liu | 3e759dbb | 2019-11-01 19:25:52 | [diff] [blame] | 1125 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1126 | 'modifications': { |
John Budorick | 5052d55 | 2017-12-13 02:59:34 | [diff] [blame] | 1127 | 'Linux ASan LSan Tests (1)': { |
| 1128 | # These are very slow on the ASAN trybot for some reason. |
| 1129 | # crbug.com/794372 |
| 1130 | 'swarming': { |
| 1131 | 'shards': 5, |
| 1132 | }, |
| 1133 | }, |
Takuto Ikuta | 54671d97 | 2018-07-19 19:06:35 | [diff] [blame] | 1134 | 'Linux Chromium OS ASan LSan Tests (1)': { |
| 1135 | # These are very slow on the ASAN trybot for some reason. |
| 1136 | # crbug.com/794372 |
| 1137 | 'swarming': { |
| 1138 | 'shards': 5, |
| 1139 | }, |
| 1140 | }, |
Erik Chen | 681dc028 | 2019-11-26 22:54:49 | [diff] [blame] | 1141 | 'Linux TSan Tests': { |
| 1142 | 'swarming': { |
| 1143 | 'shards': 2, |
| 1144 | }, |
| 1145 | }, |
Haiyang Pan | 799282f | 2021-03-25 19:38:31 | [diff] [blame] | 1146 | 'android-11-x86-fyi-rel': { |
| 1147 | 'args': [ |
| 1148 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.components_unittests.filter', |
| 1149 | ], |
| 1150 | }, |
Omer Katz | 7d2be65 | 2020-01-22 18:13:46 | [diff] [blame] | 1151 | 'linux-blink-heap-concurrent-marking-tsan-rel': { |
| 1152 | 'swarming': { |
| 1153 | 'shards': 2, |
| 1154 | }, |
| 1155 | }, |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 1156 | # https://crbug.com/1111979, |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 1157 | 'linux-lacros-code-coverage': { |
| 1158 | 'args': [ |
| 1159 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.components_unittests.filter', |
| 1160 | ], |
| 1161 | }, |
| 1162 | # https://crbug.com/1111979, |
Sven Zheng | 19767e5 | 2020-08-24 23:33:40 | [diff] [blame] | 1163 | 'linux-lacros-rel': { |
| 1164 | 'args': [ |
Yuke Liao | 56a437dd | 2021-05-05 04:53:40 | [diff] [blame] | 1165 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.components_unittests.filter', |
Sven Zheng | 19767e5 | 2020-08-24 23:33:40 | [diff] [blame] | 1166 | ], |
| 1167 | }, |
| 1168 | # https://crbug.com/1111979, |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 1169 | 'linux-lacros-tester-rel': { |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 1170 | 'args': [ |
Yuke Liao | 56a437dd | 2021-05-05 04:53:40 | [diff] [blame] | 1171 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.components_unittests.filter', |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 1172 | ], |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 1173 | }, |
| 1174 | }, |
Sven Zheng | 577fe5ff | 2020-08-03 22:06:44 | [diff] [blame] | 1175 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1176 | 'content_browsertests': { |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 1177 | 'remove_from': [ |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 1178 | 'CrWinAsan(dll)', # https://crbug.com/935598 |
Haiyang Pan | 62a7ae5 | 2020-11-19 23:54:55 | [diff] [blame] | 1179 | 'android-lollipop-arm-rel', # crbug.com/1133002 |
Chong Gu | 0ed5dcda | 2021-07-15 21:26:11 | [diff] [blame] | 1180 | 'android-marshmallow-arm64-rel', # http://crbug.com/1060245#c30: due to low utility and capacity. |
| 1181 | 'fuchsia-fyi-arm64-rel', # https://crbug.com/1164534 |
| 1182 | 'fuchsia-fyi-x64-rel', # https://crbug.com/1164534 |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 1183 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1184 | 'modifications': { |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 1185 | 'Cast Audio Linux': { |
| 1186 | 'args': [ |
Nico Weber | 02f3039 | 2018-07-16 18:39:43 | [diff] [blame] | 1187 | '--test-launcher-filter-file=../../testing/buildbot/filters/cast-linux.content_browsertests.filter', |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 1188 | ], |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 1189 | }, |
| 1190 | 'Cast Linux': { |
| 1191 | 'args': [ |
Nico Weber | 02f3039 | 2018-07-16 18:39:43 | [diff] [blame] | 1192 | '--test-launcher-filter-file=../../testing/buildbot/filters/cast-linux.content_browsertests.filter', |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 1193 | ], |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 1194 | }, |
Erik Chen | b681c8c | 2019-11-25 22:52:52 | [diff] [blame] | 1195 | 'Linux ASan LSan Tests (1)': { |
| 1196 | 'swarming': { |
| 1197 | 'shards': 12, |
| 1198 | }, |
| 1199 | }, |
Chris Cunningham | e1a04ea | 2019-04-24 01:49:32 | [diff] [blame] | 1200 | 'Linux ASan Tests (sandboxed)': { |
| 1201 | 'swarming': { |
John Abd-El-Malek | 3a63161 | 2020-07-08 21:40:41 | [diff] [blame] | 1202 | 'shards': 10, # https://crbug.com/1103330 |
Chris Cunningham | e1a04ea | 2019-04-24 01:49:32 | [diff] [blame] | 1203 | }, |
| 1204 | }, |
Erik Chen | 681dc028 | 2019-11-26 22:54:49 | [diff] [blame] | 1205 | 'Linux TSan Tests': { |
| 1206 | 'swarming': { |
| 1207 | 'shards': 15, |
| 1208 | }, |
| 1209 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1210 | 'Lollipop Phone Tester': { |
| 1211 | 'swarming': { |
Haiyang Pan | bbd866d | 2020-09-16 00:48:38 | [diff] [blame] | 1212 | 'shards': 10, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1213 | }, |
| 1214 | }, |
Sergey Silkin | fe96b35 | 2020-10-19 20:41:34 | [diff] [blame] | 1215 | 'Lollipop Tablet Tester': { |
| 1216 | 'args': [ |
| 1217 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.lollipop_tablet_tester.content_browsertests.filter', |
| 1218 | ], |
Haiyang Pan | 1f636735 | 2021-07-02 21:15:57 | [diff] [blame] | 1219 | 'swarming': { |
| 1220 | 'shards': 15, |
| 1221 | }, |
Sergey Silkin | fe96b35 | 2020-10-19 20:41:34 | [diff] [blame] | 1222 | }, |
| 1223 | 'Marshmallow Tablet Tester': { |
| 1224 | 'args': [ |
| 1225 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.marshmallow_tablet_tester.content_browsertests.filter', |
| 1226 | ], |
Haiyang Pan | 1f636735 | 2021-07-02 21:15:57 | [diff] [blame] | 1227 | 'swarming': { |
| 1228 | 'shards': 15, |
| 1229 | }, |
Sergey Silkin | fe96b35 | 2020-10-19 20:41:34 | [diff] [blame] | 1230 | }, |
Sergey Silkin | 1fe10e8 | 2020-10-30 19:36:58 | [diff] [blame] | 1231 | 'WebRTC Chromium FYI Android Tests (dbg) (L Nexus5)': { |
| 1232 | 'args': [ |
| 1233 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromium.webrtc.fyi.android.tests.dbg.content_browsertests.filter', |
| 1234 | ], |
| 1235 | }, |
| 1236 | 'WebRTC Chromium FYI Android Tests (dbg) (M Nexus5X)': { |
| 1237 | 'args': [ |
| 1238 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromium.webrtc.fyi.android.tests.dbg.content_browsertests.filter', |
| 1239 | ], |
| 1240 | } |
| 1241 | , |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1242 | 'Win10 Tests x64': { |
| 1243 | # crbug.com/868082 |
| 1244 | 'args': [ |
| 1245 | '--disable-features=WebRTC-H264WithOpenH264FFmpeg', |
| 1246 | ], |
| 1247 | }, |
| 1248 | 'Win10 Tests x64 (dbg)': { |
| 1249 | 'experiment_percentage': 100, |
| 1250 | # crbug.com/868082 |
| 1251 | 'args': [ |
| 1252 | '--disable-features=WebRTC-H264WithOpenH264FFmpeg', |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1253 | ], |
| 1254 | }, |
Kuan Huang | c93e867 | 2021-06-29 21:13:45 | [diff] [blame] | 1255 | 'Win10 Tests x64 20h2': { |
| 1256 | # crbug.com/868082 |
| 1257 | 'args': [ |
| 1258 | '--disable-features=WebRTC-H264WithOpenH264FFmpeg', |
| 1259 | ], |
| 1260 | }, |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 1261 | 'android-11-x86-fyi-rel': { |
Haiyang Pan | 51450ab | 2021-03-23 00:48:57 | [diff] [blame] | 1262 | # TODO(crbug.com/1137474): Revisit the shard number once failed tests |
| 1263 | # are fixed. |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 1264 | 'swarming': { |
Haiyang Pan | 51450ab | 2021-03-23 00:48:57 | [diff] [blame] | 1265 | 'shards': 30, |
Haiyang Pan | 45e77dda | 2021-07-01 22:23:29 | [diff] [blame] | 1266 | 'dimension_sets': [ |
| 1267 | { |
| 1268 | 'machine_type': 'e2-standard-8', # use 8-core to shorten runtime |
| 1269 | }, |
| 1270 | ], |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 1271 | }, |
| 1272 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1273 | 'android-arm64-proguard-rel': { |
| 1274 | 'swarming': { |
| 1275 | 'shards': 16, |
| 1276 | }, |
| 1277 | }, |
| 1278 | 'android-asan': { |
| 1279 | 'args': [ |
| 1280 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.asan.content_browsertests.filter', |
| 1281 | ], |
| 1282 | 'swarming': { |
| 1283 | 'shards': 18, |
| 1284 | }, |
| 1285 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1286 | 'android-marshmallow-arm64-rel': { |
| 1287 | 'swarming': { |
| 1288 | 'shards': 16, |
| 1289 | }, |
| 1290 | }, |
Haiyang Pan | 2486dcb | 2020-09-18 17:53:06 | [diff] [blame] | 1291 | 'android-marshmallow-x86-rel-non-cq': { |
John Budorick | a4e2388 | 2020-02-28 18:36:43 | [diff] [blame] | 1292 | 'args': [ |
Haiyang Pan | 12d5acd | 2020-06-01 20:54:57 | [diff] [blame] | 1293 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_m.content_browsertests.filter', |
John Budorick | a4e2388 | 2020-02-28 18:36:43 | [diff] [blame] | 1294 | ], |
Haiyang Pan | c47f6d1 | 2020-08-19 18:34:49 | [diff] [blame] | 1295 | 'swarming': { |
| 1296 | 'shards': 20, |
| 1297 | }, |
John Budorick | a4e2388 | 2020-02-28 18:36:43 | [diff] [blame] | 1298 | }, |
Haiyang Pan | 363c59a | 2020-07-23 05:47:04 | [diff] [blame] | 1299 | 'android-nougat-arm64-rel': { |
| 1300 | 'swarming': { |
| 1301 | 'shards': 16, |
| 1302 | }, |
| 1303 | # TODO(crbug.com/1108055): Remove this filter |
| 1304 | 'args': [ |
| 1305 | '--gtest_filter=-BackgroundTracingManagerBrowserTest.PerfettoSystemBackgroundScenario*', |
| 1306 | ], |
| 1307 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 1308 | 'android-pie-x86-rel': { |
John Budorick | a4e2388 | 2020-02-28 18:36:43 | [diff] [blame] | 1309 | 'args': [ |
Haiyang Pan | 12d5acd | 2020-06-01 20:54:57 | [diff] [blame] | 1310 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_p.content_browsertests.filter', |
John Budorick | a4e2388 | 2020-02-28 18:36:43 | [diff] [blame] | 1311 | ], |
Sky Malice | 303f7ec | 2021-07-17 04:13:09 | [diff] [blame] | 1312 | 'swarming': { |
| 1313 | # Flaking with only 20 shards with 40-60 minute runs. |
| 1314 | # https://crbug.com/1230118 |
| 1315 | 'shards': 30, |
Haiyang Pan | 2eb735e7 | 2020-09-15 22:51:51 | [diff] [blame] | 1316 | }, |
John Budorick | a4e2388 | 2020-02-28 18:36:43 | [diff] [blame] | 1317 | }, |
Omer Katz | 7d2be65 | 2020-01-22 18:13:46 | [diff] [blame] | 1318 | 'linux-blink-heap-concurrent-marking-tsan-rel': { |
| 1319 | 'swarming': { |
| 1320 | 'shards': 4, |
| 1321 | }, |
| 1322 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1323 | 'linux-chromeos-code-coverage': { |
| 1324 | 'swarming': { |
| 1325 | 'shards': 12, |
| 1326 | }, |
| 1327 | }, |
Albert J. Wong | 91f10965 | 2019-11-19 03:01:16 | [diff] [blame] | 1328 | 'linux-chromeos-rel': { |
| 1329 | 'swarming': { |
| 1330 | 'shards': 3, |
| 1331 | }, |
| 1332 | }, |
Yuke Liao | 79424e4 | 2020-01-06 21:00:11 | [diff] [blame] | 1333 | 'linux-code-coverage': { |
Yuke Liao | 58e1d20 | 2020-03-20 23:02:01 | [diff] [blame] | 1334 | 'args': [ |
| 1335 | '--no-sandbox', |
| 1336 | ], |
Yuke Liao | 79424e4 | 2020-01-06 21:00:11 | [diff] [blame] | 1337 | 'swarming': { |
| 1338 | 'shards': 12, |
| 1339 | }, |
| 1340 | }, |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 1341 | # https://crbug.com/1111979, |
| 1342 | 'linux-lacros-code-coverage': { |
| 1343 | 'args': [ |
| 1344 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.content_browsertests.filter', |
| 1345 | ], |
| 1346 | }, |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 1347 | # https://crbug.com/1111979 |
| 1348 | 'linux-lacros-tester-fyi-rel': { |
| 1349 | 'experiment_percentage': 100, |
| 1350 | }, |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 1351 | # https://crbug.com/1111979, |
| 1352 | 'linux-lacros-tester-rel': { |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 1353 | 'args': [ |
Yuke Liao | 56a437dd | 2021-05-05 04:53:40 | [diff] [blame] | 1354 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.content_browsertests.filter', |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 1355 | ], |
| 1356 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1357 | }, |
| 1358 | }, |
Maksim Sisov | 6058ba7 | 2020-05-04 10:29:13 | [diff] [blame] | 1359 | 'content_browsertests_wayland': { |
| 1360 | 'modifications': { |
| 1361 | 'Linux Ozone Tester (Wayland)': { |
| 1362 | 'args': [ |
| 1363 | '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.wayland_content_browsertests.filter', |
| 1364 | ], |
| 1365 | }, |
| 1366 | }, |
| 1367 | }, |
Nico Weber | 81e16ace2 | 2018-06-30 02:58:47 | [diff] [blame] | 1368 | 'content_shell_crash_test': { |
Haiyang Pan | 8c201b9 | 2020-06-04 01:25:07 | [diff] [blame] | 1369 | 'remove_from': [ |
Nico Weber | bbbc34e | 2020-10-14 18:21:50 | [diff] [blame] | 1370 | 'Mac10.11 Tests', # crbug.com/1138050 |
Haiyang Pan | 2486dcb | 2020-09-18 17:53:06 | [diff] [blame] | 1371 | 'android-marshmallow-x86-rel-non-cq', # crbug.com/1084353 |
Haiyang Pan | 8c201b9 | 2020-06-04 01:25:07 | [diff] [blame] | 1372 | ], |
Dirk Pranke | b1c36b32 | 2018-07-11 02:42:00 | [diff] [blame] | 1373 | 'modifications': { |
Dirk Pranke | b1c36b32 | 2018-07-11 02:42:00 | [diff] [blame] | 1374 | 'Win10 Tests x64 (dbg)': { |
| 1375 | 'experiment_percentage': 100, # https://crbug.com/861730 |
| 1376 | }, |
| 1377 | }, |
Nico Weber | 81e16ace2 | 2018-06-30 02:58:47 | [diff] [blame] | 1378 | }, |
John Budorick | 27d2d44e | 2019-05-20 20:26:09 | [diff] [blame] | 1379 | 'content_shell_test_apk': { |
| 1380 | 'remove_from': [ |
John Budorick | 27d2d44e | 2019-05-20 20:26:09 | [diff] [blame] | 1381 | 'android-asan', # https://crbug.com/964562 |
Ben Joyce | 02dc809 | 2021-03-04 21:48:19 | [diff] [blame] | 1382 | 'android-code-coverage-native', # Does not generate profraw data. |
Ben Joyce | 46ca601 | 2021-03-31 19:19:25 | [diff] [blame] | 1383 | 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data. |
John Budorick | 27d2d44e | 2019-05-20 20:26:09 | [diff] [blame] | 1384 | ], |
John Budorick | ee2e64f | 2020-03-02 20:19:10 | [diff] [blame] | 1385 | 'modifications': { |
Haiyang Pan | 10386481 | 2021-03-19 19:28:44 | [diff] [blame] | 1386 | 'android-11-x86-fyi-rel': { |
| 1387 | 'args': [ |
| 1388 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.content_shell_test_apk.filter', |
Haiyang Pan | abdab2f | 2021-07-19 20:37:51 | [diff] [blame] | 1389 | '--timeout-scale=2.0', |
Haiyang Pan | 10386481 | 2021-03-19 19:28:44 | [diff] [blame] | 1390 | ], |
| 1391 | }, |
Haiyang Pan | 2486dcb | 2020-09-18 17:53:06 | [diff] [blame] | 1392 | 'android-marshmallow-x86-rel-non-cq': { |
John Budorick | ee2e64f | 2020-03-02 20:19:10 | [diff] [blame] | 1393 | 'args': [ |
Haiyang Pan | 28e7358 | 2020-05-30 00:34:27 | [diff] [blame] | 1394 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_m.content_shell_test_apk.filter', |
John Budorick | ee2e64f | 2020-03-02 20:19:10 | [diff] [blame] | 1395 | ], |
| 1396 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 1397 | 'android-pie-x86-rel': { |
John Budorick | ee2e64f | 2020-03-02 20:19:10 | [diff] [blame] | 1398 | 'args': [ |
| 1399 | '--gtest_filter=-ContentViewScrollingTest.testFling', |
| 1400 | ], |
| 1401 | }, |
| 1402 | }, |
John Budorick | 27d2d44e | 2019-05-20 20:26:09 | [diff] [blame] | 1403 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1404 | 'content_unittests': { |
| 1405 | 'modifications': { |
John Budorick | 5052d55 | 2017-12-13 02:59:34 | [diff] [blame] | 1406 | 'Linux ASan LSan Tests (1)': { |
| 1407 | # These are slow on the ASAN trybot for some reason. |
| 1408 | # crbug.com/794372 |
| 1409 | 'swarming': { |
| 1410 | 'shards': 2, |
| 1411 | }, |
| 1412 | }, |
Takuto Ikuta | 54671d97 | 2018-07-19 19:06:35 | [diff] [blame] | 1413 | 'Linux ChromiumOS MSan Tests': { |
| 1414 | # These are very slow on the Chrome OS MSAN trybot for some reason. |
| 1415 | # crbug.com/865455 |
| 1416 | 'swarming': { |
| 1417 | 'shards': 2, |
| 1418 | }, |
| 1419 | }, |
Chong Gu | 5248145 | 2021-04-02 17:52:41 | [diff] [blame] | 1420 | 'fuchsia-code-coverage': { |
| 1421 | 'swarming': { |
| 1422 | 'shards': 12, |
| 1423 | }, |
| 1424 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1425 | }, |
| 1426 | }, |
Jonah Ryan-Davis | 832c846 | 2020-06-09 03:45:03 | [diff] [blame] | 1427 | 'context_lost_passthrough_tests': { |
| 1428 | 'modifications': { |
Jonah Ryan-Davis | deeffeaf | 2020-06-18 17:56:00 | [diff] [blame] | 1429 | 'Mac FYI GPU ASAN Release': { |
| 1430 | 'args': [ |
| 1431 | '--is-asan', |
| 1432 | ] |
| 1433 | }, |
Jonah Ryan-Davis | 832c846 | 2020-06-09 03:45:03 | [diff] [blame] | 1434 | }, |
| 1435 | }, |
| 1436 | 'context_lost_validating_tests': { |
Brian Sheedy | e285c9b | 2019-07-15 21:42:46 | [diff] [blame] | 1437 | # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2) |
| 1438 | # exception once there is enough capacity to run these tests. |
| 1439 | 'remove_from': [ |
Brian Sheedy | e285c9b | 2019-07-15 21:42:46 | [diff] [blame] | 1440 | 'Android FYI Release (Pixel 2)', |
| 1441 | ], |
Kenneth Russell | c1a0930 | 2018-07-10 01:12:54 | [diff] [blame] | 1442 | 'modifications': { |
| 1443 | 'Mac FYI GPU ASAN Release': { |
| 1444 | 'args': [ |
| 1445 | '--is-asan', |
| 1446 | ] |
| 1447 | }, |
| 1448 | }, |
| 1449 | }, |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 1450 | 'crashpad_tests': { |
| 1451 | 'remove_from': [ |
Nico Weber | 15a00d6 | 2018-05-16 17:11:48 | [diff] [blame] | 1452 | 'linux-win_cross-rel', # https://crbug.com/762167 |
Vlad Tsyrklevich | 06a9a44f | 2019-07-24 19:14:39 | [diff] [blame] | 1453 | # https://crbug.com/crashpad/304 |
| 1454 | 'Linux TSan Tests', |
| 1455 | 'ToTLinuxTSan', |
| 1456 | # https://crbug.com/crashpad/306 |
| 1457 | 'Linux CFI', |
| 1458 | 'CFI Linux ToT', |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 1459 | ], |
Haiyang Pan | c7c009e | 2021-03-18 19:31:23 | [diff] [blame] | 1460 | 'modifications': { |
| 1461 | 'android-11-x86-fyi-rel': { |
| 1462 | 'args': [ |
| 1463 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.crashpad_tests.filter', |
| 1464 | ], |
| 1465 | }, |
| 1466 | }, |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 1467 | }, |
John Budorick | 5bc387fe | 2019-05-09 20:02:53 | [diff] [blame] | 1468 | 'cronet_sizes': { |
| 1469 | 'modifications': { |
| 1470 | 'android-cronet-arm-dbg': { |
| 1471 | 'swarming': { |
| 1472 | 'dimension_sets': [ |
| 1473 | { |
| 1474 | 'device_os': None, |
| 1475 | 'device_type': None, |
Takuto Ikuta | 5e459b1 | 2019-07-09 05:30:56 | [diff] [blame] | 1476 | 'os': 'Ubuntu-16.04', |
John Budorick | 5bc387fe | 2019-05-09 20:02:53 | [diff] [blame] | 1477 | }, |
| 1478 | ], |
| 1479 | }, |
| 1480 | }, |
| 1481 | }, |
| 1482 | }, |
Brian Sheedy | e285c9b | 2019-07-15 21:42:46 | [diff] [blame] | 1483 | 'depth_capture_tests': { |
Brian Sheedy | e285c9b | 2019-07-15 21:42:46 | [diff] [blame] | 1484 | 'remove_from': [ |
Wez | 6b0ebb5 | 2021-05-01 16:05:49 | [diff] [blame] | 1485 | # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2) |
| 1486 | # exception once there is enough capacity to run these tests. |
Brian Sheedy | e285c9b | 2019-07-15 21:42:46 | [diff] [blame] | 1487 | 'Android FYI Release (Pixel 2)', |
| 1488 | ], |
| 1489 | }, |
Ben Pastene | 61ad637c | 2020-05-08 22:24:41 | [diff] [blame] | 1490 | 'disk_usage_tast_test': { |
| 1491 | # TODO(crbug.com/1077659): Add the test back after it's fixed. |
| 1492 | 'remove_from': [ |
| 1493 | 'chromeos-kevin-rel', |
| 1494 | ], |
| 1495 | }, |
Joe Downing | 4148604 | 2018-10-18 22:44:44 | [diff] [blame] | 1496 | 'extensions_browsertests': { |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 1497 | 'remove_from': [ |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 1498 | 'CrWinAsan(dll)', # https://crbug.com/935598 |
| 1499 | ], |
Joe Downing | 4148604 | 2018-10-18 22:44:44 | [diff] [blame] | 1500 | 'modifications': { |
| 1501 | 'Win10 Tests x64 (dbg)': { |
| 1502 | 'experiment_percentage': 100, # https://crbug.com/876615 |
| 1503 | }, |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 1504 | # https://crbug.com/1111979, |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 1505 | 'linux-lacros-code-coverage': { |
| 1506 | 'args': [ |
| 1507 | '--gtest_filter=-BluetoothShellApiTest.ApiSanityCheck:BluetoothSocketApiTest.Listen:BluetoothSocketApiTest.PermissionDenied', |
| 1508 | ], |
| 1509 | }, |
Sven Zheng | d7f9462 | 2021-03-30 18:29:41 | [diff] [blame] | 1510 | 'linux-lacros-rel': { |
| 1511 | 'args': [ |
| 1512 | '--gtest_filter=-BluetoothShellApiTest.ApiSanityCheck:BluetoothSocketApiTest.Listen:BluetoothSocketApiTest.PermissionDenied', |
| 1513 | ], |
| 1514 | }, |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 1515 | 'linux-lacros-tester-rel': { |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 1516 | 'args': [ |
| 1517 | '--gtest_filter=-BluetoothShellApiTest.ApiSanityCheck:BluetoothSocketApiTest.Listen:BluetoothSocketApiTest.PermissionDenied', |
| 1518 | ], |
| 1519 | }, |
Joe Downing | 4148604 | 2018-10-18 22:44:44 | [diff] [blame] | 1520 | }, |
| 1521 | }, |
Sven Zheng | 577fe5ff | 2020-08-03 22:06:44 | [diff] [blame] | 1522 | 'extensions_unittests': { |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 1523 | 'modifications': { |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 1524 | # https://crbug.com/1111979, |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 1525 | 'linux-lacros-code-coverage': { |
| 1526 | 'args': [ |
| 1527 | '--gtest_filter=-NativeExtensionBindingsSystemUnittest*:' |
| 1528 | 'BluetoothSocketApiUnittest.CreateThenClose:' |
| 1529 | 'FeatureProviderTest.PermissionFeatureAvailability', |
| 1530 | ], |
| 1531 | }, |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 1532 | 'linux-lacros-tester-rel': { |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 1533 | 'args': [ |
Yuke Liao | bb830832 | 2020-08-12 20:20:47 | [diff] [blame] | 1534 | '--gtest_filter=-NativeExtensionBindingsSystemUnittest*:' |
| 1535 | 'BluetoothSocketApiUnittest.CreateThenClose:' |
| 1536 | 'FeatureProviderTest.PermissionFeatureAvailability', |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 1537 | ], |
| 1538 | }, |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 1539 | }, |
Sven Zheng | 577fe5ff | 2020-08-03 22:06:44 | [diff] [blame] | 1540 | }, |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 1541 | 'gfx_unittests': { |
| 1542 | 'modifications': { |
| 1543 | 'fuchsia-code-coverage': { |
| 1544 | 'swarming': { |
| 1545 | 'shards': 2, |
| 1546 | }, |
| 1547 | }, |
| 1548 | }, |
| 1549 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1550 | 'gin_unittests': { |
| 1551 | 'remove_from': [ |
Nico Weber | 1394523f | 2018-06-06 15:58:47 | [diff] [blame] | 1552 | 'ToTLinuxASan', # https://crbug.com/831667 |
Nico Weber | d3695968 | 2018-04-12 03:33:46 | [diff] [blame] | 1553 | 'Linux ASan LSan Tests (1)', # https://crbug.com/831667 |
Nico Weber | 1394523f | 2018-06-06 15:58:47 | [diff] [blame] | 1554 | 'Linux Chromium OS ASan LSan Tests (1)', # https://crbug.com/831667 |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1555 | ], |
| 1556 | }, |
Jonah Ryan-Davis | deeffeaf | 2020-06-18 17:56:00 | [diff] [blame] | 1557 | 'gl_tests_passthrough': { |
| 1558 | 'remove_from': [ |
| 1559 | 'CFI Linux ToT', |
| 1560 | # Can't run on MSAN because gl_tests uses the hardware driver, |
| 1561 | # which isn't instrumented. |
| 1562 | 'Linux MSan Tests', |
| 1563 | ], |
| 1564 | 'modifications': { |
| 1565 | # TODO(kbr): figure out a better way to specify blocks of |
| 1566 | # arguments like this for tests on multiple machines. |
Garrett Beaty | a491ec7 | 2020-07-25 12:36:12 | [diff] [blame] | 1567 | 'Linux ASan LSan Tests (1)': { |
| 1568 | 'args': [ |
| 1569 | '--use-gpu-in-tests', |
| 1570 | '--no-xvfb', |
| 1571 | ], |
| 1572 | 'swarming': { |
| 1573 | 'dimension_sets': [ |
| 1574 | { |
| 1575 | 'gpu': '10de:1cb3', |
| 1576 | 'os': 'Ubuntu', |
| 1577 | 'pool': 'chromium.tests.gpu', |
| 1578 | }, |
| 1579 | ], |
| 1580 | }, |
| 1581 | }, |
| 1582 | 'Linux CFI': { |
| 1583 | 'args': [ |
| 1584 | '--use-gpu-in-tests', |
| 1585 | '--no-xvfb', |
| 1586 | ], |
| 1587 | 'swarming': { |
| 1588 | 'dimension_sets': [ |
| 1589 | { |
| 1590 | 'gpu': '10de:1cb3', |
| 1591 | 'os': 'Ubuntu', |
| 1592 | 'pool': 'chromium.tests.gpu', |
| 1593 | }, |
| 1594 | ], |
| 1595 | }, |
| 1596 | }, |
Garrett Beaty | a491ec7 | 2020-07-25 12:36:12 | [diff] [blame] | 1597 | 'Linux TSan Tests': { |
| 1598 | 'args': [ |
| 1599 | '--use-gpu-in-tests', |
| 1600 | '--no-xvfb', |
| 1601 | ], |
| 1602 | 'swarming': { |
| 1603 | 'dimension_sets': [ |
| 1604 | { |
| 1605 | 'gpu': '10de:1cb3', |
| 1606 | 'os': 'Ubuntu', |
| 1607 | 'pool': 'chromium.tests.gpu', |
| 1608 | }, |
| 1609 | ], |
| 1610 | }, |
| 1611 | }, |
Jonah Ryan-Davis | deeffeaf | 2020-06-18 17:56:00 | [diff] [blame] | 1612 | }, |
| 1613 | }, |
Jonah Ryan-Davis | e25a89f | 2020-05-29 20:18:24 | [diff] [blame] | 1614 | 'gl_tests_validating': { |
Jonah Ryan-Davis | b9f03ac | 2021-03-18 23:53:02 | [diff] [blame] | 1615 | 'remove_from': [ |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 1616 | 'Android FYI Release (Nexus 5X)', |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 1617 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1618 | 'modifications': { |
Haiyang Pan | cf76586 | 2021-03-18 20:39:15 | [diff] [blame] | 1619 | 'android-11-x86-fyi-rel': { |
| 1620 | 'args': [ |
| 1621 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.gl_tests.filter', |
| 1622 | ], |
| 1623 | }, |
Haiyang Pan | 2486dcb | 2020-09-18 17:53:06 | [diff] [blame] | 1624 | 'android-marshmallow-x86-rel-non-cq': { |
John Budorick | 79ec901 | 2020-01-08 21:56:31 | [diff] [blame] | 1625 | 'args': [ |
| 1626 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.gl_tests.filter', |
| 1627 | ], |
| 1628 | }, |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 1629 | 'android-pie-arm64-rel': { |
John Budorick | 79ec901 | 2020-01-08 21:56:31 | [diff] [blame] | 1630 | 'args': [ |
Andrew Luo | be83fd8 | 2019-12-19 03:07:58 | [diff] [blame] | 1631 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_arm64_rel.gl_tests.filter', # https://crbug.com/1034007 |
| 1632 | ], |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 1633 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 1634 | 'android-pie-x86-rel': { |
John Budorick | 79ec901 | 2020-01-08 21:56:31 | [diff] [blame] | 1635 | 'args': [ |
| 1636 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.gl_tests.filter', |
| 1637 | ], |
| 1638 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1639 | }, |
| 1640 | }, |
Takuto Ikuta | f533325 | 2019-11-06 16:07:08 | [diff] [blame] | 1641 | 'gl_unittests': { |
| 1642 | 'remove_from': [ |
Takuto Ikuta | f533325 | 2019-11-06 16:07:08 | [diff] [blame] | 1643 | # On Android, these are already run on the main waterfall. |
| 1644 | # Run them on the one-off Android FYI bots, though. |
| 1645 | 'Android FYI Release (Nexus 5X)', |
Yuly Novikov | 37e0434 | 2020-05-29 00:52:04 | [diff] [blame] | 1646 | # Can't run on MSAN because gl_unittests uses the hardware driver, |
| 1647 | # which isn't instrumented. |
| 1648 | 'Linux MSan Tests', |
Takuto Ikuta | f533325 | 2019-11-06 16:07:08 | [diff] [blame] | 1649 | ], |
Takuto Ikuta | f533325 | 2019-11-06 16:07:08 | [diff] [blame] | 1650 | }, |
| 1651 | 'gl_unittests_ozone': { |
| 1652 | 'remove_from': [ |
| 1653 | # Can't run on MSAN because gl_unittests_ozone uses the hardware driver, |
| 1654 | # which isn't instrumented. |
| 1655 | 'Linux ChromiumOS MSan Tests', |
| 1656 | ], |
| 1657 | }, |
| 1658 | 'gpu_process_launch_tests': { |
| 1659 | # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2) |
| 1660 | # exception once there is enough capacity to run these tests. |
| 1661 | 'remove_from': [ |
Takuto Ikuta | f533325 | 2019-11-06 16:07:08 | [diff] [blame] | 1662 | 'Android FYI Release (Pixel 2)', |
| 1663 | ], |
| 1664 | }, |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 1665 | 'gpu_unittests': { |
| 1666 | 'modifications': { |
| 1667 | 'fuchsia-code-coverage': { |
| 1668 | 'swarming': { |
| 1669 | 'shards': 5, |
| 1670 | }, |
| 1671 | }, |
| 1672 | }, |
| 1673 | }, |
Kevin McNee | d21a6c52 | 2021-06-14 21:27:25 | [diff] [blame] | 1674 | 'grit_python_unittests': { |
| 1675 | 'remove_from': [ |
| 1676 | # These tests require node, which is not supported in Win7. |
| 1677 | # (https://crbug.com/1218989) |
| 1678 | 'Win 7 Tests x64 (1)', |
| 1679 | 'Win7 Tests (1)', |
| 1680 | 'Win7 Tests (dbg)(1)', |
| 1681 | ], |
| 1682 | }, |
Brian Sheedy | e285c9b | 2019-07-15 21:42:46 | [diff] [blame] | 1683 | 'hardware_accelerated_feature_tests': { |
| 1684 | # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2) |
| 1685 | # exception once there is enough capacity to run these tests. |
| 1686 | 'remove_from': [ |
Brian Sheedy | e285c9b | 2019-07-15 21:42:46 | [diff] [blame] | 1687 | 'Android FYI Release (Pixel 2)', |
| 1688 | ], |
| 1689 | }, |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 1690 | 'headless_browsertests': { |
Chong Gu | d1a5c599 | 2021-04-09 04:08:32 | [diff] [blame] | 1691 | 'modifications': { |
| 1692 | 'fuchsia-code-coverage': { |
| 1693 | 'swarming': { |
Chong Gu | 115ce15 | 2021-04-15 23:57:16 | [diff] [blame] | 1694 | 'shards': 6, |
Chong Gu | d1a5c599 | 2021-04-09 04:08:32 | [diff] [blame] | 1695 | }, |
| 1696 | }, |
| 1697 | }, |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 1698 | 'remove_from': [ |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 1699 | 'CrWinAsan(dll)', # https://crbug.com/935598 |
Zhaoyang Li | 18d1a0a | 2021-05-05 01:03:40 | [diff] [blame] | 1700 | 'Mac10.13 Tests', # https://crbug.com/1204424 |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 1701 | ], |
| 1702 | }, |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 1703 | 'info_collection_tests': { |
| 1704 | 'remove_from': [ |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 1705 | # The Mac ASAN swarming bot runs tests on two different GPU |
| 1706 | # types, so we can't have one expected vendor ID / device ID. |
| 1707 | 'Mac FYI GPU ASAN Release', |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 1708 | 'Android V8 FYI Release (Nexus 5X)', |
| 1709 | 'Linux V8 FYI Release (NVIDIA)', |
Michael Achenbach | 5fdfc67b | 2018-12-13 13:26:35 | [diff] [blame] | 1710 | 'Linux V8 FYI Release - pointer compression (NVIDIA)', |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 1711 | 'Mac V8 FYI Release (Intel)', |
| 1712 | 'Win V8 FYI Release (NVIDIA)', |
| 1713 | ], |
Brian Sheedy | fe61cdac | 2020-02-12 01:25:59 | [diff] [blame] | 1714 | 'modifications': { |
Brian Sheedy | b18cb76 | 2020-06-30 00:09:29 | [diff] [blame] | 1715 | 'ChromeOS FYI Release (amd64-generic)': { |
Brian Sheedy | 65be305 | 2020-06-26 19:26:51 | [diff] [blame] | 1716 | 'args': [ |
Brian Sheedy | b18cb76 | 2020-06-30 00:09:29 | [diff] [blame] | 1717 | # Swarming does not report a GPU since tests are run in a VM, but |
| 1718 | # the VM does report that a GPU is present. |
| 1719 | '--expected-device-id', '1050', |
Brian Sheedy | df2672f | 2020-05-07 20:44:36 | [diff] [blame] | 1720 | ], |
| 1721 | }, |
Brian Sheedy | fe61cdac | 2020-02-12 01:25:59 | [diff] [blame] | 1722 | }, |
Brian Sheedy | 32eeeb5 | 2020-05-22 01:49:37 | [diff] [blame] | 1723 | 'replacements': { |
| 1724 | 'ChromeOS FYI Release (amd64-generic)': { |
| 1725 | 'args': { |
| 1726 | # Swarming does not report a GPU since tests are run in a VM, but |
| 1727 | # the VM does report that a GPU is present. |
| 1728 | '--expected-vendor-id': '1af4', |
Brian Sheedy | b18cb76 | 2020-06-30 00:09:29 | [diff] [blame] | 1729 | # Magic substitution happens after regular replacement, so remove it |
| 1730 | # now since we are manually applying the expected device ID above. |
| 1731 | '$$MAGIC_SUBSTITUTION_GPUExpectedDeviceId': None, |
Brian Sheedy | 32eeeb5 | 2020-05-22 01:49:37 | [diff] [blame] | 1732 | }, |
Brian Sheedy | ff6d144 | 2020-09-19 00:46:31 | [diff] [blame] | 1733 | }, |
| 1734 | 'Mac FYI arm64 Release (Apple DTK)': { |
| 1735 | 'args': { |
| 1736 | # The GPU information is not yet exposed in swarming, so we can't |
| 1737 | # explicitly request it and have the JSON generation handle this |
| 1738 | # automatically. |
| 1739 | '--expected-vendor-id': '106b', |
| 1740 | }, |
| 1741 | }, |
Brian Sheedy | 32eeeb5 | 2020-05-22 01:49:37 | [diff] [blame] | 1742 | }, |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 1743 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1744 | 'interactive_ui_tests': { |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 1745 | 'remove_from': [ |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 1746 | 'CrWinAsan(dll)', # https://crbug.com/935598 |
| 1747 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1748 | 'modifications': { |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1749 | 'Linux - Future (dbg)': { # client.v8.chromium |
Nico Weber | dae13cd9 | 2018-12-14 13:56:26 | [diff] [blame] | 1750 | 'swarming': { |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1751 | 'shards': 3, |
Nico Weber | dae13cd9 | 2018-12-14 13:56:26 | [diff] [blame] | 1752 | }, |
| 1753 | }, |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 1754 | 'Linux ASan LSan Tests (1)': { |
Nico Weber | 96a75a694 | 2018-06-20 04:53:17 | [diff] [blame] | 1755 | # These are slow on the ASan trybot for some reason, crbug.com/794372 |
| 1756 | 'swarming': { |
| 1757 | 'shards': 6, |
| 1758 | }, |
| 1759 | }, |
Takuto Ikuta | 54671d97 | 2018-07-19 19:06:35 | [diff] [blame] | 1760 | 'Linux ChromiumOS MSan Tests': { |
| 1761 | # These are very slow on the Chrome OS MSAN trybot for some reason. |
| 1762 | # crbug.com/865455 |
| 1763 | 'swarming': { |
| 1764 | 'shards': 5, |
| 1765 | }, |
| 1766 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1767 | 'Linux TSan Tests': { |
| 1768 | # These are slow on the TSan bots for some reason, crbug.com/794372 |
Dirk Pranke | 8fd63c1 | 2017-12-10 18:06:27 | [diff] [blame] | 1769 | 'swarming': { |
Stephen Martinis | ad6cb7af | 2021-02-24 01:12:00 | [diff] [blame] | 1770 | 'shards': 32, # Adjusted for testing, see https://crbug.com/1179567 |
Dirk Pranke | 8fd63c1 | 2017-12-10 18:06:27 | [diff] [blame] | 1771 | }, |
| 1772 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1773 | 'ToTLinuxTSan': { |
| 1774 | # These are slow on the TSan bots for some reason, crbug.com/794372 |
| 1775 | 'swarming': { |
| 1776 | 'shards': 6, |
| 1777 | }, |
| 1778 | }, |
| 1779 | # temporary, https://crbug.com/818832 |
Greg Thompson | 3eb7e652 | 2018-05-25 09:04:03 | [diff] [blame] | 1780 | 'Win10 Tests x64 (dbg)': { |
| 1781 | 'experiment_percentage': 100, |
| 1782 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1783 | 'Win7 Tests (dbg)(1)': { |
| 1784 | 'swarming': { |
| 1785 | 'shards': 4, |
| 1786 | }, |
| 1787 | }, |
Jacob Kopczynski | 3a555bd3 | 2020-12-10 01:41:16 | [diff] [blame] | 1788 | # TODO(crbug.com/970649): Remove these filters. |
Ben Pastene | 8ef125e | 2019-12-10 01:46:29 | [diff] [blame] | 1789 | 'linux-chromeos-chrome': { |
Ben Pastene | 8ef125e | 2019-12-10 01:46:29 | [diff] [blame] | 1790 | 'args': [ |
| 1791 | '--gtest_filter=-SadTabViewInteractiveUITest.ReloadMultipleSadTabs', |
| 1792 | ], |
| 1793 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1794 | 'linux-chromeos-code-coverage': { |
Yuke Liao | 79424e4 | 2020-01-06 21:00:11 | [diff] [blame] | 1795 | 'swarming': { |
| 1796 | 'shards': 10, |
| 1797 | }, |
| 1798 | }, |
Jacob Kopczynski | 3a555bd3 | 2020-12-10 01:41:16 | [diff] [blame] | 1799 | 'linux-chromeos-ltc': { |
| 1800 | 'args': [ |
| 1801 | '--gtest_filter=-SadTabViewInteractiveUITest.ReloadMultipleSadTabs', |
| 1802 | ], |
| 1803 | }, |
| 1804 | 'linux-chromeos-lts': { |
| 1805 | 'args': [ |
| 1806 | '--gtest_filter=-SadTabViewInteractiveUITest.ReloadMultipleSadTabs', |
| 1807 | ], |
| 1808 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1809 | 'linux-code-coverage': { |
Yuke Liao | 79424e4 | 2020-01-06 21:00:11 | [diff] [blame] | 1810 | 'swarming': { |
| 1811 | 'shards': 10, |
| 1812 | }, |
| 1813 | }, |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 1814 | # https://crbug.com/1111979 |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 1815 | 'linux-lacros-code-coverage': { |
| 1816 | 'args': [ |
| 1817 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.interactive_ui_tests.filter', |
| 1818 | ], |
| 1819 | }, |
| 1820 | # https://crbug.com/1111979 |
Yuke Liao | f3b1a4a89 | 2020-08-18 22:04:12 | [diff] [blame] | 1821 | 'linux-lacros-rel': { |
| 1822 | 'args': [ |
Yuke Liao | 56a437dd | 2021-05-05 04:53:40 | [diff] [blame] | 1823 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.interactive_ui_tests.filter', |
Yuke Liao | f3b1a4a89 | 2020-08-18 22:04:12 | [diff] [blame] | 1824 | ], |
| 1825 | }, |
| 1826 | # https://crbug.com/1111979 |
Sven Zheng | 010820d | 2020-08-17 22:38:44 | [diff] [blame] | 1827 | 'linux-lacros-tester-rel': { |
Sven Zheng | 010820d | 2020-08-17 22:38:44 | [diff] [blame] | 1828 | 'args': [ |
Yuke Liao | 56a437dd | 2021-05-05 04:53:40 | [diff] [blame] | 1829 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.interactive_ui_tests.filter', |
Sven Zheng | 010820d | 2020-08-17 22:38:44 | [diff] [blame] | 1830 | ], |
| 1831 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1832 | }, |
| 1833 | }, |
Yuke Liao | b6beaeca | 2021-04-29 23:41:51 | [diff] [blame] | 1834 | 'interactive_ui_tests_amd64-generic': { |
| 1835 | 'remove_from': [ |
| 1836 | # TODO(crbug.com/1204231): Re-enable. |
| 1837 | 'lacros-amd64-generic-rel', |
| 1838 | ] |
| 1839 | }, |
Yuke Liao | 79a8cf5 | 2021-06-11 18:14:34 | [diff] [blame] | 1840 | 'interactive_ui_tests_eve': { |
| 1841 | 'remove_from': [ |
| 1842 | # TODO(crbug.com/1204231): Re-enable. |
| 1843 | 'lacros-amd64-generic-rel', |
| 1844 | ] |
| 1845 | }, |
Maksim Sisov | 649b7017a | 2021-03-04 08:20:39 | [diff] [blame] | 1846 | 'interactive_ui_tests_wayland': { |
| 1847 | 'modifications': { |
| 1848 | # CQ tester. |
| 1849 | 'Linux Ozone Tester (Wayland)': { |
| 1850 | 'args': [ |
| 1851 | '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.interactive_ui_tests_wayland.filter', |
| 1852 | ], |
| 1853 | }, |
| 1854 | # CI Ozone/Wayland tester. |
| 1855 | 'Linux Tester (Ozone Wayland)': { |
| 1856 | 'args': [ |
| 1857 | '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.interactive_ui_tests_wayland.filter', |
| 1858 | ], |
| 1859 | }, |
| 1860 | }, |
| 1861 | }, |
John Budorick | f00e5ff | 2019-06-11 21:21:06 | [diff] [blame] | 1862 | 'ipc_tests': { |
| 1863 | 'modifications': { |
| 1864 | 'android-asan': { |
| 1865 | 'swarming': { |
| 1866 | 'shards': 2, |
| 1867 | }, |
| 1868 | }, |
| 1869 | }, |
| 1870 | }, |
Nico Weber | 858587f | 2021-07-22 03:30:23 | [diff] [blame] | 1871 | 'mac_signing_tests': { |
| 1872 | 'remove_from': [ |
| 1873 | # TODO(crbug.com/1220743): Re-enable. |
| 1874 | 'Mac10.11 Tests', |
| 1875 | 'Mac10.12 Tests', |
| 1876 | ] |
| 1877 | }, |
Jonah Ryan-Davis | 832c846 | 2020-06-09 03:45:03 | [diff] [blame] | 1878 | 'maps_pixel_passthrough_test': { |
Brian Sheedy | c0c142c | 2021-06-01 21:18:05 | [diff] [blame] | 1879 | 'modifications': { |
| 1880 | 'Android FYI Release (Pixel 4)': { |
| 1881 | 'args': [ |
| 1882 | # Pixel 4s are weird in that they can output in different color spaces |
| 1883 | # simultaneously. The readback code for capturing a screenshot assumes |
| 1884 | # only one color space, so disable wide color gamut for the test to |
| 1885 | # work around the issue. See https://crbug.com/1166379 for more |
| 1886 | # information. |
| 1887 | '--extra-browser-args=--disable-wcg-for-test', |
| 1888 | ], |
| 1889 | }, |
| 1890 | 'Optional Android Release (Pixel 4)': { |
| 1891 | 'args': [ |
| 1892 | # See above. |
| 1893 | '--extra-browser-args=--disable-wcg-for-test', |
| 1894 | ], |
| 1895 | }, |
| 1896 | }, |
Jonah Ryan-Davis | 832c846 | 2020-06-09 03:45:03 | [diff] [blame] | 1897 | 'replacements': { |
| 1898 | # The V8 builders pass the V8 revision for ${got_revision}, so instead |
| 1899 | # use ${got_cr_revision}, which is only set on the V8 bots. |
| 1900 | 'Linux V8 FYI Release (NVIDIA)': { |
| 1901 | 'args': { |
| 1902 | '--git-revision': '${got_cr_revision}', |
| 1903 | }, |
| 1904 | }, |
| 1905 | 'Linux V8 FYI Release - pointer compression (NVIDIA)': { |
| 1906 | 'args': { |
| 1907 | '--git-revision': '${got_cr_revision}', |
| 1908 | }, |
| 1909 | }, |
Jonah Ryan-Davis | deeffeaf | 2020-06-18 17:56:00 | [diff] [blame] | 1910 | 'Mac V8 FYI Release (Intel)': { |
| 1911 | 'args': { |
| 1912 | '--git-revision': '${got_cr_revision}', |
| 1913 | }, |
| 1914 | }, |
Jonah Ryan-Davis | 832c846 | 2020-06-09 03:45:03 | [diff] [blame] | 1915 | 'Win V8 FYI Release (NVIDIA)': { |
| 1916 | 'args': { |
| 1917 | '--git-revision': '${got_cr_revision}', |
| 1918 | }, |
| 1919 | }, |
| 1920 | }, |
| 1921 | }, |
| 1922 | 'maps_pixel_validating_test': { |
Brian Sheedy | 0566f2cb | 2021-02-12 22:12:50 | [diff] [blame] | 1923 | 'modifications': { |
| 1924 | 'Android FYI Release (Pixel 4)': { |
| 1925 | 'args': [ |
| 1926 | # Pixel 4s are weird in that they can output in different color spaces |
| 1927 | # simultaneously. The readback code for capturing a screenshot assumes |
| 1928 | # only one color space, so disable wide color gamut for the test to |
| 1929 | # work around the issue. See https://crbug.com/1166379 for more |
| 1930 | # information. |
| 1931 | '--extra-browser-args=--disable-wcg-for-test', |
| 1932 | ], |
| 1933 | }, |
Brian Sheedy | cde1ab188 | 2021-05-27 21:22:00 | [diff] [blame] | 1934 | 'Optional Android Release (Pixel 4)': { |
| 1935 | 'args': [ |
| 1936 | # See above. |
| 1937 | '--extra-browser-args=--disable-wcg-for-test', |
| 1938 | ], |
| 1939 | }, |
Brian Sheedy | 0566f2cb | 2021-02-12 22:12:50 | [diff] [blame] | 1940 | }, |
Brian Sheedy | e285c9b | 2019-07-15 21:42:46 | [diff] [blame] | 1941 | # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2) |
| 1942 | # exception once there is enough capacity to run these tests. |
| 1943 | 'remove_from': [ |
Brian Sheedy | e285c9b | 2019-07-15 21:42:46 | [diff] [blame] | 1944 | 'Android FYI Release (Pixel 2)', |
| 1945 | ], |
Brian Sheedy | 44fd891b | 2019-10-03 20:07:54 | [diff] [blame] | 1946 | 'replacements': { |
Brian Sheedy | 44fd891b | 2019-10-03 20:07:54 | [diff] [blame] | 1947 | # The V8 builders pass the V8 revision for ${got_revision}, so instead |
| 1948 | # use ${got_cr_revision}, which is only set on the V8 bots. |
| 1949 | 'Android V8 FYI Release (Nexus 5X)': { |
| 1950 | 'args': { |
Brian Sheedy | 4d335deb | 2020-04-01 20:47:32 | [diff] [blame] | 1951 | '--git-revision': '${got_cr_revision}', |
Brian Sheedy | 44fd891b | 2019-10-03 20:07:54 | [diff] [blame] | 1952 | }, |
| 1953 | }, |
Brian Sheedy | 44fd891b | 2019-10-03 20:07:54 | [diff] [blame] | 1954 | 'Mac V8 FYI Release (Intel)': { |
| 1955 | 'args': { |
Brian Sheedy | 4d335deb | 2020-04-01 20:47:32 | [diff] [blame] | 1956 | '--git-revision': '${got_cr_revision}', |
Brian Sheedy | 44fd891b | 2019-10-03 20:07:54 | [diff] [blame] | 1957 | }, |
| 1958 | }, |
Brian Sheedy | 44fd891b | 2019-10-03 20:07:54 | [diff] [blame] | 1959 | }, |
Brian Sheedy | e285c9b | 2019-07-15 21:42:46 | [diff] [blame] | 1960 | }, |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 1961 | 'media_unittests': { |
| 1962 | 'modifications': { |
Haiyang Pan | cf76586 | 2021-03-18 20:39:15 | [diff] [blame] | 1963 | 'android-11-x86-fyi-rel': { |
| 1964 | 'args': [ |
| 1965 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.media_unittests.filter', |
| 1966 | ], |
| 1967 | }, |
Haiyang Pan | 2486dcb | 2020-09-18 17:53:06 | [diff] [blame] | 1968 | 'android-marshmallow-x86-rel-non-cq': { |
John Budorick | b518511 | 2020-01-08 22:40:21 | [diff] [blame] | 1969 | 'args': [ |
Haiyang Pan | 569659f0 | 2020-05-30 00:48:45 | [diff] [blame] | 1970 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_m.media_unittests.filter', |
John Budorick | b518511 | 2020-01-08 22:40:21 | [diff] [blame] | 1971 | ], |
| 1972 | }, |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 1973 | 'android-pie-arm64-rel': { |
Andrew Luo | be83fd8 | 2019-12-19 03:07:58 | [diff] [blame] | 1974 | 'args': [ |
| 1975 | '--gtest_filter=-AAudio/AudioOutputTest.Play200HzTone/0', # https://crbug.com/1034009 |
| 1976 | ], |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 1977 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 1978 | 'android-pie-x86-rel': { |
John Budorick | b518511 | 2020-01-08 22:40:21 | [diff] [blame] | 1979 | 'args': [ |
Haiyang Pan | 569659f0 | 2020-05-30 00:48:45 | [diff] [blame] | 1980 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_p.media_unittests.filter', |
John Budorick | b518511 | 2020-01-08 22:40:21 | [diff] [blame] | 1981 | ], |
| 1982 | }, |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 1983 | 'fuchsia-code-coverage': { |
| 1984 | 'swarming': { |
| 1985 | 'shards': 3, |
| 1986 | }, |
| 1987 | }, |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 1988 | }, |
| 1989 | }, |
Chong Gu | 4eca1ce | 2021-05-17 08:49:57 | [diff] [blame] | 1990 | 'mediapipe_validating_tests': { |
| 1991 | 'remove_from': [ |
| 1992 | # TODO(crbug.com/1201887): Remove once tests are stable. |
| 1993 | 'Fuchsia x64', |
| 1994 | ], |
| 1995 | }, |
Ben Joyce | 02dc809 | 2021-03-04 21:48:19 | [diff] [blame] | 1996 | 'mojo_test_apk': { |
| 1997 | 'remove_from': [ |
| 1998 | 'android-code-coverage-native', # Does not generate profraw data. |
Ben Joyce | 46ca601 | 2021-03-31 19:19:25 | [diff] [blame] | 1999 | 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data. |
Ben Joyce | 02dc809 | 2021-03-04 21:48:19 | [diff] [blame] | 2000 | ], |
| 2001 | }, |
John Budorick | f00e5ff | 2019-06-11 21:21:06 | [diff] [blame] | 2002 | 'mojo_unittests': { |
| 2003 | 'modifications': { |
| 2004 | 'android-asan': { |
| 2005 | 'swarming': { |
John Budorick | 5a29d754 | 2019-10-11 20:56:44 | [diff] [blame] | 2006 | 'shards': 5, |
John Budorick | f00e5ff | 2019-06-11 21:21:06 | [diff] [blame] | 2007 | }, |
| 2008 | }, |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 2009 | 'fuchsia-code-coverage': { |
| 2010 | 'swarming': { |
| 2011 | 'shards': 2, |
| 2012 | }, |
| 2013 | }, |
John Budorick | f00e5ff | 2019-06-11 21:21:06 | [diff] [blame] | 2014 | }, |
| 2015 | }, |
Peter Kotwicz | da2f1110 | 2020-10-09 05:29:50 | [diff] [blame] | 2016 | 'monochrome_public_apk_checker': { |
Ben Pastene | 521f8d6 | 2020-01-08 20:01:15 | [diff] [blame] | 2017 | 'modifications': { |
| 2018 | 'ToTAndroid': { |
| 2019 | 'swarming': { |
| 2020 | 'dimension_sets': [ |
| 2021 | { |
John Budorick | 838256a | 2020-02-29 01:29:07 | [diff] [blame] | 2022 | 'cpu': 'x86-64', |
Ben Pastene | 521f8d6 | 2020-01-08 20:01:15 | [diff] [blame] | 2023 | 'device_os': None, |
| 2024 | 'device_playstore_version': None, |
| 2025 | 'device_type': None, |
| 2026 | 'os': 'Ubuntu-16.04', |
| 2027 | }, |
| 2028 | ], |
| 2029 | }, |
| 2030 | }, |
| 2031 | 'android-arm64-proguard-rel': { |
| 2032 | 'swarming': { |
| 2033 | 'dimension_sets': [ |
| 2034 | { |
John Budorick | 838256a | 2020-02-29 01:29:07 | [diff] [blame] | 2035 | 'cpu': 'x86-64', |
Ben Pastene | 521f8d6 | 2020-01-08 20:01:15 | [diff] [blame] | 2036 | 'device_os': None, |
| 2037 | 'device_playstore_version': None, |
| 2038 | 'device_type': None, |
| 2039 | 'os': 'Ubuntu-16.04', |
| 2040 | }, |
| 2041 | ], |
| 2042 | }, |
| 2043 | }, |
| 2044 | 'android-pie-arm64-rel': { |
| 2045 | 'swarming': { |
| 2046 | 'dimension_sets': [ |
| 2047 | { |
John Budorick | 838256a | 2020-02-29 01:29:07 | [diff] [blame] | 2048 | 'cpu': 'x86-64', |
Ben Pastene | 521f8d6 | 2020-01-08 20:01:15 | [diff] [blame] | 2049 | 'device_os': None, |
| 2050 | 'device_os_flavor': None, |
| 2051 | 'device_playstore_version': None, |
| 2052 | 'device_type': None, |
| 2053 | 'os': 'Ubuntu-16.04', |
| 2054 | }, |
| 2055 | ], |
| 2056 | }, |
| 2057 | }, |
| 2058 | }, |
Erik Chen | d16d922d | 2019-12-10 04:37:14 | [diff] [blame] | 2059 | }, |
Ben Joyce | 4677e68 | 2021-03-22 22:19:11 | [diff] [blame] | 2060 | 'monochrome_public_bundle_fake_modules_smoke_test' : { |
| 2061 | 'remove_from': [ |
| 2062 | 'android-pie-arm64-coverage-experimental-rel', # TODO(crbug.com/1190999): |
| 2063 | # GLIBC_2.28 Not found. |
| 2064 | ], |
| 2065 | }, |
| 2066 | 'monochrome_public_bundle_smoke_test' : { |
| 2067 | 'remove_from': [ |
| 2068 | 'android-pie-arm64-coverage-experimental-rel', # TODO(crbug.com/1190999): |
| 2069 | # GLIBC_2.28 Not found. |
| 2070 | ], |
| 2071 | }, |
| 2072 | 'monochrome_public_smoke_test' : { |
| 2073 | 'remove_from': [ |
| 2074 | 'android-pie-arm64-coverage-experimental-rel', # TODO(crbug.com/1190999): |
| 2075 | # GLIBC_2.28 Not found. |
| 2076 | ], |
| 2077 | }, |
bsheedy | e946957 | 2019-01-23 17:31:33 | [diff] [blame] | 2078 | 'monochrome_public_test_ar_apk': { |
| 2079 | 'modifications': { |
Brian Sheedy | 12169aa | 2019-10-16 23:38:03 | [diff] [blame] | 2080 | 'Nougat Phone Tester': { |
| 2081 | 'args': [ |
| 2082 | # ArCore is not installed as a system app on N, so we can install it |
| 2083 | # normally instead of replacing the system version. |
| 2084 | '--additional-apk=//third_party/arcore-android-sdk/test-apks/arcore/arcore_current.apk' |
| 2085 | ], |
| 2086 | }, |
bsheedy | e946957 | 2019-01-23 17:31:33 | [diff] [blame] | 2087 | # We need to match the Playstore version as well because AR tests fail on |
| 2088 | # old versions of the Playstore. |
| 2089 | 'Oreo Phone Tester': { |
Brian Sheedy | 2bcd16b | 2019-04-22 22:47:08 | [diff] [blame] | 2090 | 'args': [ |
| 2091 | # ArCore is not installed as a system app on O, so we can install it |
| 2092 | # normally instead of replacing the system version. |
| 2093 | '--additional-apk=//third_party/arcore-android-sdk/test-apks/arcore/arcore_current.apk' |
| 2094 | ], |
bsheedy | e946957 | 2019-01-23 17:31:33 | [diff] [blame] | 2095 | 'swarming': { |
| 2096 | 'dimension_sets': [ |
| 2097 | { |
| 2098 | 'device_os': 'OPR3.170623.008', |
bsheedy | e946957 | 2019-01-23 17:31:33 | [diff] [blame] | 2099 | 'device_type': 'marlin', |
| 2100 | 'os': 'Android', |
| 2101 | }, |
| 2102 | ], |
| 2103 | }, |
| 2104 | }, |
Haiyang Pan | 57159eba | 2020-05-07 23:14:13 | [diff] [blame] | 2105 | 'android-10-arm64-rel': { |
| 2106 | 'args': [ |
Brian Sheedy | 4dc4a6f | 2020-09-17 22:18:50 | [diff] [blame] | 2107 | '--remove-system-package=com.google.ar.core', |
| 2108 | '--additional-apk=//third_party/arcore-android-sdk/test-apks/arcore/arcore_current.apk', |
Haiyang Pan | 57159eba | 2020-05-07 23:14:13 | [diff] [blame] | 2109 | ] |
| 2110 | }, |
Haiyang Pan | 363c59a | 2020-07-23 05:47:04 | [diff] [blame] | 2111 | 'android-nougat-arm64-rel': { |
| 2112 | 'args': [ |
| 2113 | # ArCore is not installed as a system app on N, so we can install it |
| 2114 | # normally instead of replacing the system version. |
| 2115 | '--additional-apk=//third_party/arcore-android-sdk/test-apks/arcore/arcore_current.apk' |
| 2116 | ], |
| 2117 | }, |
Brian Sheedy | 2bcd16b | 2019-04-22 22:47:08 | [diff] [blame] | 2118 | 'android-pie-arm64-dbg': { |
| 2119 | 'args': [ |
Brian Sheedy | 4dc4a6f | 2020-09-17 22:18:50 | [diff] [blame] | 2120 | '--remove-system-package=com.google.ar.core', |
| 2121 | '--additional-apk=//third_party/arcore-android-sdk/test-apks/arcore/arcore_current.apk', |
Brian Sheedy | 2bcd16b | 2019-04-22 22:47:08 | [diff] [blame] | 2122 | ] |
| 2123 | } |
bsheedy | e946957 | 2019-01-23 17:31:33 | [diff] [blame] | 2124 | }, |
| 2125 | }, |
Nico Weber | d3096fb | 2018-06-07 17:50:15 | [diff] [blame] | 2126 | 'nacl_helper_nonsfi_unittests': { |
| 2127 | 'remove_from': [ |
Nico Weber | d3096fb | 2018-06-07 17:50:15 | [diff] [blame] | 2128 | 'Linux TSan Tests', # Sets enable_nacl=false. |
| 2129 | ], |
| 2130 | }, |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 2131 | 'nacl_loader_unittests': { |
| 2132 | 'remove_from': [ |
Nico Weber | 48f18714 | 2018-06-01 15:16:35 | [diff] [blame] | 2133 | 'ToTMacASan', # The mac asan tot bot sets enable_nacl=false |
Nico Weber | 3611ee80 | 2018-06-07 13:34:51 | [diff] [blame] | 2134 | 'linux-win_cross-rel', # Sets enable_nacl=false, https://crbug.com/774186 |
Nico Weber | a8fc38f7 | 2018-04-10 02:20:11 | [diff] [blame] | 2135 | 'Linux TSan Tests', # The TSan bot sets enable_nacl=false |
Nico Weber | 05d3e64 | 2018-05-31 16:59:48 | [diff] [blame] | 2136 | 'Mac ASan 64 Tests (1)', # The mac asan bot sets enable_nacl=false |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 2137 | ], |
| 2138 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2139 | 'net_unittests': { |
| 2140 | 'modifications': { |
Nico Weber | 33b9b7a | 2020-06-12 19:23:27 | [diff] [blame] | 2141 | 'CrWinAsan': { |
| 2142 | # TODO(crbug.com/794372): net_unittests is slow under ASan. |
| 2143 | 'swarming': { |
| 2144 | 'shards': 16, |
| 2145 | }, |
| 2146 | }, |
| 2147 | 'CrWinAsan(dll)': { |
| 2148 | # TODO(crbug.com/794372): net_unittests is slow under ASan. |
| 2149 | 'swarming': { |
| 2150 | 'shards': 16, |
| 2151 | }, |
| 2152 | }, |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 2153 | 'Linux ASan LSan Tests (1)': { |
John Budorick | 5052d55 | 2017-12-13 02:59:34 | [diff] [blame] | 2154 | # These are very slow on the ASAN trybot for some reason. |
| 2155 | # crbug.com/794372 |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 2156 | 'swarming': { |
John Budorick | 5052d55 | 2017-12-13 02:59:34 | [diff] [blame] | 2157 | 'shards': 16, |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 2158 | }, |
| 2159 | }, |
| 2160 | 'Linux Chromium OS ASan LSan Tests (1)': { |
Takuto Ikuta | 54671d97 | 2018-07-19 19:06:35 | [diff] [blame] | 2161 | # These are very slow on the ASAN trybot for some reason. |
| 2162 | # crbug.com/794372 |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 2163 | 'swarming': { |
Sergey Berezin | da3255c | 2018-03-16 00:34:02 | [diff] [blame] | 2164 | 'shards': 8, |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 2165 | } |
| 2166 | }, |
Takuto Ikuta | 54671d97 | 2018-07-19 19:06:35 | [diff] [blame] | 2167 | 'Linux ChromiumOS MSan Tests': { |
| 2168 | # These are very slow on the Chrome OS MSAN trybot for some reason. |
| 2169 | # crbug.com/865455 |
| 2170 | 'swarming': { |
| 2171 | 'shards': 2, |
| 2172 | }, |
| 2173 | }, |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 2174 | 'Linux TSan Tests': { |
| 2175 | 'swarming': { |
| 2176 | 'shards': 4, |
| 2177 | } |
| 2178 | }, |
Ben Pastene | 8bf205b | 2018-06-13 04:00:33 | [diff] [blame] | 2179 | # The suite runs signficantly slower on linux dbg, so increase shards. |
| 2180 | 'Linux Tests (dbg)(1)': { |
| 2181 | 'swarming': { |
| 2182 | 'shards': 2, |
| 2183 | }, |
| 2184 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2185 | 'ToTLinuxASan': { |
| 2186 | # TODO(crbug.com/794372): net_unittests is slow under ASan. |
| 2187 | 'swarming': { |
| 2188 | 'shards': 16, |
| 2189 | }, |
| 2190 | }, |
| 2191 | 'ToTLinuxTSan': { |
| 2192 | 'swarming': { |
| 2193 | 'shards': 4, |
| 2194 | } |
| 2195 | }, |
Haiyang Pan | 8d9906e0 | 2021-03-24 20:11:04 | [diff] [blame] | 2196 | 'android-11-x86-fyi-rel': { |
| 2197 | 'args': [ |
| 2198 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.net_unittests.filter', |
| 2199 | ], |
| 2200 | }, |
Haiyang Pan | 2486dcb | 2020-09-18 17:53:06 | [diff] [blame] | 2201 | 'android-marshmallow-x86-rel-non-cq': { |
John Budorick | 7fde6b49 | 2020-01-29 17:43:50 | [diff] [blame] | 2202 | # crbug.com/1046060 |
| 2203 | 'args': [ |
| 2204 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.net_unittests.filter', |
| 2205 | ], |
| 2206 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 2207 | 'android-pie-x86-rel': { |
John Budorick | 7fde6b49 | 2020-01-29 17:43:50 | [diff] [blame] | 2208 | # crbug.com/1046060 |
| 2209 | 'args': [ |
| 2210 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.net_unittests.filter', |
| 2211 | ], |
| 2212 | }, |
Chong Gu | 012d546 | 2021-04-07 23:43:24 | [diff] [blame] | 2213 | 'fuchsia-code-coverage': { |
| 2214 | 'swarming': { |
| 2215 | 'shards': 14, |
| 2216 | }, |
| 2217 | }, |
Omer Katz | 7d2be65 | 2020-01-22 18:13:46 | [diff] [blame] | 2218 | 'linux-blink-heap-concurrent-marking-tsan-rel': { |
| 2219 | 'swarming': { |
| 2220 | 'shards': 4, |
| 2221 | } |
| 2222 | }, |
Ben Pastene | 8bf205b | 2018-06-13 04:00:33 | [diff] [blame] | 2223 | 'linux-chromeos-dbg': { |
| 2224 | 'swarming': { |
| 2225 | 'shards': 2, |
| 2226 | }, |
| 2227 | }, |
Nico Weber | 33b9b7a | 2020-06-12 19:23:27 | [diff] [blame] | 2228 | 'win-asan': { |
| 2229 | # TODO(crbug.com/794372): net_unittests is slow under ASan. |
| 2230 | 'swarming': { |
| 2231 | 'shards': 16, |
| 2232 | }, |
| 2233 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2234 | }, |
| 2235 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 2236 | 'not_site_per_process_blink_web_tests': { |
Lukasz Anforowicz | 04bc630 | 2018-11-19 19:04:28 | [diff] [blame] | 2237 | 'remove_from': [ |
Lukasz Anforowicz | 04bc630 | 2018-11-19 19:04:28 | [diff] [blame] | 2238 | # TODO(dpranke): Should we be running this step on Linux Tests (dbg)(1)? |
| 2239 | 'Linux Tests (dbg)(1)', |
Lukasz Anforowicz | 04bc630 | 2018-11-19 19:04:28 | [diff] [blame] | 2240 | ], |
Yuke Liao | bc9ff98 | 2019-04-30 06:56:16 | [diff] [blame] | 2241 | 'modifications': { |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2242 | 'Linux Tests': { |
| 2243 | "args": [ |
| 2244 | "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw", |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2245 | ], |
| 2246 | }, |
Yuke Liao | ea70f47 | 2019-12-19 06:03:36 | [diff] [blame] | 2247 | 'linux-code-coverage': { |
| 2248 | 'args': [ |
| 2249 | '--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw', |
Yuke Liao | ea70f47 | 2019-12-19 06:03:36 | [diff] [blame] | 2250 | ], |
| 2251 | 'swarming': { |
| 2252 | 'shards': 20, |
| 2253 | }, |
| 2254 | }, |
Stephanie Kim | 5c7f31d | 2021-04-27 18:00:06 | [diff] [blame] | 2255 | 'linux-xenial-rel': { |
| 2256 | "args": [ |
| 2257 | "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw", |
| 2258 | ], |
| 2259 | }, |
Yuke Liao | bc9ff98 | 2019-04-30 06:56:16 | [diff] [blame] | 2260 | }, |
Lukasz Anforowicz | 04bc630 | 2018-11-19 19:04:28 | [diff] [blame] | 2261 | }, |
Xi Cheng | 34ca404 | 2018-02-23 00:10:12 | [diff] [blame] | 2262 | 'notification_helper_unittests': { |
| 2263 | 'remove_from': [ |
Hans Wennborg | 252643a | 2018-05-22 14:41:12 | [diff] [blame] | 2264 | # The test uses WinRT, which only exists in Windows 8 or above. |
| 2265 | # (https://crbug.com/813553) |
Xi Cheng | 34ca404 | 2018-02-23 00:10:12 | [diff] [blame] | 2266 | 'Win 7 Tests x64 (1)', |
Xi Cheng | 34ca404 | 2018-02-23 00:10:12 | [diff] [blame] | 2267 | 'Win7 Tests (1)', |
| 2268 | 'Win7 Tests (dbg)(1)', |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2269 | # all these bots run Windows 7. |
Xi Cheng | 34ca404 | 2018-02-23 00:10:12 | [diff] [blame] | 2270 | 'ToTWin', |
| 2271 | 'ToTWin(dbg)', |
| 2272 | 'ToTWin(dll)', |
inglorion | b8e7a3ed | 2019-04-12 09:49:03 | [diff] [blame] | 2273 | 'ToTWinOfficial', |
Arthur Eubanks | 0c24b82 | 2021-06-15 18:51:34 | [diff] [blame] | 2274 | 'ToTWinOfficial64', |
Xi Cheng | 34ca404 | 2018-02-23 00:10:12 | [diff] [blame] | 2275 | 'ToTWin64', |
| 2276 | 'ToTWin64(dbg)', |
| 2277 | 'ToTWin64(dll)', |
| 2278 | 'ToTWinCFI', |
| 2279 | 'ToTWinCFI64', |
Xi Cheng | 34ca404 | 2018-02-23 00:10:12 | [diff] [blame] | 2280 | ], |
| 2281 | }, |
Ben Pastene | e723b2f | 2019-05-31 19:10:27 | [diff] [blame] | 2282 | 'ozone_unittests': { |
| 2283 | 'modifications': { |
Ben Pastene | 8ef125e | 2019-12-10 01:46:29 | [diff] [blame] | 2284 | 'chromeos-betty-pi-arc-chrome': { |
| 2285 | 'args': [ |
| 2286 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter', |
| 2287 | ], |
| 2288 | }, |
Ben Pastene | 500cc1d1 | 2021-01-22 18:10:47 | [diff] [blame] | 2289 | 'chromeos-betty-pi-arc-chrome-dchecks': { |
| 2290 | 'args': [ |
| 2291 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter', |
| 2292 | ], |
| 2293 | }, |
Jacob Kopczynski | 2fd46205 | 2020-11-13 19:18:22 | [diff] [blame] | 2294 | 'chromeos-betty-pi-arc-chrome-ltc': { |
| 2295 | 'args': [ |
| 2296 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter', |
| 2297 | ], |
| 2298 | }, |
| 2299 | 'chromeos-betty-pi-arc-chrome-lts': { |
| 2300 | 'args': [ |
| 2301 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter', |
| 2302 | ], |
| 2303 | }, |
Ben Pastene | 8ef125e | 2019-12-10 01:46:29 | [diff] [blame] | 2304 | 'linux-chromeos-chrome': { |
| 2305 | 'args': [ |
| 2306 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter', |
| 2307 | ], |
| 2308 | }, |
Jacob Kopczynski | 3a555bd3 | 2020-12-10 01:41:16 | [diff] [blame] | 2309 | 'linux-chromeos-ltc': { |
| 2310 | 'args': [ |
| 2311 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter', |
| 2312 | ], |
| 2313 | }, |
| 2314 | 'linux-chromeos-lts': { |
| 2315 | 'args': [ |
| 2316 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter', |
| 2317 | ], |
| 2318 | }, |
Ben Pastene | e723b2f | 2019-05-31 19:10:27 | [diff] [blame] | 2319 | }, |
| 2320 | }, |
Karen Qian | 385d2ca | 2019-03-19 21:49:58 | [diff] [blame] | 2321 | 'perfetto_unittests': { |
| 2322 | 'remove_from': [ |
Haiyang Pan | 363c59a | 2020-07-23 05:47:04 | [diff] [blame] | 2323 | # TODO(crbug.com/931138): Fix permission issue when creating tmp files |
John Budorick | d3fa599 | 2019-12-13 17:22:41 | [diff] [blame] | 2324 | 'android-arm64-proguard-rel', |
John Budorick | f2283d7 | 2019-06-25 01:09:09 | [diff] [blame] | 2325 | 'android-asan', |
Yun Liu | 022f451 | 2019-06-10 23:14:04 | [diff] [blame] | 2326 | 'android-code-coverage', |
Yun Liu | 7cfd28a | 2019-10-30 01:57:12 | [diff] [blame] | 2327 | 'android-code-coverage-native', |
Haiyang Pan | 32b8339 | 2020-03-14 01:38:46 | [diff] [blame] | 2328 | 'android-lollipop-arm-rel', |
Karen Qian | 385d2ca | 2019-03-19 21:49:58 | [diff] [blame] | 2329 | 'android-marshmallow-arm64-rel', |
Haiyang Pan | 2486dcb | 2020-09-18 17:53:06 | [diff] [blame] | 2330 | 'android-marshmallow-x86-rel-non-cq', |
Haiyang Pan | 363c59a | 2020-07-23 05:47:04 | [diff] [blame] | 2331 | 'android-nougat-arm64-rel', |
Ben Joyce | 46ca601 | 2021-03-31 19:19:25 | [diff] [blame] | 2332 | 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data. |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 2333 | 'android-pie-arm64-rel', |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 2334 | 'android-pie-x86-rel', |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 2335 | 'android-11-x86-fyi-rel', |
Karen Qian | 385d2ca | 2019-03-19 21:49:58 | [diff] [blame] | 2336 | 'Lollipop Phone Tester', |
| 2337 | 'Lollipop Tablet Tester', |
| 2338 | 'Marshmallow 64 bit Tester', |
| 2339 | 'Marshmallow Tablet Tester', |
| 2340 | 'Nougat Phone Tester', |
Arthur Eubanks | c8f86ee | 2021-05-10 20:14:24 | [diff] [blame] | 2341 | 'ToTAndroid' |
Karen Qian | 385d2ca | 2019-03-19 21:49:58 | [diff] [blame] | 2342 | ] |
| 2343 | }, |
Stephen Martinis | 54d64ad | 2018-09-21 22:16:20 | [diff] [blame] | 2344 | 'performance_test_suite': { |
| 2345 | 'modifications': { |
Zhaoyang Li | 7842759 | 2021-03-25 19:03:23 | [diff] [blame] | 2346 | 'Mac10.15 Tests (dbg)': { |
| 2347 | 'args': [ |
| 2348 | '--browser=debug', |
| 2349 | ], |
| 2350 | }, |
Stephen Martinis | 54d64ad | 2018-09-21 22:16:20 | [diff] [blame] | 2351 | 'Win10 Tests x64 (dbg)': { |
| 2352 | 'args': [ |
Takuto Ikuta | b28b582e | 2021-02-10 01:41:21 | [diff] [blame] | 2353 | '--browser=debug_x64', |
Stephen Martinis | 54d64ad | 2018-09-21 22:16:20 | [diff] [blame] | 2354 | ], |
| 2355 | 'experiment_percentage': 100, |
| 2356 | }, |
| 2357 | 'Win7 Tests (dbg)(1)': { |
| 2358 | 'args': [ |
| 2359 | '--browser=debug', |
| 2360 | ], |
| 2361 | }, |
| 2362 | }, |
| 2363 | }, |
Sven Zheng | e8335e0 | 2020-08-07 22:38:39 | [diff] [blame] | 2364 | 'pixel_browser_tests': { |
| 2365 | 'modifications': { |
| 2366 | 'win-pixel-tester-rel': { |
| 2367 | 'non_precommit_args': [ |
| 2368 | # Do not allow retry or it will break the bulk approval process. |
| 2369 | # When retry with fail-pass pattern, the passing test will overwrite the previously |
| 2370 | # seen flaky version on the trace. We can triage the image using the printed link, |
| 2371 | # but it will not show on the Skia Gold search page. |
| 2372 | '--test-launcher-retry-limit=0', |
| 2373 | ], |
| 2374 | }, |
| 2375 | }, |
| 2376 | }, |
Jonah Ryan-Davis | 832c846 | 2020-06-09 03:45:03 | [diff] [blame] | 2377 | 'pixel_skia_gold_passthrough_test': { |
Brian Sheedy | c0c142c | 2021-06-01 21:18:05 | [diff] [blame] | 2378 | 'modifications': { |
| 2379 | 'Android FYI Release (Pixel 4)': { |
| 2380 | 'args': [ |
| 2381 | # Pixel 4s are weird in that they can output in different color spaces |
| 2382 | # simultaneously. The readback code for capturing a screenshot assumes |
| 2383 | # only one color space, so disable wide color gamut for the test to |
| 2384 | # work around the issue. See https://crbug.com/1166379 for more |
| 2385 | # information. |
| 2386 | '--extra-browser-args=--disable-wcg-for-test', |
| 2387 | ], |
| 2388 | }, |
| 2389 | 'Optional Android Release (Pixel 4)': { |
| 2390 | 'args': [ |
| 2391 | # See above. |
| 2392 | '--extra-browser-args=--disable-wcg-for-test', |
| 2393 | ], |
| 2394 | }, |
| 2395 | }, |
Jonah Ryan-Davis | 832c846 | 2020-06-09 03:45:03 | [diff] [blame] | 2396 | 'replacements': { |
| 2397 | # The V8 builders pass the V8 revision for ${got_revision}, so instead |
| 2398 | # use ${got_cr_revision}, which is only set on the V8 bots. |
| 2399 | 'Linux V8 FYI Release (NVIDIA)': { |
| 2400 | 'args': { |
| 2401 | '--git-revision': '${got_cr_revision}', |
| 2402 | }, |
| 2403 | }, |
| 2404 | 'Linux V8 FYI Release - pointer compression (NVIDIA)': { |
| 2405 | 'args': { |
| 2406 | '--git-revision': '${got_cr_revision}', |
| 2407 | }, |
| 2408 | }, |
Jonah Ryan-Davis | deeffeaf | 2020-06-18 17:56:00 | [diff] [blame] | 2409 | 'Mac V8 FYI Release (Intel)': { |
| 2410 | 'args': { |
| 2411 | '--git-revision': '${got_cr_revision}', |
| 2412 | }, |
| 2413 | }, |
Jonah Ryan-Davis | 832c846 | 2020-06-09 03:45:03 | [diff] [blame] | 2414 | 'Win V8 FYI Release (NVIDIA)': { |
| 2415 | 'args': { |
| 2416 | '--git-revision': '${got_cr_revision}', |
| 2417 | }, |
| 2418 | }, |
| 2419 | }, |
| 2420 | }, |
| 2421 | 'pixel_skia_gold_validating_test': { |
Brian Sheedy | 0566f2cb | 2021-02-12 22:12:50 | [diff] [blame] | 2422 | 'modifications': { |
| 2423 | 'Android FYI Release (Pixel 4)': { |
| 2424 | 'args': [ |
| 2425 | # Pixel 4s are weird in that they can output in different color spaces |
| 2426 | # simultaneously. The readback code for capturing a screenshot assumes |
| 2427 | # only one color space, so disable wide color gamut for the test to |
| 2428 | # work around the issue. See https://crbug.com/1166379 for more |
| 2429 | # information. |
| 2430 | '--extra-browser-args=--disable-wcg-for-test', |
| 2431 | ], |
| 2432 | }, |
Brian Sheedy | cde1ab188 | 2021-05-27 21:22:00 | [diff] [blame] | 2433 | 'Optional Android Release (Pixel 4)': { |
| 2434 | 'args': [ |
| 2435 | # See above. |
| 2436 | '--extra-browser-args=--disable-wcg-for-test', |
| 2437 | ], |
| 2438 | }, |
Brian Sheedy | 0566f2cb | 2021-02-12 22:12:50 | [diff] [blame] | 2439 | }, |
Brian Sheedy | e6ea0ee | 2019-07-11 02:54:37 | [diff] [blame] | 2440 | 'replacements': { |
Brian Sheedy | e6ea0ee | 2019-07-11 02:54:37 | [diff] [blame] | 2441 | # The V8 builders pass the V8 revision for ${got_revision}, so instead |
| 2442 | # use ${got_cr_revision}, which is only set on the V8 bots. |
| 2443 | 'Android V8 FYI Release (Nexus 5X)': { |
| 2444 | 'args': { |
Brian Sheedy | 4d335deb | 2020-04-01 20:47:32 | [diff] [blame] | 2445 | '--git-revision': '${got_cr_revision}', |
Brian Sheedy | e6ea0ee | 2019-07-11 02:54:37 | [diff] [blame] | 2446 | }, |
| 2447 | }, |
Brian Sheedy | e6ea0ee | 2019-07-11 02:54:37 | [diff] [blame] | 2448 | 'Mac V8 FYI Release (Intel)': { |
| 2449 | 'args': { |
Brian Sheedy | 4d335deb | 2020-04-01 20:47:32 | [diff] [blame] | 2450 | '--git-revision': '${got_cr_revision}', |
Brian Sheedy | e6ea0ee | 2019-07-11 02:54:37 | [diff] [blame] | 2451 | }, |
| 2452 | }, |
Brian Sheedy | e6ea0ee | 2019-07-11 02:54:37 | [diff] [blame] | 2453 | }, |
| 2454 | }, |
| 2455 | 'pixel_test':{ |
Takuto Ikuta | 35c8552 | 2019-06-04 16:55:46 | [diff] [blame] | 2456 | 'modifications': { |
| 2457 | 'Android Release (Nexus 5X)': { |
| 2458 | 'swarming': { |
| 2459 | 'shards': 2, |
| 2460 | }, |
| 2461 | }, |
| 2462 | }, |
Nico Weber | 128fd38 | 2018-06-14 23:29:27 | [diff] [blame] | 2463 | }, |
Chong Gu | 7ee366b | 2021-04-29 22:59:27 | [diff] [blame] | 2464 | 'pixel_tests': { |
| 2465 | 'remove_from': [ |
| 2466 | 'Fuchsia x64' # https://crbug.com/1203236 |
| 2467 | ], |
| 2468 | }, |
Brian Sheedy | 9653f15 | 2019-08-07 17:02:44 | [diff] [blame] | 2469 | 'rendering_representative_perf_tests': { |
| 2470 | 'modifications': { |
| 2471 | 'Win10 FYI x64 Exp Release (Intel HD 630)': { |
| 2472 | 'args': [ |
Takuto Ikuta | b28b582e | 2021-02-10 01:41:21 | [diff] [blame] | 2473 | '--browser=release_x64', |
Brian Sheedy | 9653f15 | 2019-08-07 17:02:44 | [diff] [blame] | 2474 | ], |
| 2475 | }, |
| 2476 | 'Win10 FYI x64 Exp Release (NVIDIA)': { |
| 2477 | 'args': [ |
Takuto Ikuta | b28b582e | 2021-02-10 01:41:21 | [diff] [blame] | 2478 | '--browser=release_x64', |
Brian Sheedy | 9653f15 | 2019-08-07 17:02:44 | [diff] [blame] | 2479 | ], |
| 2480 | }, |
Yuly Novikov | 86cb354 | 2020-11-26 17:10:00 | [diff] [blame] | 2481 | 'Win10 FYI x64 Release (AMD RX 5500 XT)': { |
| 2482 | 'args': [ |
Takuto Ikuta | b28b582e | 2021-02-10 01:41:21 | [diff] [blame] | 2483 | '--browser=release_x64', |
Yuly Novikov | 86cb354 | 2020-11-26 17:10:00 | [diff] [blame] | 2484 | ], |
| 2485 | }, |
Brian Sheedy | 9653f15 | 2019-08-07 17:02:44 | [diff] [blame] | 2486 | 'Win10 FYI x64 Release (Intel HD 630)': { |
| 2487 | 'args': [ |
Takuto Ikuta | b28b582e | 2021-02-10 01:41:21 | [diff] [blame] | 2488 | '--browser=release_x64', |
Brian Sheedy | 9653f15 | 2019-08-07 17:02:44 | [diff] [blame] | 2489 | ], |
| 2490 | }, |
Brian Sheedy | 9653f15 | 2019-08-07 17:02:44 | [diff] [blame] | 2491 | 'Win10 FYI x64 Release (NVIDIA)': { |
| 2492 | 'args': [ |
Takuto Ikuta | b28b582e | 2021-02-10 01:41:21 | [diff] [blame] | 2493 | '--browser=release_x64', |
Brian Sheedy | 9653f15 | 2019-08-07 17:02:44 | [diff] [blame] | 2494 | ], |
| 2495 | }, |
behdad | 26cf7e7 | 2019-12-18 13:57:30 | [diff] [blame] | 2496 | 'Win10 x64 Release (NVIDIA)': { |
| 2497 | 'args': [ |
Takuto Ikuta | b28b582e | 2021-02-10 01:41:21 | [diff] [blame] | 2498 | '--browser=release_x64', |
behdad | 26cf7e7 | 2019-12-18 13:57:30 | [diff] [blame] | 2499 | ], |
| 2500 | }, |
Brian Sheedy | 9653f15 | 2019-08-07 17:02:44 | [diff] [blame] | 2501 | }, |
| 2502 | }, |
John Budorick | dce9d46 | 2019-03-23 00:25:38 | [diff] [blame] | 2503 | 'sandbox_linux_unittests': { |
| 2504 | 'modifications': { |
| 2505 | 'Lollipop Phone Tester': { |
| 2506 | 'args': [ |
| 2507 | '--shard-timeout=300', |
| 2508 | ], |
| 2509 | }, |
Haiyang Pan | 32b8339 | 2020-03-14 01:38:46 | [diff] [blame] | 2510 | 'android-lollipop-arm-rel': { |
| 2511 | 'args': [ |
| 2512 | '--shard-timeout=300', |
| 2513 | ], |
| 2514 | }, |
Haiyang Pan | 2486dcb | 2020-09-18 17:53:06 | [diff] [blame] | 2515 | 'android-marshmallow-x86-rel-non-cq': { |
John Budorick | 6e8e595b | 2020-01-27 18:15:58 | [diff] [blame] | 2516 | 'args': [ |
| 2517 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.sandbox_linux_unittests.filter', |
| 2518 | ] |
| 2519 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 2520 | 'android-pie-x86-rel': { |
John Budorick | 191adfcd | 2020-01-29 18:19:04 | [diff] [blame] | 2521 | 'args': [ |
| 2522 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.sandbox_linux_unittests.filter', |
| 2523 | ] |
| 2524 | }, |
John Budorick | dce9d46 | 2019-03-23 00:25:38 | [diff] [blame] | 2525 | }, |
John Budorick | 3ebfdf85 | 2019-05-13 22:28:16 | [diff] [blame] | 2526 | 'remove_from': [ |
John Budorick | 3ebfdf85 | 2019-05-13 22:28:16 | [diff] [blame] | 2527 | 'android-asan', # https://crbug.com/962650 |
| 2528 | ], |
John Budorick | dce9d46 | 2019-03-23 00:25:38 | [diff] [blame] | 2529 | }, |
Brian Sheedy | c0c142c | 2021-06-01 21:18:05 | [diff] [blame] | 2530 | 'screenshot_sync_passthrough_tests': { |
| 2531 | 'modifications': { |
| 2532 | 'Android FYI Release (Pixel 4)': { |
| 2533 | 'args': [ |
| 2534 | # Pixel 4s are weird in that they can output in different color spaces |
| 2535 | # simultaneously. The readback code for capturing a screenshot assumes |
| 2536 | # only one color space, so disable wide color gamut for the test to |
| 2537 | # work around the issue. See https://crbug.com/1166379 for more |
| 2538 | # information. |
| 2539 | '--extra-browser-args=--disable-wcg-for-test', |
| 2540 | ], |
| 2541 | }, |
| 2542 | 'Optional Android Release (Pixel 4)': { |
| 2543 | 'args': [ |
| 2544 | # See above. |
| 2545 | '--extra-browser-args=--disable-wcg-for-test', |
| 2546 | ], |
| 2547 | }, |
| 2548 | }, |
| 2549 | }, |
Brian Sheedy | 0566f2cb | 2021-02-12 22:12:50 | [diff] [blame] | 2550 | 'screenshot_sync_validating_tests': { |
| 2551 | 'modifications': { |
| 2552 | 'Android FYI Release (Pixel 4)': { |
| 2553 | 'args': [ |
| 2554 | # Pixel 4s are weird in that they can output in different color spaces |
| 2555 | # simultaneously. The readback code for capturing a screenshot assumes |
| 2556 | # only one color space, so disable wide color gamut for the test to |
| 2557 | # work around the issue. See https://crbug.com/1166379 for more |
| 2558 | # information. |
| 2559 | '--extra-browser-args=--disable-wcg-for-test', |
| 2560 | ], |
| 2561 | }, |
Brian Sheedy | cde1ab188 | 2021-05-27 21:22:00 | [diff] [blame] | 2562 | 'Optional Android Release (Pixel 4)': { |
| 2563 | 'args': [ |
| 2564 | # See above. |
| 2565 | '--extra-browser-args=--disable-wcg-for-test', |
| 2566 | ], |
| 2567 | }, |
Brian Sheedy | 0566f2cb | 2021-02-12 22:12:50 | [diff] [blame] | 2568 | }, |
| 2569 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2570 | 'services_unittests': { |
| 2571 | 'remove_from': [ |
Nico Weber | 15a00d6 | 2018-05-16 17:11:48 | [diff] [blame] | 2572 | 'ToTLinuxMSan', # https://crbug.com/831676 |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 2573 | # The face and barcode detection tests fail on the Mac Pros. |
| 2574 | 'Mac Pro FYI Release (AMD)', |
Nico Weber | d3695968 | 2018-04-12 03:33:46 | [diff] [blame] | 2575 | 'Linux ChromiumOS MSan Tests', # https://crbug.com/831676 |
| 2576 | 'Linux MSan Tests', # https://crbug.com/831676 |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2577 | ], |
Brian Sheedy | b6c5879 | 2020-05-07 18:37:33 | [diff] [blame] | 2578 | 'replacements': { |
| 2579 | # TODO(crbug.com/1078982): Remove once the test is fixed on 10.15.4. |
| 2580 | 'Mac FYI Experimental Release (Intel)': { |
| 2581 | 'args': { |
| 2582 | '--gtest_filter': '*Detection*:-FaceDetectionImplMacTest.ScanOneFace*', |
| 2583 | }, |
| 2584 | }, |
| 2585 | }, |
Haiyang Pan | 363c59a | 2020-07-23 05:47:04 | [diff] [blame] | 2586 | 'modifications': { |
| 2587 | 'android-nougat-arm64-rel': { |
| 2588 | # TODO(crbug.com/1108055): Remove this filter |
| 2589 | 'args': [ |
| 2590 | '--gtest_filter=-SystemPerfettoTest.*', |
| 2591 | ], |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 2592 | }, |
Chong Gu | 5248145 | 2021-04-02 17:52:41 | [diff] [blame] | 2593 | 'fuchsia-code-coverage': { |
| 2594 | 'swarming': { |
| 2595 | 'shards': 7, |
| 2596 | }, |
| 2597 | }, |
| 2598 | } |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 2599 | }, |
Stephen Martinis | 54d64ad | 2018-09-21 22:16:20 | [diff] [blame] | 2600 | 'swiftshader_unittests': { |
| 2601 | 'remove_from': [ |
| 2602 | # Save capacity on the hardware where we have only a few machines. |
| 2603 | 'Mac FYI Experimental Release (Intel)', |
| 2604 | 'Mac FYI Experimental Retina Release (AMD)', |
| 2605 | 'Mac FYI Experimental Retina Release (NVIDIA)', |
| 2606 | 'Mac Pro FYI Release (AMD)', |
| 2607 | ], |
| 2608 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2609 | 'sync_integration_tests': { |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 2610 | 'remove_from': [ |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 2611 | 'CrWinAsan(dll)', # https://crbug.com/935598 |
| 2612 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2613 | 'modifications': { |
Erik Chen | e84bc1c | 2019-11-25 23:23:52 | [diff] [blame] | 2614 | 'Linux ASan LSan Tests (1)': { |
| 2615 | 'swarming': { |
| 2616 | 'shards': 4, |
| 2617 | }, |
| 2618 | }, |
Nico Weber | 8fbc283 | 2018-12-14 16:00:57 | [diff] [blame] | 2619 | 'Linux TSan Tests': { |
| 2620 | 'swarming': { |
| 2621 | 'shards': 6, |
| 2622 | }, |
| 2623 | }, |
Sven Zheng | 9a52be5 | 2020-10-09 21:27:12 | [diff] [blame] | 2624 | # TODO(crbug.com/1131588) Tests are flaky only on CQ. |
| 2625 | 'Mac10.13 Tests': { |
| 2626 | 'precommit_args': [ |
| 2627 | '--gtest_filter=-*', |
| 2628 | ], |
| 2629 | }, |
Zhaoyang Li | 69e2e00 | 2021-02-19 21:57:35 | [diff] [blame] | 2630 | # TODO(crbug.com/1131588) Tests are flaky only on CQ. |
| 2631 | 'Mac10.15 Tests': { |
| 2632 | 'precommit_args': [ |
| 2633 | '--gtest_filter=-*', |
| 2634 | ], |
| 2635 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2636 | 'ToTLinuxTSan': { |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2637 | 'swarming': { |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2638 | 'shards': 6, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2639 | }, |
| 2640 | }, |
Stephen Martinis | 75ab55d | 2018-08-30 02:27:12 | [diff] [blame] | 2641 | 'Win10 Tests x64 (dbg)': { |
| 2642 | 'experiment_percentage': 100, # https://crbug.com/840369 |
| 2643 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2644 | 'Win7 Tests (dbg)(1)': { |
| 2645 | 'swarming': { |
| 2646 | 'shards': 2, |
| 2647 | }, |
| 2648 | }, |
| 2649 | 'linux-chromeos-code-coverage': { |
Yuke Liao | 79424e4 | 2020-01-06 21:00:11 | [diff] [blame] | 2650 | 'swarming': { |
| 2651 | 'shards': 4, |
| 2652 | }, |
| 2653 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2654 | 'linux-code-coverage': { |
Yuke Liao | 79424e4 | 2020-01-06 21:00:11 | [diff] [blame] | 2655 | 'swarming': { |
| 2656 | 'shards': 4, |
| 2657 | }, |
| 2658 | }, |
Sven Zheng | fbbf21a | 2021-04-16 23:57:12 | [diff] [blame] | 2659 | # https://crbug.com/1199909, |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 2660 | 'linux-lacros-code-coverage': { |
| 2661 | 'args': [ |
| 2662 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.sync_integration_tests.filter', |
| 2663 | ] |
| 2664 | }, |
Sven Zheng | fbbf21a | 2021-04-16 23:57:12 | [diff] [blame] | 2665 | 'linux-lacros-rel': { |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 2666 | 'args': [ |
Yuke Liao | 56a437dd | 2021-05-05 04:53:40 | [diff] [blame] | 2667 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.sync_integration_tests.filter', |
Sven Zheng | fbbf21a | 2021-04-16 23:57:12 | [diff] [blame] | 2668 | ] |
Anastasiia N | 11c1f8d | 2021-04-19 14:04:42 | [diff] [blame] | 2669 | }, |
| 2670 | 'linux-lacros-tester-rel': { |
| 2671 | 'args': [ |
Yuke Liao | 56a437dd | 2021-05-05 04:53:40 | [diff] [blame] | 2672 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.sync_integration_tests.filter', |
Anastasiia N | 11c1f8d | 2021-04-19 14:04:42 | [diff] [blame] | 2673 | ], |
| 2674 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2675 | }, |
| 2676 | }, |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 2677 | 'system_webview_shell_layout_test_apk': { |
| 2678 | 'remove_from': [ |
| 2679 | 'android-11-x86-fyi-rel', # crbug.com/1165280 |
| 2680 | ], |
| 2681 | }, |
Weizhong Xia | 613fda4 | 2021-04-21 20:11:52 | [diff] [blame] | 2682 | 'system_webview_wpt': { |
| 2683 | 'modifications': { |
| 2684 | 'android-webview-pie-x86-wpt-fyi-rel': { |
Weizhong Xia | 03b8e36e | 2021-06-25 23:23:58 | [diff] [blame] | 2685 | 'args': [ |
| 2686 | '--log-wptreport', |
| 2687 | ], |
Weizhong Xia | 613fda4 | 2021-04-21 20:11:52 | [diff] [blame] | 2688 | 'swarming': { |
| 2689 | 'dimension_sets': [ |
| 2690 | { |
| 2691 | 'machine_type': 'n1-standard-8', |
| 2692 | }, |
| 2693 | ], |
| 2694 | 'shards': 18, |
| 2695 | }, |
| 2696 | }, |
| 2697 | }, |
| 2698 | }, |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 2699 | 'tab_capture_end2end_tests': { |
Nico Weber | e89a3c9 | 2018-07-01 01:30:52 | [diff] [blame] | 2700 | # Run these only on Release bots. |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 2701 | 'remove_from': [ |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 2702 | 'Linux Debug (NVIDIA)', |
| 2703 | 'Mac Debug (Intel)', |
| 2704 | 'Mac Retina Debug (AMD)', |
Yuly Novikov | bc1ccff | 2019-08-03 00:05:49 | [diff] [blame] | 2705 | 'Win10 FYI x64 Debug (NVIDIA)', |
Yuly Novikov | f28f1eca | 2019-07-04 22:43:39 | [diff] [blame] | 2706 | # Disabled due to dbus crashes crbug.com/927465 |
Yuly Novikov | 5865ff7 | 2019-07-09 21:38:05 | [diff] [blame] | 2707 | 'Linux FYI Release (Intel HD 630)', |
| 2708 | 'Linux FYI Release (NVIDIA)', |
Brian Sheedy | 22d051e | 2019-08-07 00:50:16 | [diff] [blame] | 2709 | 'Linux FYI SkiaRenderer Vulkan (Intel HD 630)', |
Yuly Novikov | 5865ff7 | 2019-07-09 21:38:05 | [diff] [blame] | 2710 | 'Linux FYI SkiaRenderer Vulkan (NVIDIA)', |
| 2711 | 'Linux Release (NVIDIA)', |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 2712 | ], |
Emily Hanley | b64ac7c | 2018-05-25 13:36:55 | [diff] [blame] | 2713 | }, |
Haiyang Pan | 8c201b9 | 2020-06-04 01:25:07 | [diff] [blame] | 2714 | 'telemetry_chromium_minidump_unittests': { |
| 2715 | 'remove_from': [ |
Haiyang Pan | 2486dcb | 2020-09-18 17:53:06 | [diff] [blame] | 2716 | 'android-marshmallow-x86-rel-non-cq', # crbug.com/1084352 |
Haiyang Pan | 8c201b9 | 2020-06-04 01:25:07 | [diff] [blame] | 2717 | ], |
| 2718 | }, |
Brian Sheedy | c117f6d | 2020-05-06 02:23:27 | [diff] [blame] | 2719 | 'telemetry_monochrome_minidump_unittests': { |
| 2720 | 'remove_from': [ |
| 2721 | # Monochrome isn't supported on M. |
| 2722 | 'android-marshmallow-arm64-rel', |
Haiyang Pan | 2486dcb | 2020-09-18 17:53:06 | [diff] [blame] | 2723 | 'android-marshmallow-x86-rel-non-cq', |
Brian Sheedy | c117f6d | 2020-05-06 02:23:27 | [diff] [blame] | 2724 | ], |
| 2725 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2726 | 'telemetry_perf_unittests': { |
| 2727 | 'modifications': { |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2728 | 'Linux Tests': { |
| 2729 | 'args': [ |
| 2730 | '--xvfb', |
Ned Nguyen | e6e2604 | 2018-01-17 20:42:48 | [diff] [blame] | 2731 | '--jobs=1', |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2732 | ], |
| 2733 | }, |
Juan Antonio Navarro Perez | 4899edf | 2019-03-14 13:05:35 | [diff] [blame] | 2734 | 'Linux Tests (dbg)(1)': { |
| 2735 | 'args': [ |
| 2736 | '--xvfb', |
| 2737 | '--jobs=1', |
| 2738 | ], |
| 2739 | }, |
Stephanie Kim | 56defb7 | 2020-11-19 21:32:37 | [diff] [blame] | 2740 | # TODO crbug.com/1143924: Remove when experimentation is complete |
| 2741 | 'Linux Tests Robocrop': { |
| 2742 | 'args': [ |
| 2743 | '--xvfb', |
| 2744 | '--jobs=1', |
| 2745 | ], |
| 2746 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2747 | # Disable parallelism on all Mac bots. |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2748 | 'Mac10.11 Tests': { |
| 2749 | 'args': [ |
| 2750 | '--jobs=1', |
| 2751 | ], |
| 2752 | }, |
| 2753 | 'Mac10.12 Tests': { |
| 2754 | 'args': [ |
| 2755 | '--jobs=1', |
| 2756 | ], |
| 2757 | }, |
Ned Nguyen | 6e6e5b3 | 2018-02-21 20:21:50 | [diff] [blame] | 2758 | 'Win7 Tests (dbg)(1)': { |
| 2759 | 'args': [ |
| 2760 | '--jobs=1', |
| 2761 | ], |
| 2762 | 'swarming': { |
| 2763 | 'shards': 20, |
| 2764 | }, |
| 2765 | 'experiment_percentage': 100, |
| 2766 | }, |
Ben Pastene | 69400eb | 2021-03-25 19:27:16 | [diff] [blame] | 2767 | 'chromeos-eve-chrome': { |
| 2768 | 'args': [ |
| 2769 | # TODO(crbug.com/1191132): Re-enable. |
| 2770 | '--skip=benchmarks.benchmark_smoke_unittest.BenchmarkSmokeTest.wasmpspdfkit', |
| 2771 | ], |
| 2772 | }, |
Ben Pastene | 2b4b15f | 2021-03-04 00:39:24 | [diff] [blame] | 2773 | 'chromeos-kevin-chrome': { |
| 2774 | # TODO(crbug.com/1182948): Remove the experiment. |
| 2775 | 'experiment_percentage': 100, |
| 2776 | }, |
Ben Pastene | 7b1384a | 2021-04-22 23:24:32 | [diff] [blame] | 2777 | 'linux-bionic-rel': { |
| 2778 | 'args': [ |
| 2779 | '--xvfb', |
| 2780 | '--jobs=1', |
| 2781 | ], |
| 2782 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2783 | 'linux-chromium-tests-staging-tests': { |
| 2784 | 'args': [ |
| 2785 | '--xvfb', |
| 2786 | '--jobs=1', |
| 2787 | ], |
| 2788 | }, |
| 2789 | 'linux-trusty-rel': { |
| 2790 | 'args': [ |
| 2791 | '--xvfb', |
| 2792 | '--jobs=1', |
| 2793 | ], |
| 2794 | }, |
Stephanie Kim | 5c7f31d | 2021-04-27 18:00:06 | [diff] [blame] | 2795 | 'linux-xenial-rel': { |
| 2796 | 'args': [ |
| 2797 | '--xvfb', |
| 2798 | '--jobs=1', |
| 2799 | ], |
| 2800 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2801 | }, |
| 2802 | 'remove_from': [ |
Haiyang Pan | 2486dcb | 2020-09-18 17:53:06 | [diff] [blame] | 2803 | 'android-marshmallow-x86-rel-non-cq', # crbug.com/1084352 |
Haiyang Pan | 0e39edf4 | 2020-04-28 19:29:01 | [diff] [blame] | 2804 | # There's no need to run telemetry_perf_unittests on both lollipop and |
Erik Chen | 9689472 | 2019-11-21 20:03:39 | [diff] [blame] | 2805 | # marshmallow on the CQ. https://crbug.com/1026487. |
| 2806 | 'android-marshmallow-arm64-rel', |
Haiyang Pan | 363c59a | 2020-07-23 05:47:04 | [diff] [blame] | 2807 | 'android-nougat-arm64-rel', # crbug.com/1108124 |
Andrew Luo | be83fd8 | 2019-12-19 03:07:58 | [diff] [blame] | 2808 | 'android-pie-arm64-rel', |
Garrett Beaty | eef031a | 2019-02-28 01:55:41 | [diff] [blame] | 2809 | # crbug.com/936540 |
Garrett Beaty | eef031a | 2019-02-28 01:55:41 | [diff] [blame] | 2810 | 'Mac10.11 Tests', |
Shenghua Zhang | bd6f1b2 | 2018-03-03 02:59:14 | [diff] [blame] | 2811 | 'Mac10.13 Tests', |
Zhaoyang Li | 69e2e00 | 2021-02-19 21:57:35 | [diff] [blame] | 2812 | 'Mac10.15 Tests', |
Zhaoyang Li | 7842759 | 2021-03-25 19:03:23 | [diff] [blame] | 2813 | 'Mac10.15 Tests (dbg)', |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2814 | 'Linux - Future (dbg)', # client.v8.chromium |
Takuto Ikuta | 9aa015d | 2019-04-15 23:33:29 | [diff] [blame] | 2815 | 'Win10 Tests x64', |
Stephen Martinis | e701f5a | 2018-05-04 01:25:11 | [diff] [blame] | 2816 | 'Win10 Tests x64 (dbg)', |
Kuan Huang | c93e867 | 2021-06-29 21:13:45 | [diff] [blame] | 2817 | 'Win10 Tests x64 20h2', |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2818 | ], |
| 2819 | }, |
Stephen Martinis | 54d64ad | 2018-09-21 22:16:20 | [diff] [blame] | 2820 | 'telemetry_unittests': { |
| 2821 | 'modifications': { |
| 2822 | 'Win10 Tests x64 (dbg)': { |
| 2823 | 'experiment_percentage': 100, # crbug.com/870673 |
Ben Pastene | 9383fe1 | 2020-10-20 21:32:40 | [diff] [blame] | 2824 | }, |
John Budorick | c498fd3c | 2019-03-14 01:16:26 | [diff] [blame] | 2825 | }, |
| 2826 | 'remove_from': [ |
Ben Pastene | 61931775 | 2020-12-03 00:04:14 | [diff] [blame] | 2827 | 'chromeos-kevin-rel', # crbug.com/1141234: Restore when there's more DUTs |
| 2828 | |
John Budorick | c498fd3c | 2019-03-14 01:16:26 | [diff] [blame] | 2829 | # crbug.com/936540 |
John Budorick | c498fd3c | 2019-03-14 01:16:26 | [diff] [blame] | 2830 | 'Mac10.11 Tests', |
Takuto Ikuta | 9aa015d | 2019-04-15 23:33:29 | [diff] [blame] | 2831 | |
| 2832 | 'Win10 Tests x64', |
Kuan Huang | c93e867 | 2021-06-29 21:13:45 | [diff] [blame] | 2833 | 'Win10 Tests x64 20h2', |
John Budorick | c498fd3c | 2019-03-14 01:16:26 | [diff] [blame] | 2834 | ], |
Stephen Martinis | 54d64ad | 2018-09-21 22:16:20 | [diff] [blame] | 2835 | }, |
Brian Sheedy | f3b48d6 | 2020-05-08 23:03:12 | [diff] [blame] | 2836 | 'test_buildbucket_api_gpu_use_cases': { |
| 2837 | 'remove_from': [ |
| 2838 | # crbug.com/1080749 |
| 2839 | 'Optional Linux Release (NVIDIA)', |
| 2840 | ], |
| 2841 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2842 | 'unit_tests': { |
Yun Liu | 3e759dbb | 2019-11-01 19:25:52 | [diff] [blame] | 2843 | 'remove_from': [ |
Haiyang Pan | 0e39edf4 | 2020-04-28 19:29:01 | [diff] [blame] | 2844 | # There's no need to run unit_tests on both lollipop and marshmallow |
Erik Chen | 9689472 | 2019-11-21 20:03:39 | [diff] [blame] | 2845 | # on the CQ. https://crbug.com/1026487. |
| 2846 | 'android-marshmallow-arm64-rel', |
Haiyang Pan | 765477d | 2020-09-22 17:59:55 | [diff] [blame] | 2847 | 'android-marshmallow-x86-rel-non-cq', # runs on MM-x86-rel already |
Ben Pastene | 3e32ffe | 2020-08-07 03:37:07 | [diff] [blame] | 2848 | 'android-pie-arm64-rel', # https://crbug.com/1010211 |
Yun Liu | 3e759dbb | 2019-11-01 19:25:52 | [diff] [blame] | 2849 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2850 | 'modifications': { |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 2851 | 'Linux ASan LSan Tests (1)': { |
John Budorick | 5052d55 | 2017-12-13 02:59:34 | [diff] [blame] | 2852 | # These are slow on the ASAN trybot for some reason. |
| 2853 | # crbug.com/794372 |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 2854 | 'swarming': { |
John Budorick | 5052d55 | 2017-12-13 02:59:34 | [diff] [blame] | 2855 | 'shards': 4, |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 2856 | }, |
| 2857 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2858 | 'Linux Chromium OS ASan LSan Tests (1)': { |
| 2859 | # These are slow on the ASAN trybot for some reason. |
| 2860 | # crbug.com/794372 |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 2861 | 'swarming': { |
| 2862 | 'shards': 2, |
| 2863 | }, |
| 2864 | }, |
Takuto Ikuta | 54671d97 | 2018-07-19 19:06:35 | [diff] [blame] | 2865 | 'Linux ChromiumOS MSan Tests': { |
| 2866 | # These are very slow on the Chrome OS MSAN trybot for some reason. |
| 2867 | # crbug.com/865455 |
| 2868 | 'swarming': { |
| 2869 | 'shards': 2, |
| 2870 | }, |
| 2871 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2872 | 'Linux TSan Tests': { |
Takuto Ikuta | 54671d97 | 2018-07-19 19:06:35 | [diff] [blame] | 2873 | 'swarming': { |
| 2874 | 'shards': 2, |
| 2875 | }, |
| 2876 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2877 | 'ToTLinuxASan': { |
Dirk Pranke | 20eae9a7 | 2017-12-09 18:12:14 | [diff] [blame] | 2878 | 'swarming': { |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2879 | 'shards': 2, |
Dirk Pranke | 20eae9a7 | 2017-12-09 18:12:14 | [diff] [blame] | 2880 | }, |
| 2881 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2882 | 'android-asan': { |
| 2883 | 'args': [ |
| 2884 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.asan.unit_tests.filter', |
| 2885 | ], |
| 2886 | }, |
Takuto Ikuta | 527cdff | 2020-01-29 08:04:27 | [diff] [blame] | 2887 | 'android-marshmallow-arm64-rel-swarming': { |
| 2888 | 'swarming': { |
| 2889 | 'shards': 8, |
| 2890 | }, |
| 2891 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2892 | 'linux-chromeos-chrome': { |
| 2893 | 'args': [ |
| 2894 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.unit_tests.filter', |
| 2895 | ], |
| 2896 | }, |
Ben Pastene | acd5739 | 2019-10-31 02:13:25 | [diff] [blame] | 2897 | 'linux-chromeos-dbg': { |
| 2898 | 'swarming': { |
| 2899 | 'shards': 2, |
| 2900 | }, |
| 2901 | }, |
Erik Chen | d063aef7 | 2019-11-18 19:13:10 | [diff] [blame] | 2902 | 'linux-chromeos-rel': { |
| 2903 | 'swarming': { |
| 2904 | 'shards': 2, |
| 2905 | }, |
| 2906 | }, |
Yuke Liao | 597dd6df7 | 2020-08-18 03:02:54 | [diff] [blame] | 2907 | # https://crbug.com/1111979, |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 2908 | 'linux-lacros-code-coverage': { |
| 2909 | 'args': [ |
| 2910 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.unit_tests.filter', |
| 2911 | ], |
| 2912 | }, |
| 2913 | # https://crbug.com/1111979, |
Yuke Liao | 597dd6df7 | 2020-08-18 03:02:54 | [diff] [blame] | 2914 | 'linux-lacros-rel': { |
| 2915 | 'args': [ |
Yuke Liao | 56a437dd | 2021-05-05 04:53:40 | [diff] [blame] | 2916 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.unit_tests.filter', |
Yuke Liao | 597dd6df7 | 2020-08-18 03:02:54 | [diff] [blame] | 2917 | ], |
| 2918 | }, |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 2919 | # https://crbug.com/1111979, |
| 2920 | 'linux-lacros-tester-rel': { |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 2921 | 'args': [ |
Yuke Liao | 56a437dd | 2021-05-05 04:53:40 | [diff] [blame] | 2922 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.unit_tests.filter', |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 2923 | ], |
| 2924 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2925 | }, |
| 2926 | }, |
Maksim Sisov | 649b7017a | 2021-03-04 08:20:39 | [diff] [blame] | 2927 | 'unit_tests_wayland': { |
| 2928 | 'modifications': { |
| 2929 | # CI Ozone/Wayland tester. |
| 2930 | 'Linux Tester (Ozone Wayland)': { |
| 2931 | 'args': [ |
| 2932 | '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.unit_tests_wayland.filter', |
| 2933 | ], |
| 2934 | }, |
| 2935 | } |
| 2936 | }, |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 2937 | 'video_decode_accelerator_gl_unittest': { |
| 2938 | 'remove_from': [ |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 2939 | # Windows Intel doesn't have the GL extensions to support this test. |
Yuly Novikov | bc1ccff | 2019-08-03 00:05:49 | [diff] [blame] | 2940 | 'Optional Win10 x64 Release (Intel HD 630)', |
| 2941 | 'Win10 FYI x64 Release (Intel HD 630)', |
Yuly Novikov | 5ff1550 | 2019-07-31 00:55:48 | [diff] [blame] | 2942 | 'Win10 FYI x64 Exp Release (Intel HD 630)', |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 2943 | ], |
| 2944 | }, |
Sven Zheng | 577fe5ff | 2020-08-03 22:06:44 | [diff] [blame] | 2945 | 'views_unittests': { |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 2946 | 'modifications': { |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 2947 | # https://crbug.com/1111979, |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 2948 | 'linux-lacros-code-coverage': { |
| 2949 | 'args': [ |
| 2950 | '--gtest_filter=-DesktopWidgetFocusManagerTest.AnchoredDialogInDesktopNativeWidgetAura:' |
| 2951 | 'DesktopWidgetTest*:' |
| 2952 | 'DesktopWindowTreeHostPlatformTest*:' |
| 2953 | 'EditableComboboxTest*:' |
| 2954 | 'MenuRunnerTest*:' |
| 2955 | 'TextfieldTest*:' |
| 2956 | 'TooltipControllerTest*:' |
| 2957 | 'TooltipStateManagerTest*' |
| 2958 | ], |
| 2959 | }, |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 2960 | 'linux-lacros-tester-rel': { |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 2961 | 'args': [ |
| 2962 | '--gtest_filter=-DesktopWidgetFocusManagerTest.AnchoredDialogInDesktopNativeWidgetAura:' |
Yuke Liao | 34721c2 | 2020-08-14 21:41:19 | [diff] [blame] | 2963 | 'DesktopWidgetTest*:' |
| 2964 | 'DesktopWindowTreeHostPlatformTest*:' |
Yuke Liao | cf9db2b | 2020-08-13 19:42:53 | [diff] [blame] | 2965 | 'EditableComboboxTest*:' |
Sven Zheng | ea8903f | 2020-08-14 05:27:51 | [diff] [blame] | 2966 | 'MenuRunnerTest*:' |
Yuke Liao | cf9db2b | 2020-08-13 19:42:53 | [diff] [blame] | 2967 | 'TextfieldTest*:' |
Benjamin Beaudry | 54b3b88 | 2021-03-12 23:55:36 | [diff] [blame] | 2968 | 'TooltipControllerTest*:' |
| 2969 | 'TooltipStateManagerTest*' |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 2970 | ], |
| 2971 | }, |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 2972 | }, |
Sven Zheng | 577fe5ff | 2020-08-03 22:06:44 | [diff] [blame] | 2973 | }, |
Tom Anderson | 76eff05 | 2020-04-01 21:28:52 | [diff] [blame] | 2974 | 'views_unittests_wayland': { |
| 2975 | 'modifications': { |
Maksim Sisov | 69730f8 | 2020-11-11 12:09:13 | [diff] [blame] | 2976 | # CQ tester. |
Tom Anderson | 76eff05 | 2020-04-01 21:28:52 | [diff] [blame] | 2977 | 'Linux Ozone Tester (Wayland)': { |
| 2978 | 'args': [ |
| 2979 | '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.wayland_views_unittests.filter', |
| 2980 | ], |
| 2981 | }, |
Maksim Sisov | 69730f8 | 2020-11-11 12:09:13 | [diff] [blame] | 2982 | # CI tester. |
| 2983 | 'Linux Tester (Ozone Wayland)': { |
| 2984 | 'args': [ |
| 2985 | '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.wayland_views_unittests.filter', |
| 2986 | ], |
| 2987 | }, |
Tom Anderson | 76eff05 | 2020-04-01 21:28:52 | [diff] [blame] | 2988 | }, |
| 2989 | }, |
John Budorick | d02c429de | 2020-01-10 19:02:21 | [diff] [blame] | 2990 | 'viz_unittests': { |
| 2991 | 'modifications': { |
Haiyang Pan | cf76586 | 2021-03-18 20:39:15 | [diff] [blame] | 2992 | 'android-11-x86-fyi-rel': { |
| 2993 | 'args': [ |
| 2994 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.viz_unittests.filter', |
| 2995 | ], |
| 2996 | }, |
Haiyang Pan | 2486dcb | 2020-09-18 17:53:06 | [diff] [blame] | 2997 | 'android-marshmallow-x86-rel-non-cq': { |
John Budorick | afd548b | 2020-01-14 20:45:09 | [diff] [blame] | 2998 | 'args': [ |
John Budorick | d02c429de | 2020-01-10 19:02:21 | [diff] [blame] | 2999 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.viz_unittests.filter', |
| 3000 | ], |
| 3001 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 3002 | 'android-pie-x86-rel': { |
John Budorick | afd548b | 2020-01-14 20:45:09 | [diff] [blame] | 3003 | 'args': [ |
John Budorick | d02c429de | 2020-01-10 19:02:21 | [diff] [blame] | 3004 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.viz_unittests.filter', |
| 3005 | ], |
| 3006 | }, |
| 3007 | }, |
| 3008 | }, |
John Budorick | 20f4fa8d | 2019-08-02 22:58:29 | [diff] [blame] | 3009 | 'vr_android_unittests': { |
| 3010 | 'remove_from': [ |
Michael Thiessen | 2abf005 | 2021-03-05 18:43:07 | [diff] [blame] | 3011 | 'android-lollipop-arm-rel', |
John Budorick | 20f4fa8d | 2019-08-02 22:58:29 | [diff] [blame] | 3012 | ], |
| 3013 | }, |
| 3014 | 'vr_common_unittests': { |
| 3015 | 'remove_from': [ |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 3016 | 'android-pie-x86-rel', |
John Budorick | 20f4fa8d | 2019-08-02 22:58:29 | [diff] [blame] | 3017 | ], |
| 3018 | }, |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 3019 | 'vr_pixeltests': { |
| 3020 | 'remove_from': [ |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 3021 | 'android-pie-x86-rel', |
Kenneth Russell | 8ceeabf | 2017-12-11 17:53:28 | [diff] [blame] | 3022 | 'VR Linux', |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 3023 | ], |
| 3024 | }, |
Nico Weber | e81999ee | 2018-07-01 23:52:43 | [diff] [blame] | 3025 | 'wayland_client_perftests': { |
| 3026 | 'remove_from': [ |
| 3027 | 'linux-chromeos-dbg', # https://crbug.com/859307 |
| 3028 | ], |
| 3029 | }, |
Chong Gu | d1a5c599 | 2021-04-09 04:08:32 | [diff] [blame] | 3030 | 'web_engine_browsertests': { |
| 3031 | 'modifications': { |
| 3032 | 'fuchsia-code-coverage': { |
| 3033 | 'swarming': { |
Chong Gu | 7a46320 | 2021-07-19 18:43:10 | [diff] [blame] | 3034 | 'shards': 28, |
Chong Gu | d1a5c599 | 2021-04-09 04:08:32 | [diff] [blame] | 3035 | }, |
| 3036 | }, |
| 3037 | }, |
| 3038 | }, |
Chong Gu | 4c9e8f11 | 2021-06-02 18:37:26 | [diff] [blame] | 3039 | 'web_engine_integration_tests': { |
| 3040 | 'modifications': { |
| 3041 | 'fuchsia-code-coverage': { |
| 3042 | 'swarming': { |
| 3043 | 'shards': 6, |
| 3044 | }, |
| 3045 | }, |
| 3046 | }, |
| 3047 | }, |
John Budorick | 6335746 | 2019-02-27 23:02:51 | [diff] [blame] | 3048 | 'webdriver_tests_suite': { |
| 3049 | 'remove_from': [ |
| 3050 | 'Linux Tests', # https://crbug.com/929689, https://crbug.com/936557 |
Stephanie Kim | 5c7f31d | 2021-04-27 18:00:06 | [diff] [blame] | 3051 | 'linux-xenial-rel', |
John Budorick | 6335746 | 2019-02-27 23:02:51 | [diff] [blame] | 3052 | ], |
| 3053 | }, |
bsheedy | 048cbdb | 2019-02-04 20:32:05 | [diff] [blame] | 3054 | 'webgl2_conformance_gl_passthrough_tests': { |
| 3055 | 'remove_from': [ |
Geoff Lang | 1fede15 | 2019-10-10 23:03:44 | [diff] [blame] | 3056 | # Not enough capacity. https://crbug.com/982294 |
| 3057 | 'Mac Pro FYI Release (AMD)', |
| 3058 | 'Mac FYI Retina Release (NVIDIA)', |
bsheedy | 048cbdb | 2019-02-04 20:32:05 | [diff] [blame] | 3059 | ], |
| 3060 | }, |
John Budorick | 82e61dfb | 2019-12-10 04:36:09 | [diff] [blame] | 3061 | 'webgl2_conformance_validating_tests': { |
Stephen Martinis | 54d64ad | 2018-09-21 22:16:20 | [diff] [blame] | 3062 | 'remove_from': [ |
| 3063 | # The Mac NVIDIA Retina bots don't have the capacity to run |
| 3064 | # this test suite on mac_optional_gpu_tests_rel. |
| 3065 | 'Optional Mac Retina Release (NVIDIA)', |
| 3066 | ], |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 3067 | 'modifications': { |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 3068 | 'Mac FYI GPU ASAN Release': { |
| 3069 | 'args': [ |
| 3070 | '--is-asan', |
| 3071 | ] |
| 3072 | }, |
| 3073 | }, |
| 3074 | }, |
| 3075 | 'webgl_conformance_gl_passthrough_tests': { |
| 3076 | 'remove_from': [ |
| 3077 | # crbug.com/555545 and crbug.com/649824: |
| 3078 | # Disable webgl_conformance_gl_tests on some Win/AMD cards. |
| 3079 | # Always fails on older cards, flaky on newer cards. |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 3080 | 'Win7 FYI Release (AMD)', |
| 3081 | ], |
| 3082 | }, |
Kenneth Russell | 984f2f1 | 2020-12-15 23:23:35 | [diff] [blame] | 3083 | 'webgl_conformance_metal_passthrough_tests': { |
| 3084 | 'remove_from': [ |
| 3085 | # crbug.com/1158857: re-enable if Metal shader cache workaround is added. |
| 3086 | 'Mac FYI Retina Release (NVIDIA)', |
| 3087 | ], |
| 3088 | }, |
Stephen Martinis | 54d64ad | 2018-09-21 22:16:20 | [diff] [blame] | 3089 | 'webgl_conformance_tests': { |
Kenneth Russell | e63e41f | 2019-04-09 02:45:28 | [diff] [blame] | 3090 | 'remove_from': [ |
| 3091 | # Too slow on this configuration, which is severely hardware |
| 3092 | # constrained. crbug.com/950690 |
| 3093 | 'Mac FYI Retina Debug (NVIDIA)', |
| 3094 | ], |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 3095 | }, |
John Budorick | 82e61dfb | 2019-12-10 04:36:09 | [diff] [blame] | 3096 | 'webgl_conformance_validating_tests': { |
| 3097 | 'modifications': { |
| 3098 | 'Mac FYI GPU ASAN Release': { |
| 3099 | 'args': [ |
| 3100 | '--is-asan', |
| 3101 | ] |
| 3102 | }, |
| 3103 | }, |
| 3104 | }, |
Austin Eng | e8c0ba0 | 2021-07-19 23:55:19 | [diff] [blame] | 3105 | 'webgpu_blink_web_tests': { |
| 3106 | 'modifications': { |
| 3107 | # Increase the timeout with ASAN (crbug.com/1208253) |
| 3108 | 'Dawn Win10 x64 ASAN Release': { |
| 3109 | 'args': [ |
| 3110 | '--time-out-ms=48000', |
| 3111 | ], |
| 3112 | }, |
| 3113 | }, |
| 3114 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3115 | 'webkit_unit_tests': { |
Yun Liu | 16394ab3 | 2019-11-19 16:37:57 | [diff] [blame] | 3116 | 'remove_from': [ |
| 3117 | # Flakily fails on Win7. https://crbug.com/943372. |
| 3118 | 'Win7 Tests (1)', |
| 3119 | 'Win 7 Tests x64 (1)', |
Haiyang Pan | 2489f03 | 2020-09-30 19:05:03 | [diff] [blame] | 3120 | 'android-lollipop-arm-rel', # crbug.com/1133002#c6 |
Haiyang Pan | 90ed7c64 | 2021-02-06 01:22:06 | [diff] [blame] | 3121 | # Runs on android-marshmallow-x86-rel already (crbug.com/1127110) |
| 3122 | 'android-marshmallow-arm64-rel', |
| 3123 | 'android-marshmallow-x86-rel-non-cq', |
Yun Liu | 16394ab3 | 2019-11-19 16:37:57 | [diff] [blame] | 3124 | ], |
Dirk Pranke | 81ff51c | 2017-12-09 19:24:28 | [diff] [blame] | 3125 | 'modifications': { |
John Budorick | 5052d55 | 2017-12-13 02:59:34 | [diff] [blame] | 3126 | 'Linux ASan LSan Tests (1)': { |
| 3127 | # These are very slow on the ASAN trybot for some reason. |
| 3128 | # crbug.com/794372 |
| 3129 | 'swarming': { |
| 3130 | 'shards': 5, |
| 3131 | }, |
| 3132 | }, |
Erik Chen | 681dc028 | 2019-11-26 22:54:49 | [diff] [blame] | 3133 | 'Linux TSan Tests': { |
| 3134 | 'swarming': { |
| 3135 | 'shards': 2, |
| 3136 | }, |
| 3137 | }, |
arthursonzogni | 26889d8 | 2018-05-29 17:18:16 | [diff] [blame] | 3138 | 'Marshmallow 64 bit Tester': { |
| 3139 | # Increase timeout. See https://crbug.com/847229. |
| 3140 | 'swarming': { |
| 3141 | 'hard_timeout': 1200, |
| 3142 | }, |
| 3143 | }, |
Haiyang Pan | c7c009e | 2021-03-18 19:31:23 | [diff] [blame] | 3144 | 'android-11-x86-fyi-rel': { |
| 3145 | 'args': [ |
| 3146 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.blink_unittests.filter', |
| 3147 | ], |
| 3148 | }, |
Omer Katz | 7d2be65 | 2020-01-22 18:13:46 | [diff] [blame] | 3149 | 'linux-blink-heap-concurrent-marking-tsan-rel': { |
| 3150 | 'swarming': { |
| 3151 | 'shards': 2, |
| 3152 | }, |
| 3153 | }, |
Dirk Pranke | 81ff51c | 2017-12-09 19:24:28 | [diff] [blame] | 3154 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3155 | }, |
Haiyang Pan | fbd2b48 | 2020-09-23 23:41:25 | [diff] [blame] | 3156 | 'weblayer_browsertests': { |
| 3157 | 'modifications': { |
Haiyang Pan | d38464f5 | 2021-03-24 00:29:01 | [diff] [blame] | 3158 | 'android-11-x86-fyi-rel': { |
| 3159 | 'args': [ |
| 3160 | # TODO(crbug.com/1191784): Enable this test once the issue is fixed. |
| 3161 | '--gtest_filter=-DownloadBrowserTest.OverrideDownloadDirectory', |
| 3162 | ], |
| 3163 | }, |
Haiyang Pan | fbd2b48 | 2020-09-23 23:41:25 | [diff] [blame] | 3164 | 'android-pie-arm64-rel': { |
| 3165 | # TODO(crbug.com/1111436): Move this back to walleye if/when additional |
| 3166 | # capacity has been deployed. |
| 3167 | 'swarming': { |
| 3168 | 'dimension_sets': [ |
| 3169 | { |
| 3170 | 'device_type': 'sailfish', |
| 3171 | }, |
| 3172 | ], |
| 3173 | }, |
| 3174 | }, |
| 3175 | }, |
| 3176 | }, |
Haiyang Pan | 591dbad | 2020-06-05 20:26:37 | [diff] [blame] | 3177 | 'weblayer_bundle_test': { |
| 3178 | 'remove_from': [ |
Haiyang Pan | 2486dcb | 2020-09-18 17:53:06 | [diff] [blame] | 3179 | 'android-marshmallow-x86-rel-non-cq', # crbug.com/1088013 |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 3180 | 'android-11-x86-fyi-rel', # crbug.com/1165280 |
Haiyang Pan | 591dbad | 2020-06-05 20:26:37 | [diff] [blame] | 3181 | ], |
| 3182 | }, |
| 3183 | 'weblayer_instrumentation_test_apk': { |
| 3184 | 'remove_from': [ |
Haiyang Pan | 2486dcb | 2020-09-18 17:53:06 | [diff] [blame] | 3185 | 'android-marshmallow-x86-rel-non-cq', # crbug.com/1088013 |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 3186 | 'android-11-x86-fyi-rel', # crbug.com/1165280 |
Haiyang Pan | 591dbad | 2020-06-05 20:26:37 | [diff] [blame] | 3187 | ], |
Haiyang Pan | 6d7a15b | 2020-10-03 00:29:19 | [diff] [blame] | 3188 | 'modifications': { |
| 3189 | 'android-pie-arm64-rel': { |
| 3190 | # TODO(crbug.com/1111436): Move this back to walleye if/when additional |
| 3191 | # capacity has been deployed. |
| 3192 | 'swarming': { |
| 3193 | 'dimension_sets': [ |
| 3194 | { |
| 3195 | 'device_type': 'sailfish', |
| 3196 | }, |
| 3197 | ], |
| 3198 | }, |
| 3199 | }, |
| 3200 | }, |
Haiyang Pan | 591dbad | 2020-06-05 20:26:37 | [diff] [blame] | 3201 | }, |
Rakib M. Hasan | 4891990 | 2021-02-26 23:07:20 | [diff] [blame] | 3202 | 'weblayer_instrumentation_test_apk_ToT_Tests': { |
| 3203 | 'modifications': { |
| 3204 | 'android-weblayer-10-x86-rel-tests': { |
| 3205 | 'args': [ |
| 3206 | '--replace-system-package=org.chromium.weblayer.shell,apks/WebLayerShellSystemWebView.apk' |
| 3207 | ] |
| 3208 | }, |
| 3209 | 'android-weblayer-marshmallow-x86-rel-tests': { |
| 3210 | 'args': [ |
| 3211 | '--replace-system-package=org.chromium.weblayer.shell,apks/WebLayerShellSystemWebView.apk' |
| 3212 | ] |
| 3213 | } |
| 3214 | } |
| 3215 | }, |
Haiyang Pan | 4efd9b0 | 2021-03-17 23:58:30 | [diff] [blame] | 3216 | 'weblayer_private_instrumentation_test_apk': { |
| 3217 | 'modifications': { |
| 3218 | # TODO(crbug.com/1189403): Remove the filter once the issue is fixed. |
| 3219 | 'android-11-x86-fyi-rel': { |
| 3220 | 'args': [ |
| 3221 | '--gtest_filter=-org.chromium.weblayer.test.MediaCaptureTest.*', |
| 3222 | ], |
| 3223 | }, |
| 3224 | }, |
| 3225 | }, |
Weizhong Xia | 7d33588 | 2021-01-28 02:49:52 | [diff] [blame] | 3226 | 'weblayer_shell_wpt': { |
| 3227 | 'modifications': { |
| 3228 | # TODO(crbug.com/1171555): remove this when test can run with more emulators |
| 3229 | 'android-weblayer-pie-x86-wpt-fyi-rel': { |
| 3230 | 'swarming': { |
Weizhong Xia | 3671c5f | 2021-01-30 00:22:27 | [diff] [blame] | 3231 | 'dimension_sets': [ |
| 3232 | { |
| 3233 | 'machine_type': 'n1-standard-8', |
| 3234 | }, |
| 3235 | ], |
Weizhong Xia | 7d33588 | 2021-01-28 02:49:52 | [diff] [blame] | 3236 | 'shards': 18, |
| 3237 | }, |
| 3238 | }, |
Weizhong Xia | 0f0c330 | 2021-04-27 00:05:43 | [diff] [blame] | 3239 | 'android-weblayer-pie-x86-wpt-smoketest': { |
| 3240 | 'args': [ |
Weizhong Xia | eb234a4b | 2021-04-28 03:07:53 | [diff] [blame] | 3241 | '--default-exclude', |
Weizhong Xia | 0f0c330 | 2021-04-27 00:05:43 | [diff] [blame] | 3242 | '--include-file=../../third_party/blink/web_tests/android/WPTSmokeTestCases' |
| 3243 | ], |
| 3244 | 'swarming': { |
| 3245 | 'dimension_sets': [ |
| 3246 | { |
| 3247 | 'machine_type': 'n1-standard-8', |
| 3248 | }, |
| 3249 | ], |
| 3250 | 'shards': 3, |
| 3251 | }, |
| 3252 | }, |
Weizhong Xia | 7d33588 | 2021-01-28 02:49:52 | [diff] [blame] | 3253 | }, |
| 3254 | }, |
Haiyang Pan | fbd2b48 | 2020-09-23 23:41:25 | [diff] [blame] | 3255 | 'webview_cts_tests': { |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 3256 | 'remove_from': [ |
| 3257 | 'android-11-x86-fyi-rel', # crbug.com/1165280 |
Ben Joyce | 4677e68 | 2021-03-22 22:19:11 | [diff] [blame] | 3258 | 'android-pie-arm64-coverage-experimental-rel', # TODO(crbug.com/1190999): |
| 3259 | # GLIBC_2.28 Not found. |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 3260 | ], |
Haiyang Pan | fbd2b48 | 2020-09-23 23:41:25 | [diff] [blame] | 3261 | 'modifications': { |
| 3262 | 'android-pie-arm64-rel': { |
| 3263 | # TODO(crbug.com/1111436): Move this back to walleye if/when additional |
| 3264 | # capacity has been deployed. |
| 3265 | 'swarming': { |
| 3266 | 'dimension_sets': [ |
| 3267 | { |
| 3268 | 'device_type': 'sailfish', |
| 3269 | }, |
| 3270 | ], |
| 3271 | }, |
| 3272 | }, |
| 3273 | }, |
| 3274 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3275 | 'webview_instrumentation_test_apk': { |
| 3276 | 'remove_from': [ |
Hans Wennborg | eac4c36c | 2018-05-23 16:04:06 | [diff] [blame] | 3277 | # This test frequently fails on Android, https://crbug.com/824959 |
Haiyang Pan | a3ff55ae | 2020-04-23 18:26:54 | [diff] [blame] | 3278 | 'android-lollipop-arm-rel', |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 3279 | # matching android builders, the test fails on these. |
Hans Wennborg | a0b11ebe | 2018-05-15 16:26:50 | [diff] [blame] | 3280 | 'ToTAndroid', |
John Budorick | 27d2d44e | 2019-05-20 20:26:09 | [diff] [blame] | 3281 | 'android-asan', # https://crbug.com/964562 |
Ben Joyce | 02dc809 | 2021-03-04 21:48:19 | [diff] [blame] | 3282 | 'android-code-coverage-native', # Does not generate profraw data. |
Ben Joyce | 46ca601 | 2021-03-31 19:19:25 | [diff] [blame] | 3283 | 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data. |
Ben Joyce | 02dc809 | 2021-03-04 21:48:19 | [diff] [blame] | 3284 | |
Dirk Pranke | 20eae9a7 | 2017-12-09 18:12:14 | [diff] [blame] | 3285 | # On chromium.swarm, this should possibly be being run (or removed |
Takuto Ikuta | 527cdff | 2020-01-29 08:04:27 | [diff] [blame] | 3286 | # from android-marshmallow-arm64-rel-swarming). |
Haiyang Pan | 1ad3bb03 | 2020-04-24 23:52:03 | [diff] [blame] | 3287 | 'android-lollipop-arm-rel-swarming', |
Garrett Beaty | 47a2d80 | 2020-11-10 20:50:53 | [diff] [blame] | 3288 | # https://crbug.com/1147531 - covered on pie |
| 3289 | 'android-marshmallow-arm64-rel', |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3290 | ], |
Ben Pastene | e17a8e9 | 2018-07-12 21:55:18 | [diff] [blame] | 3291 | 'modifications': { |
Andrew Luo | f08500ae | 2020-01-10 01:24:45 | [diff] [blame] | 3292 | # chromium.android.fyi |
| 3293 | 'Android WebView P FYI (rel)': { |
| 3294 | 'args': [ |
| 3295 | '--annotation', |
| 3296 | 'DisabledTest,FlakyTest' # Monitor status of disabled tests. |
| 3297 | ], |
| 3298 | }, |
Ben Pastene | e17a8e9 | 2018-07-12 21:55:18 | [diff] [blame] | 3299 | 'Oreo Phone Tester': { |
Andrew Luo | 93c4a1e | 2019-08-30 05:26:30 | [diff] [blame] | 3300 | # TODO(crbug.com/997362): Enable this once it's passing. |
bsheedy | 0183346 | 2018-12-07 01:05:57 | [diff] [blame] | 3301 | # TODO(https://crbug.com/884413): Re-enable this once the tests are |
| 3302 | # either passing or there is more capacity. |
| 3303 | 'experiment_percentage': 0, |
Ben Pastene | e17a8e9 | 2018-07-12 21:55:18 | [diff] [blame] | 3304 | }, |
Haiyang Pan | 10386481 | 2021-03-19 19:28:44 | [diff] [blame] | 3305 | 'android-11-x86-fyi-rel': { |
| 3306 | 'args': [ |
| 3307 | # TODO(crbug.com/1189746) Enable this test once the issue is fixed. |
| 3308 | '--gtest_filter=-org.chromium.net.NetworkChangeNotifierTest.testNetworkChangeNotifierJavaObservers', |
| 3309 | ], |
| 3310 | }, |
Kuan Huang | 1f402c8 | 2021-06-08 17:58:18 | [diff] [blame] | 3311 | 'android-pie-arm64-rel': { |
| 3312 | 'swarming': { |
| 3313 | 'shards': 9, |
| 3314 | }, |
| 3315 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 3316 | 'android-pie-x86-rel': { |
Haiyang Pan | fdd9433 | 2020-03-27 02:43:29 | [diff] [blame] | 3317 | 'args': [ |
| 3318 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.webview_instrumentation_test_apk.filter', |
| 3319 | ], |
| 3320 | }, |
Ben Pastene | e17a8e9 | 2018-07-12 21:55:18 | [diff] [blame] | 3321 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3322 | }, |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 3323 | 'webview_ui_test_app_test_apk': { |
| 3324 | 'remove_from': [ |
| 3325 | 'android-11-x86-fyi-rel', # crbug.com/1165280 |
| 3326 | ], |
| 3327 | }, |
bsheedy | 800f506 | 2018-08-07 00:47:54 | [diff] [blame] | 3328 | 'xr_browser_tests': { |
| 3329 | 'remove_from': [ |
Maggie Chen | 4fc2984 | 2018-08-07 19:12:48 | [diff] [blame] | 3330 | # Fails on the bot, http://crbug.com/868143 |
| 3331 | 'Win7 FYI Release (AMD)', |
bsheedy | 800f506 | 2018-08-07 00:47:54 | [diff] [blame] | 3332 | ], |
| 3333 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3334 | } |