blob: 7934b35ce225ee9d5feb5129130eb1b8cd6aa965 [file] [log] [blame]
Kenneth Russelleb60cbd22017-12-05 07:54:281# 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 Yoone2188f62020-08-24 20:55:5716# 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 Russelleb60cbd22017-12-05 07:54:2823# The goal is to drive the number of exceptions to zero, to make all
24# the bots behave similarly.
25{
Andrew Luo38b311f2019-10-04 03:42:0926 'android_browsertests': {
27 'modifications': {
Haiyang Panca7fcec2021-03-19 02:11:1028 'android-11-x86-fyi-rel': {
29 'swarming': {
30 'shards': 2,
31 },
32 },
Andrew Luo38b311f2019-10-04 03:42:0933 'android-pie-arm64-rel': {
Andrew Luobe83fd82019-12-19 03:07:5834 'args': [
35 '--gtest_filter=-ImportantSitesUtilBrowserTest.DSENotConsideredImportantInRegularMode', # https://crbug.com/1034001
36 ],
Haiyang Panfbd2b482020-09-23 23:41:2537 # TODO(crbug.com/1111436): Move this back to walleye if/when additional
38 # capacity has been deployed.
39 'swarming': {
40 'dimension_sets': [
41 {
42 'device_type': 'sailfish',
43 },
44 ],
Haiyang Pan1678f0c02021-03-09 23:05:0945 'shards': 2,
Haiyang Panfbd2b482020-09-23 23:41:2546 },
Andrew Luo38b311f2019-10-04 03:42:0947 },
Haiyang Pan08d09dc2020-04-01 16:11:2148 'android-pie-x86-rel': {
John Budorick191adfcd2020-01-29 18:19:0449 'args': [
50 '--gtest_filter=-ImportantSitesUtilBrowserTest.DSENotConsideredImportantInRegularMode', # https://crbug.com/1034001
51 ],
Haiyang Pan7cd609d2021-04-08 20:17:2452 'swarming': {
53 'shards': 2,
54 },
John Budorick191adfcd2020-01-29 18:19:0455 },
Andrew Luo38b311f2019-10-04 03:42:0956 },
57 },
Sven Zhengc60debc2020-09-10 18:40:5258 'android_sync_integration_tests': {
59 'remove_from': [
60 # Remove from CQ bots due to capacity.
61 'android-marshmallow-arm64-rel',
62 'android-lollipop-arm-rel',
63 ],
64 },
Kenneth Russelleb60cbd22017-12-05 07:54:2865 'android_webview_unittests': {
66 'remove_from': [
John Budorick826d5ed2017-12-28 19:27:3267 # On chromium.android, these do not need to run prior to M.
Haiyang Pana3ff55ae2020-04-23 18:26:5468 'android-lollipop-arm-rel',
Kenneth Russelleb60cbd22017-12-05 07:54:2869 ],
Kenneth Russelleb60cbd22017-12-05 07:54:2870 },
Jamie Madillc9ae75d2020-10-23 19:19:4871 'angle_end2end_tests': {
72 'remove_from': [
73 # TODO(ynovikov) Investigate why the test breaks on older devices.
74 'Android FYI Release (Nexus 5)',
75 'Android FYI Release (Nexus 6)',
76 'Android FYI Release (Nexus 9)',
Jamie Madillc9ae75d2020-10-23 19:19:4877 # Temporarily disabled due to bad NVIDIA driver upgrade crbug.com/950542
78 'Linux FYI Debug (NVIDIA)',
79 ],
Yuly Novikov60cbf642020-11-19 20:43:1580 'modifications': {
81 # anglebug.com/5328 suspecting blue screen caused by multiprocess
Yuly Novikov60cbf642020-11-19 20:43:1582 'Optional Win10 x64 Release (Intel HD 630)': {
83 'args': [
84 '--max-processes=1',
85 ],
86 },
87 'Win10 FYI x64 Exp Release (Intel HD 630)': {
88 'args': [
89 '--max-processes=1',
90 ],
91 },
92 'Win10 FYI x64 Release (Intel HD 630)': {
93 'args': [
94 '--max-processes=1',
95 ],
96 },
Yuly Novikov80d2e672021-02-13 00:16:0497 'win10-angle-x64-intel': {
98 'args': [
99 '--max-processes=1',
100 ],
101 },
Yuly Novikov60cbf642020-11-19 20:43:15102 },
Yuly Novikov922b1fa92021-02-25 22:25:40103 'replacements': {
104 'Linux FYI Release (AMD RX 5500 XT)': {
105 'args': {
106 '--max-processes': '1',
107 },
108 },
109 },
Jamie Madillc9ae75d2020-10-23 19:19:48110 },
Ian Elliott3634d682021-03-10 21:19:30111 'angle_gles1_conformance_tests': {
112 'replacements': {
113 'Win10 FYI x64 Debug (NVIDIA)': {
114 'args': {
115 '--test-timeout': '60',
116 },
117 },
Ian Elliott3634d682021-03-10 21:19:30118 },
119 },
Jamie Madillc9ae75d2020-10-23 19:19:48120 'angle_unittests': {
121 'remove_from': [
122 # On Android, these are already run on the main waterfall.
123 'Android FYI Release (Nexus 5X)',
Yuly Novikovc1117ae82021-01-15 22:33:36124 # Times out listing tests crbug.com/1167314
125 'android-asan',
Jamie Madillc9ae75d2020-10-23 19:19:48126 # Does not currently work on Lacros configurations.
Junhua Chen39dd2dba2021-05-05 17:51:54127 'linux-lacros-code-coverage',
Jamie Madillc9ae75d2020-10-23 19:19:48128 'linux-lacros-tester-rel',
129 'linux-lacros-tester-fyi-rel',
130 ],
Jamie Madillc9ae75d2020-10-23 19:19:48131 },
132 'angle_white_box_tests': {
Yuly Novikov60cbf642020-11-19 20:43:15133 'modifications': {
134 # anglebug.com/5328 suspecting blue screen caused by multiprocess
Yuly Novikov60cbf642020-11-19 20:43:15135 'Optional Win10 x64 Release (Intel HD 630)': {
136 'args': [
137 '--max-processes=1',
138 ],
139 },
140 'Win10 FYI x64 Exp Release (Intel HD 630)': {
141 'args': [
142 '--max-processes=1',
143 ],
144 },
145 'Win10 FYI x64 Release (Intel HD 630)': {
146 'args': [
147 '--max-processes=1',
148 ],
149 },
Yuly Novikov80d2e672021-02-13 00:16:04150 'win10-angle-x64-intel': {
151 'args': [
152 '--max-processes=1',
153 ],
154 },
Yuly Novikov60cbf642020-11-19 20:43:15155 },
Jamie Madillc9ae75d2020-10-23 19:19:48156 },
Yuke Liaob6beaeca2021-04-29 23:41:51157 'aura_unittests_amd64-generic': {
158 'remove_from': [
159 # TODO(crbug.com/1204231): Re-enable.
160 'lacros-amd64-generic-rel',
161 ]
162 },
Yuke Liao79a8cf52021-06-11 18:14:34163 'aura_unittests_eve': {
164 'remove_from': [
165 # TODO(crbug.com/1204231): Re-enable.
166 'lacros-amd64-generic-rel',
167 ]
168 },
Chong Gudf7fbe92021-02-24 02:55:58169 'base_unittests': {
170 'modifications': {
Haiyang Panc7c009e2021-03-18 19:31:23171 'android-11-x86-fyi-rel': {
172 'args': [
173 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.base_unittests.filter',
174 ],
175 },
Chong Gudf7fbe92021-02-24 02:55:58176 'fuchsia-code-coverage': {
177 'swarming': {
178 'shards': 5,
179 },
180 },
181 },
182 },
Haiyang Pan363c59a2020-07-23 05:47:04183 'blink_platform_unittests': {
184 'modifications': {
185 # TODO(crbug.com/1108121): Remove this filter
186 'android-nougat-arm64-rel': {
187 'args': [
188 '--gtest_filter=-HarfBuzzShaperTest.ShapeHorizontalWithoutSubpixelPositionWithKerningIsRounded',
189 ],
190 },
Haiyang Panfbd2b482020-09-23 23:41:25191 'android-pie-arm64-rel': {
192 # TODO(crbug.com/1111436): Move this back to walleye if/when additional
193 # capacity has been deployed.
194 'swarming': {
195 'dimension_sets': [
196 {
197 'device_type': 'sailfish',
198 },
199 ],
200 },
201 },
Chong Gu52481452021-04-02 17:52:41202 'fuchsia-code-coverage': {
203 'swarming': {
204 'shards': 5,
205 },
206 },
Haiyang Pan363c59a2020-07-23 05:47:04207 },
208 },
Chong Guc2d145e2021-03-31 19:55:34209 'blink_unittests': {
210 'modifications': {
211 'fuchsia-code-coverage': {
212 'swarming': {
213 'shards': 30,
214 },
215 },
216 },
217 },
John Chenaab16fc02020-03-03 06:35:45218 'blink_web_tests': {
219 'remove_from': [
Nico Weberab2d6122021-06-22 12:31:39220 'mac-arm64-rel-tests', # TODO(https://crbug.com/1169240): Enable
Ilia Samsonovca3dfd52020-08-07 18:39:01221 'Mac10.11 Tests',
John Chenaab16fc02020-03-03 06:35:45222 'Win 7 Tests x64 (1)', # 64-bit win is unsupported by the layout tests.
223 'Win10 Tests x64 (dbg)',
224 ],
225 'modifications': {
226 'Fuchsia x64': {
227 'args': [
228 '--platform=fuchsia',
229 ],
230 'swarming': {
231 'shards': 1,
232 },
233 },
234 'Linux Tests': {
235 "args": [
236 "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw",
237 ],
238 },
239 'Linux Tests (dbg)(1)': {
240 'args': [
241 '--debug',
242 ],
243 'swarming': {
Sven Zheng439fcdf2021-07-13 20:14:57244 'shards': 30,
John Chenaab16fc02020-03-03 06:35:45245 },
246 },
John Chenaab16fc02020-03-03 06:35:45247 'Mac10.11 Tests': {
248 # TODO(kbr): this is essentially redundant.
249 'swarming': {
250 'dimension_sets': [
251 {
Dirk Pranke772f55f2021-04-28 04:51:16252 'cpu': 'x86-64',
John Chenaab16fc02020-03-03 06:35:45253 'gpu': 'none',
254 'os': 'Mac-10.11.6',
255 },
256 ],
257 'shards': 25,
258 },
259 },
260 'Mac10.12 Tests': {
261 'swarming': {
262 'shards': 25,
263 },
264 },
265 'Mac10.13 Tests': {
266 'swarming': {
267 'dimension_sets': [
268 {
Erik Staab59591f32020-08-25 23:07:07269 'gpu': None,
John Chenaab16fc02020-03-03 06:35:45270 },
271 ],
272 'shards': 25,
273 },
274 },
Zhaoyang Li69e2e002021-02-19 21:57:35275 'Mac10.15 Tests': {
276 'swarming': {
277 'dimension_sets': [
278 {
279 'gpu': None,
280 },
281 ],
282 'shards': 25,
283 },
284 },
Zhaoyang Li78427592021-03-25 19:03:23285 'Mac10.15 Tests (dbg)': {
286 'args': [
287 '--debug',
288 ],
289 'swarming': {
Lindsay Pasricha3b175ee2021-04-20 03:08:18290 'shards': 25,
Zhaoyang Li78427592021-03-25 19:03:23291 },
292 },
Chong Gu75af969a2021-03-22 14:46:14293 'ToTFuchsia x64': {
294 'args': [
295 '--platform=fuchsia',
296 ],
297 'swarming': {
298 'shards': 1,
299 },
300 },
John Chenaab16fc02020-03-03 06:35:45301 'V8 Blink Linux Debug': {
Michael Achenbach455d39242020-06-22 13:33:45302 # This builder compiles Chromium in release mode, but V8 in debug.
303 # TODO(machenbach): Change name and out directory of this builder to
304 # something less confusing.
John Chenaab16fc02020-03-03 06:35:45305 'args': [
Michael Achenbach455d39242020-06-22 13:33:45306 '-t',
307 'Debug',
308 '--release',
John Chenaab16fc02020-03-03 06:35:45309 ],
310 },
311 'V8 Blink Linux Future': {
312 'args': [
313 '--additional-driver-flag=--js-flags=--future',
314 ],
315 },
316 'WebKit Linux ASAN': {
317 'args': [
318 '--additional-expectations',
319 '../../third_party/blink/web_tests/ASANExpectations',
320 '--time-out-ms',
321 '48000',
322 '--enable-sanitizer',
323 ],
324 'swarming': {
325 'shards': 20,
326 },
327 },
328 'WebKit Linux Leak': {
329 'args': [
330 '--additional-expectations',
331 '../../third_party/blink/web_tests/LeakExpectations',
332 '--time-out-ms',
333 '48000',
334 '--enable-leak-detection',
335 ],
336 'swarming': {
337 'shards': 10,
338 },
339 },
340 'WebKit Linux MSAN': {
341 'args': [
342 '--additional-expectations',
343 '../../third_party/blink/web_tests/MSANExpectations',
344 '--time-out-ms',
345 '66000',
346 '--enable-sanitizer',
347 ],
348 'swarming': {
349 'expiration': 36000,
350 'hard_timeout': 10800,
351 'io_timeout': 3600,
352 'shards': 20,
353 },
354 },
355 'WebKit Linux composite_after_paint Dummy Builder': {
356 'args': [
357 '--additional-driver-flag=--enable-blink-features=CompositeAfterPaint',
358 ],
Xianzhu Wang2dc614e2021-03-04 22:56:39359 'swarming': {
360 'shards': 20,
361 },
John Chenaab16fc02020-03-03 06:35:45362 },
363 'WebKit Linux layout_ng_disabled Builder': {
364 'args': [
365 '--additional-driver-flag=--disable-blink-features=LayoutNG',
366 ],
Stephen Martinis6eb8a5572021-03-02 00:23:08367 'swarming': {
368 'shards': 20,
369 },
John Chenaab16fc02020-03-03 06:35:45370 },
371 'Win10 Tests x64': {
372 'args': [
373 '--target',
Takuto Ikutab28b582e2021-02-10 01:41:21374 'Release_x64',
John Chenaab16fc02020-03-03 06:35:45375 ],
376 'swarming': {
377 "shards": 28
378 },
379 },
380 'Win10 Tests x64 (dbg)': {
381 'args': [
382 '--debug',
383 '--target',
Takuto Ikutab28b582e2021-02-10 01:41:21384 'Debug_x64',
John Chenaab16fc02020-03-03 06:35:45385 ],
386 },
Kuan Huangc93e8672021-06-29 21:13:45387 'Win10 Tests x64 20h2': {
388 'args': [
389 '--target',
390 'Release_x64',
391 ],
392 'swarming': {
393 "shards": 28
394 },
395 },
John Chenaab16fc02020-03-03 06:35:45396 'Win7 Tests (dbg)(1)': {
397 'args': [
398 '--debug',
399 '--time-out-ms',
400 '60000'
401 ],
402 'experiment_percentage': 100,
403 # TODO(kbr): the "Windows-7-SP1" Swarming dimension set is implicit,
404 # from prefered_os_dimension in
405 # tools/build/scripts/slave/recipe_modules/swarming/api.py. Ideally,
406 # Swarming dimensions would be either specified for all testers on the
407 # waterfall (and therefore, explicitly specified for all tests in the
408 # generated JSON), or this would be removed, and the implicit one used.
409 'swarming': {
410 'dimension_sets': [
411 {
412 'os': 'Windows-7-SP1',
413 }
414 ],
415 },
416 },
417 # tryserver.chromium.android
418 'android_blink_rel': {
419 'args': [
420 '--release',
421 '--android',
422 # TODO(crbug.com/912120): Breakpad was entirely disabled on
423 # Android. Remove this when it no longer affects Android crash
424 # log handling.
425 '--disable-breakpad',
426 # TODO(crbug.com/875172): run on the real GPU since the
427 # software fallback, SwiftShader, isn't yet for 32-bit ARM.
428 '--additional-driver-flag=--use-gpu-in-tests',
429 ],
430 },
431 'devtools_frontend_linux_blink_light_rel': {
432 'args': [
433 'http/tests/devtools',
434 ],
435 'swarming': {
436 'shards': 4,
437 },
438 },
439 'fuchsia-fyi-x64-rel': {
440 'args': [
441 '--platform=fuchsia',
442 ],
443 'swarming': {
444 'shards': 1,
445 },
446 },
Mathias Carlen30968a62020-03-31 08:47:04447 'linux-autofill-assistant': {
448 'args': [
449 '--release',
450 ],
451 },
Yuzu Saijo9709bcc2020-03-18 09:12:20452 'linux-bfcache-rel': {
John Chenaab16fc02020-03-03 06:35:45453 'args': [
Hitoshi Yoshida01e12b32020-11-27 02:47:59454 '--additional-driver-flag=--enable-features=BackForwardCache:enable_same_site/true',
John Chenaab16fc02020-03-03 06:35:45455 '--additional-expectations=../../third_party/blink/web_tests/FlagExpectations/enable-features=BackForwardCache',
456 ],
457 },
458 'linux-blink-animation-use-time-delta': {
459 'args': [
460 '--debug',
461 ],
462 },
John Chenaab16fc02020-03-03 06:35:45463 'linux-blink-heap-concurrent-marking-tsan-rel': {
464 'args': [
465 '--release',
466 '--additional-driver-flag=--enable-features=BlinkHeapConcurrentMarking',
467 ],
468 },
Daniel Libby178c9832020-10-08 20:36:14469 'linux-blink-web-tests-force-accessibility-rel': {
470 'args': [
471 '--additional-driver-flag=--force-renderer-accessibility',
472 ],
473 },
John Chenaab16fc02020-03-03 06:35:45474 'linux-code-coverage': {
475 'args': [
476 '--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw',
477 ],
478 'swarming': {
479 'shards': 20,
480 },
481 },
Prakharda595bf22021-07-13 17:26:57482 'linux-exp-code-coverage': {
483 'args': [
484 '--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw',
485 ],
486 'swarming': {
487 'shards': 20,
488 },
489 },
Aaron Gable40f79aa2020-03-21 01:21:15490 'linux-layout-tests-edit-ng': {
491 'args': [
Yoshifumi Inouebebca262020-04-08 22:03:49492 '--additional-driver-flag=--enable-blink-features=EditingNG',
Aaron Gable40f79aa2020-03-21 01:21:15493 ],
494 },
Stephanie Kim5c7f31d2021-04-27 18:00:06495 'linux-xenial-rel': {
496 "args": [
497 "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw",
498 ],
499 },
John Chenaab16fc02020-03-03 06:35:45500 'mac10.12-blink-rel-dummy': {
501 'swarming': {
502 'shards': 20,
503 },
504 },
505 'mac10.13-blink-rel-dummy': {
506 'swarming': {
507 'shards': 20,
508 },
509 },
John Chenaab16fc02020-03-03 06:35:45510 'mac10.14-blink-rel-dummy': {
511 'swarming': {
Xinan Lind2f91712021-04-29 21:13:56512 # Increase timeout and reduce shards.
513 # See https://crbug.com/1203565.
514 'shards': 12,
515 'hard_timeout': 1800,
John Chenaab16fc02020-03-03 06:35:45516 },
517 },
Ilia Samsonov7efe05e2020-05-07 19:00:46518 'mac10.15-blink-rel-dummy': {
519 'swarming': {
520 'shards': 20,
521 },
522 },
Ilia Samsonovdd271c6c22020-09-08 22:24:44523 'mac11.0-blink-rel-dummy': {
Ilia Samsonovdd271c6c22020-09-08 22:24:44524 'swarming': {
Dirk Pranke2cc61792021-06-10 20:24:54525 'shards': 12,
526 'hard_timeout': 1800,
Ilia Samsonovdd271c6c22020-09-08 22:24:44527 },
528 },
Weizhong Xiadfc98e02021-04-29 22:39:38529 'win10-blink-rel-dummy': {
530 'swarming': {
531 'hard_timeout': 1200,
532 },
533 },
John Chenaab16fc02020-03-03 06:35:45534 },
535 },
John Budorickca995852019-06-26 16:55:55536 'breakpad_unittests': {
537 'modifications': {
538 'android-asan': {
539 'args': [
540 '--test-launcher-filter-file=../../testing/buildbot/filters/android.asan.breakpad_unittests.filter',
541 ],
542 },
543 },
544 },
Kenneth Russelleb60cbd22017-12-05 07:54:28545 'browser_tests': {
Kenneth Russellfbda3c532017-12-08 23:57:24546 'remove_from': [
Brad Halla36886c2019-02-26 16:52:29547 'CrWinAsan(dll)', # https://crbug.com/935598
Nico Weber3af4da72018-02-27 01:59:41548 'linux-win_cross-rel',
Nico Weberdae13cd92018-12-14 13:56:26549 'ToTLinuxTSan', # https://crbug.com/368525
Zhaoyang Li69e2e002021-02-19 21:57:35550 # TODO(crbug.com/1171053): Enable the suite in 'Mac10.13 Tests' once it's
551 # off CQ.
Gary Tongd5f5a742021-01-29 00:01:13552 'Mac10.13 Tests', # https://crbug.com/1042757
Zhaoyang Li69e2e002021-02-19 21:57:35553 'Mac10.15 Tests', # https://crbug.com/1042757
Lindsay Pasricha8155d052021-04-22 00:06:43554 'Mac10.15 Tests (dbg)', # https://crbug.com/1201386
555 'mac-code-coverage', # https://crbug.com/1201386
Stephen Martinis31dde712021-04-23 00:15:53556 'Linux TSan (bionic)', # https://crbug.com/368525
Nico Weberd36959682018-04-12 03:33:46557 'Linux TSan Tests', # https://crbug.com/368525
Stephen Martinis31dde712021-04-23 00:15:53558 # TODO(crbug.com/1200904): Remove after migration
Stephen Martinise701f5a2018-05-04 01:25:11559 'Win10 Tests x64 (dbg)',
Kenneth Russellfbda3c532017-12-08 23:57:24560 ],
Kenneth Russelleb60cbd22017-12-05 07:54:28561 'modifications': {
Nico Weber3f919792020-06-12 23:34:52562 'CrWinAsan': {
563 # These are very slow on the ASAN trybot for some reason.
564 # crbug.com/794372
565 'swarming': {
566 'shards': 40,
567 },
568 },
569 'CrWinAsan(dll)': {
570 # These are very slow on the ASAN trybot for some reason.
571 # crbug.com/794372
572 'swarming': {
573 'shards': 40,
574 },
575 },
Stephen Martinis1384ff92020-01-07 19:52:15576 'Linux - Future (dbg)': { # client.v8.chromium
Yuke Liaoea70f472019-12-19 06:03:36577 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:15578 'shards': 10,
Yuke Liaoea70f472019-12-19 06:03:36579 },
580 },
Stephen Martinis1384ff92020-01-07 19:52:15581 'Linux ASan LSan Tests (1)': {
582 # These are very slow on the ASAN trybot for some reason.
583 # crbug.com/794372
Roberto Carrillo2c9ec972019-03-20 03:11:19584 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:15585 'shards': 40,
Roberto Carrillo2c9ec972019-03-20 03:11:19586 },
587 },
Chris Cunningham1d0e9e12020-02-26 22:56:40588 'Linux ASan Tests (sandboxed)': {
589 'swarming': {
John Abd-El-Malek3a631612020-07-08 21:40:41590 'shards': 30, # https://crbug.com/1103330
Chris Cunningham1d0e9e12020-02-26 22:56:40591 },
592 },
Stephen Martinis1384ff92020-01-07 19:52:15593 'Linux Chromium OS ASan LSan Tests (1)': {
594 # These are very slow on the ASAN trybot for some reason.
595 # crbug.com/794372
Roberto Carrillo5a5c98dc2019-10-30 22:33:51596 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:15597 'shards': 31,
Roberto Carrillo5a5c98dc2019-10-30 22:33:51598 },
599 },
Stephen Martinis1384ff92020-01-07 19:52:15600 'Linux ChromiumOS MSan Tests': {
601 # These are very slow on the Chrome OS MSAN trybot for some reason.
602 # crbug.com/865455
Kenneth Russell56a3e862017-12-08 03:11:34603 'swarming': {
Ben Pastene44221d32020-05-21 23:38:36604 'shards': 32,
Kenneth Russell56a3e862017-12-08 03:11:34605 },
Ben Pastene44221d32020-05-21 23:38:36606 'args': [
607 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.msan.browser_tests.oobe_negative.filter',
608 ],
Kenneth Russell56a3e862017-12-08 03:11:34609 },
John Budorick614f91a2020-03-30 20:34:55610 'Linux Tests (dbg)(1)': {
611 # crbug.com/1066161
612 'swarming': {
613 'shards': 20,
614 },
615 },
Stephen Martinis1384ff92020-01-07 19:52:15616 'Mac ASan 64 Tests (1)': {
Kenneth Russellfbda3c532017-12-08 23:57:24617 'swarming': {
Stephen Martiniscd3c3832020-11-19 22:01:24618 'shards': 30,
Kenneth Russellfbda3c532017-12-08 23:57:24619 },
Lindsay Pasricha8155d052021-04-22 00:06:43620 # crbug.com/1196416
621 'args': [
622 '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac-rel.browser_tests.filter',
623 ],
Kenneth Russellfbda3c532017-12-08 23:57:24624 },
Lindsay Pasricha76f44d22021-04-07 16:16:26625 'Mac10.15 Tests': {
626 # crbug.com/1042757
627 'swarming': {
628 'dimension_sets': [
629 {
630 # These shards are liable to time out when running on macmini7,1.
631 'cores': '8|12',
632 }
633 ],
634 },
635 # crbug.com/1196416
636 'args': [
637 '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac-rel.browser_tests.filter',
638 ],
639 },
Stephen Martinis1384ff92020-01-07 19:52:15640 'ToTWin(dbg)': {
Kenneth Russelleb60cbd22017-12-05 07:54:28641 'swarming': {
John Budorickca14c76f62017-12-09 14:19:18642 'shards': 20,
Kenneth Russelleb60cbd22017-12-05 07:54:28643 },
644 },
Stephen Martinis1384ff92020-01-07 19:52:15645 'ToTWin64(dbg)': {
Kenneth Russell8ceeabf2017-12-11 17:53:28646 'swarming': {
647 'shards': 20,
648 },
649 },
Kenneth Russell6c83d212018-07-27 20:52:59650 'Win10 Tests x64': {
651 # crbug.com/868082
652 'args': [
653 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
654 ],
Takuto Ikutac9c269a2019-01-10 22:40:25655 'swarming': {
656 # This is for slow test execution that often becomes a critical path of
657 # swarming jobs. crbug.com/868114
658 'shards': 15,
659 }
Kenneth Russell6c83d212018-07-27 20:52:59660 },
Kuan Huangc93e8672021-06-29 21:13:45661 'Win10 Tests x64 20h2': {
662 # crbug.com/868082
663 'args': [
664 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
665 ],
666 'swarming': {
667 # This is for slow test execution that often becomes a critical path of
668 # swarming jobs. crbug.com/868114
669 'shards': 15,
670 }
671 },
Stephen Martinis1384ff92020-01-07 19:52:15672 'Win7 Tests (1)': {
673 # This is for slow test execution that often becomes a critical path of
674 # swarming jobs. crbug.com/868114
675 'swarming': {
676 'shards': 15,
677 },
678 },
679 'Win7 Tests (dbg)(1)': {
Pavol Markoc579e072019-12-05 22:42:02680 'swarming': {
681 'shards': 20,
682 },
683 },
Stephen Martinis1384ff92020-01-07 19:52:15684 'linux-chromeos-chrome': {
685 # TODO(https://crbug.com/932269): Promote out of experiment when the
686 # tests are green.
687 'args': [
688 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.browser_tests.filter',
689 ],
690 },
691 'linux-chromeos-code-coverage': {
Nico Weber0c2861b2018-12-14 18:05:16692 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:15693 'shards': 50,
694 },
695 },
696 'linux-chromeos-dbg': {
697 'swarming': {
Garrett Beatyd81c9182021-05-12 02:52:50698 'shards': 40,
Stephen Martinis1384ff92020-01-07 19:52:15699 },
700 },
Jacob Kopczynski3a555bd32020-12-10 01:41:16701 'linux-chromeos-ltc': {
702 'args': [
703 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.browser_tests.filter',
704 ],
705 },
706 'linux-chromeos-lts': {
707 'args': [
Noel Gordon2e323612021-04-14 21:51:36708 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.browser_tests.filter',
Jacob Kopczynski3a555bd32020-12-10 01:41:16709 ],
710 },
Stephen Martinis1384ff92020-01-07 19:52:15711 'linux-chromeos-rel': {
712 'swarming': {
713 'shards': 20,
Stephanie Kime9008f72020-03-05 23:01:16714 'dimension_sets': [
715 {
716 'kvm': '1',
717 },
718 ],
Stephen Martinis1384ff92020-01-07 19:52:15719 },
720 },
721 'linux-code-coverage': {
Yuke Liao58e1d202020-03-20 23:02:01722 'args': [
723 '--no-sandbox',
724 ],
Stephen Martinis1384ff92020-01-07 19:52:15725 'swarming': {
726 'shards': 50,
727 },
728 },
Junhua Chen39dd2dba2021-05-05 17:51:54729 'linux-lacros-code-coverage': {
730 'args': [
Ben Pastened1b2fd192021-05-11 19:10:18731 '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.browser_tests.filter',
Junhua Chen39dd2dba2021-05-05 17:51:54732 ],
733 },
Yuke Liaod75285f92020-08-18 18:33:56734 'linux-lacros-rel': {
735 'args': [
Ben Pastened1b2fd192021-05-11 19:10:18736 '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.browser_tests.filter',
Yuke Liaod75285f92020-08-18 18:33:56737 ],
738 },
Sven Zheng80734f12020-08-06 06:50:39739 'linux-lacros-tester-rel': {
740 'args': [
Ben Pastened1b2fd192021-05-11 19:10:18741 '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.browser_tests.filter',
Sven Zheng80734f12020-08-06 06:50:39742 ],
743 },
Stephen Martinis1384ff92020-01-07 19:52:15744 'linux-trusty-rel': {
745 'args': [
John Budorick79ec9012020-01-08 21:56:31746 '--test-launcher-filter-file=../../testing/buildbot/filters/linux_trusty_rel.browser_tests.filter',
747 ],
Stephen Martinis1384ff92020-01-07 19:52:15748 },
Stephen Martinis1384ff92020-01-07 19:52:15749 'win-asan': {
Nico Weber3f919792020-06-12 23:34:52750 # These are very slow on the ASAN trybot for some reason.
751 # crbug.com/794372
Stephen Martinis1384ff92020-01-07 19:52:15752 'swarming': {
Nico Weber3f919792020-06-12 23:34:52753 'shards': 40,
Nico Weber0c2861b2018-12-14 18:05:16754 },
755 },
Kenneth Russelleb60cbd22017-12-05 07:54:28756 },
757 },
Maksim Sisov4af9c032020-06-12 12:43:11758 'browser_tests_wayland': {
759 'modifications': {
Maksim Sisov69730f82020-11-11 12:09:13760 # CQ tester.
Maksim Sisov4af9c032020-06-12 12:43:11761 'Linux Ozone Tester (Wayland)': {
762 'args': [
763 '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.wayland_browser_tests.filter',
764 ],
765 },
Maksim Sisov69730f82020-11-11 12:09:13766 # CI tester.
767 'Linux Tester (Ozone Wayland)': {
768 'args': [
769 '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.wayland_browser_tests.filter',
770 ],
771 },
Maksim Sisov4af9c032020-06-12 12:43:11772 },
773 },
Erik Chen681dc0282019-11-26 22:54:49774 'cc_unittests': {
775 'modifications': {
Stephen Martinis31dde712021-04-23 00:15:53776 # TODO(crbug.com/1200904): Remove after migration
777 'Linux TSan (bionic)': {
778 'swarming': {
779 'shards': 3,
780 },
781 },
Erik Chen681dc0282019-11-26 22:54:49782 'Linux TSan Tests': {
783 'swarming': {
784 'shards': 3,
785 },
786 },
Haiyang Pancf765862021-03-18 20:39:15787 'android-11-x86-fyi-rel': {
788 # https://crbug.com/1039860
789 'args': [
790 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.cc_unittests.filter',
791 ],
792 },
Haiyang Pan2486dcb2020-09-18 17:53:06793 'android-marshmallow-x86-rel-non-cq': {
John Budorickfa8f1da92020-01-15 18:11:38794 # https://crbug.com/1039860
795 'args': [
796 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.cc_unittests.filter',
797 ],
798 },
Haiyang Pan08d09dc2020-04-01 16:11:21799 'android-pie-x86-rel': {
John Budorickfa8f1da92020-01-15 18:11:38800 # https://crbug.com/1039860
801 'args': [
802 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.cc_unittests.filter',
803 ],
804 },
Chong Gudf7fbe92021-02-24 02:55:58805 'fuchsia-code-coverage': {
806 'swarming': {
807 'shards': 4,
808 },
809 },
Erik Chen681dc0282019-11-26 22:54:49810 },
811 },
Prakhar94f444a2020-10-08 07:30:08812 'check_static_initializers': {
813 'modifications': {
814 'Mac Builder': {
815 'args': [
816 '--allow-coverage-initializer',
817 ],
818 },
819 },
820 },
Dirk Pranke1b767092017-12-07 04:44:23821 'checkbins': {
822 'remove_from': [
Stephen Martinis47d77132019-04-24 23:51:33823 'linux-archive-dbg',
824 'linux-archive-rel',
825 'mac-archive-dbg',
826 'mac-archive-rel',
Stephen Martinis01cb3222021-05-13 23:07:09827 'mac-arm64-archive-dbg',
828 'mac-arm64-archive-rel',
Dirk Pranke1b767092017-12-07 04:44:23829 ],
830 },
Ben Pastene7a05a8f2020-11-12 17:25:51831 'chrome_all_tast_tests': {
832 'modifications': {
833 'chromeos-betty-pi-arc-cfi-thin-lto-chrome': {
834 'args': [
835 # This bot sets symbol_level=2, which doesn't fit inside a normal VM.
836 '--strip-chrome',
837 ],
838 },
839 },
840 },
Andrew Luod252791ac2019-10-15 00:28:13841 'chrome_java_test_pagecontroller_tests': {
Haiyang Panfbd2b482020-09-23 23:41:25842 'modifications': {
843 'android-pie-arm64-rel': {
844 # TODO(crbug.com/1111436): Move this back to walleye if/when additional
845 # capacity has been deployed.
846 'swarming': {
847 'dimension_sets': [
848 {
849 'device_type': 'sailfish',
850 },
851 ],
852 },
853 },
854 },
Andrew Luod252791ac2019-10-15 00:28:13855 },
Haiyang Pan6e42a5682021-01-29 21:48:05856 'chrome_modern_public_bundle_fake_modules_smoke_test': {
857 'remove_from': [
858 # Runs on android-marshmallow-x86-rel already (crbug.com/1127110)
859 'android-marshmallow-arm64-rel',
860 ],
861 },
Haiyang Panb4baf932021-01-26 03:35:01862 'chrome_modern_public_bundle_smoke_test': {
Haiyang Pan6e42a5682021-01-29 21:48:05863 'remove_from': [
864 # Runs on android-marshmallow-x86-rel already (crbug.com/1127110)
865 'android-marshmallow-arm64-rel',
866 ],
Haiyang Panb4baf932021-01-26 03:35:01867 },
Yun Liu7cfd28a2019-10-30 01:57:12868 'chrome_public_smoke_test': {
869 'remove_from': [
Ben Joyce02dc8092021-03-04 21:48:19870 'android-code-coverage-native', # Does not generate profraw data.
Ben Joyce46ca6012021-03-31 19:19:25871 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data.
Haiyang Panb4baf932021-01-26 03:35:01872 # Runs on android-marshmallow-x86-rel already (crbug.com/1127110#c21)
873 'android-marshmallow-arm64-rel',
Yun Liu7cfd28a2019-10-30 01:57:12874 ],
875 },
Kenneth Russelleb60cbd22017-12-05 07:54:28876 'chrome_public_test_apk': {
John Budorick27d2d44e2019-05-20 20:26:09877 'remove_from': [
878 'android-asan', # https://crbug.com/964562
Ben Joyce02dc8092021-03-04 21:48:19879 'android-code-coverage-native', # Does not generate profraw data.
Haiyang Pana3ff55ae2020-04-23 18:26:54880 'android-lollipop-arm-rel', # https://crbug.com/1060245
Ben Joyce46ca6012021-03-31 19:19:25881 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data.
Haiyang Pan2c95fc22021-02-18 22:52:13882
883 # Runs on android-marshmallow-x86-rel already (crbug.com/1127110)
884 'android-marshmallow-arm64-rel',
885 'android-marshmallow-x86-rel-non-cq',
John Budorick27d2d44e2019-05-20 20:26:09886 ],
Kenneth Russelleb60cbd22017-12-05 07:54:28887 'modifications': {
Kenneth Russelleb60cbd22017-12-05 07:54:28888 'Marshmallow 64 bit Tester': {
889 'swarming': {
Kenneth Russelleb60cbd22017-12-05 07:54:28890 'shards': 14,
891 },
892 },
Arthur Wang5dd7b07c2020-04-04 01:05:22893 'Marshmallow Tablet Tester': {
894 'args': [
895 '--timeout-scale',
896 '2.0',
897 ],
898 },
Ben Pastenec73e96e92018-07-12 01:40:35899 'Oreo Phone Tester': {
bsheedy01833462018-12-07 01:05:57900 # TODO(https://crbug.com/884413): Re-enable this once the tests are
901 # either passing or there is more capacity.
902 'experiment_percentage': 0,
Ben Pastenec73e96e92018-07-12 01:40:35903 },
Haiyang Panb80557c2021-03-13 03:01:44904 'android-11-x86-fyi-rel': {
905 'args': [
Haiyang Panadcf3432021-06-18 03:23:23906 '--avd-config=../../tools/android/avd/proto/generic_playstore_android30.textpb',
Haiyang Panb80557c2021-03-13 03:01:44907 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.chrome_public_test_apk.filter',
Haiyang Pan1d5ca2862021-04-01 22:21:09908 '--timeout-scale=2.0',
Haiyang Panb80557c2021-03-13 03:01:44909 ],
Haiyang Pan51450ab2021-03-23 00:48:57910 # TODO(crbug.com/1137474): Revisit the shard number once failed tests
911 # are fixed.
912 'swarming': {
913 'shards': 30,
Haiyang Panadcf3432021-06-18 03:23:23914 'named_caches': [
915 {
916 'name': 'avd_generic_playstore_android30',
917 'path': '.android',
918 },
919 {
920 'name': 'system_images_android_30_google_apis_playstore_x86',
921 'path': '.emulator_sdk',
922 },
923 ],
924 'dimension_sets': [
925 {
926 'machine_type': 'e2-standard-8', # use 8-core to shorten runtime
927 },
928 ],
Haiyang Pan51450ab2021-03-23 00:48:57929 },
Haiyang Panb80557c2021-03-13 03:01:44930 },
Stephen Martinis1384ff92020-01-07 19:52:15931 'android-arm64-proguard-rel': {
932 'swarming': {
933 'shards': 25,
934 },
935 },
Haiyang Pan1ad3bb032020-04-24 23:52:03936 'android-lollipop-arm-rel-swarming': {
Brian Sheedy44a7a0032020-04-16 19:20:57937 'swarming': {
Brian Sheedy180c2dd2020-04-22 19:34:31938 'service_account': '[email protected]'
Brian Sheedy44a7a0032020-04-16 19:20:57939 },
940 },
Brian Sheedy44a7a0032020-04-16 19:20:57941 'android-marshmallow-arm64-rel-swarming': {
942 'swarming': {
Brian Sheedy180c2dd2020-04-22 19:34:31943 'service_account': '[email protected]'
Brian Sheedy44a7a0032020-04-16 19:20:57944 },
945 },
Haiyang Pan742760c2021-02-12 03:21:41946 'android-marshmallow-x86-rel': {
947 'args': [
948 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_m.chrome_public_test_apk.filter',
949 ],
950 'swarming': {
951 # TODO(crbug.com/1127110): Revisit shards and machine_type if there
952 # are n2 machines available in the test pool.
953 'shards': 25,
954 'dimension_sets': [
955 {
956 'machine_type': 'e2-standard-8', # use 8-core to shorten runtime
957 },
958 ],
959 },
Haiyang Pan37fbd7a42020-06-03 03:27:37960 },
Stephen Martinis1384ff92020-01-07 19:52:15961 'android-pie-arm64-rel': {
962 'args': [
963 '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_arm64_rel.chrome_public_test_apk.filter', # https://crbug.com/1010211
964 ],
Haiyang Pan43640ee2020-02-13 01:38:00965 },
Haiyang Pan08d09dc2020-04-01 16:11:21966 'android-pie-x86-rel': {
Haiyang Pan43640ee2020-02-13 01:38:00967 'args': [
Haiyang Pan71373072020-03-02 19:57:49968 '--avd-config=../../tools/android/avd/proto/generic_playstore_android28.textpb',
969 # https://crbug.com/1046059
Haiyang Pan23f64f52020-06-04 01:23:32970 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_p.chrome_public_test_apk.filter',
Haiyang Pan43640ee2020-02-13 01:38:00971 ],
Haiyang Pan71373072020-03-02 19:57:49972 'swarming': {
Haiyang Pan2c438302021-06-11 23:50:38973 # soft affinity so that bots with caches will be picked first
974 'optional_dimensions': {
975 '60': [
976 {
977 'caches': 'avd_generic_playstore_android28',
978 }
979 ],
980 },
Haiyang Pan71373072020-03-02 19:57:49981 'named_caches': [
982 {
983 'name': 'avd_generic_playstore_android28',
984 'path': '.android',
985 },
986 {
987 'name': 'system_images_android_28_google_apis_playstore_x86',
988 'path': '.emulator_sdk',
989 },
Haiyang Pan980402822020-10-07 23:24:56990 ],
991 'dimension_sets': [
992 {
993 'machine_type': 'n1-standard-8', # use 8-core to shorten runtime
994 },
995 ],
Haiyang Pan71373072020-03-02 19:57:49996 },
John Budorick34009472018-04-03 17:38:44997 },
Kenneth Russelleb60cbd22017-12-05 07:54:28998 },
999 },
1000 'chrome_public_test_vr_apk': {
Nico Weberb0b3f5862018-07-13 18:45:151001 'remove_from': [
Brian Sheedy29ac5692021-01-06 17:41:491002 # Decided to no longer run VR tests on L, crbug.com/1159619.
1003 'Lollipop Phone Tester',
bsheedy410dd7c2018-06-15 22:42:091004 'Lollipop Tablet Tester',
1005 'Marshmallow Tablet Tester',
Haiyang Pand12ff5462021-07-12 17:29:021006
1007 # Not available for android x86 & x64 platforms since this GN target
1008 # asserts "enable_vr" which is only true for arm & arm64 on android
1009 # platform. See //chrome/android/BUILD.gn and
1010 # //device/vr/buildflags/buildflags.gni
Haiyang Panfed339172021-03-10 23:19:571011 'android-11-x86-fyi-rel',
Haiyang Pand12ff5462021-07-12 17:29:021012 'android-12-x64-fyi-rel',
Brian Sheedy29ac5692021-01-06 17:41:491013 'android-lollipop-arm-rel',
Haiyang Pan2486dcb2020-09-18 17:53:061014 'android-marshmallow-x86-rel-non-cq',
Haiyang Pan08d09dc2020-04-01 16:11:211015 'android-pie-x86-rel',
Haiyang Pand12ff5462021-07-12 17:29:021016
Andrew Luo38b311f2019-10-04 03:42:091017 'android-pie-arm64-rel', # https://crbug.com/1010211
bsheedydf58b4e2018-11-01 19:42:161018 'ToTAndroid',
John Budorick27d2d44e2019-05-20 20:26:091019 'android-asan', # https://crbug.com/964562
Ben Joyce02dc8092021-03-04 21:48:191020 'android-code-coverage-native', # Does not generate profraw data.
Ben Joyce46ca6012021-03-31 19:19:251021 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data.
bsheedy410dd7c2018-06-15 22:42:091022 ],
Haiyang Pan363c59a2020-07-23 05:47:041023 'modifications': {
Brian Sheedy4dc4a6f2020-09-17 22:18:501024 # Use "--remove-system-package" according to crbug.com/931947#c1
Haiyang Pan363c59a2020-07-23 05:47:041025 'android-nougat-arm64-rel': {
1026 'args': [
Brian Sheedy4dc4a6f2020-09-17 22:18:501027 # Applying a mixin via an exception doesn't work, so manually apply
1028 # the same arguments as the 'vr_instrumentation_test' mixin.
1029 '--remove-system-package=com.google.vr.vrcore',
1030 '--additional-apk=//third_party/gvr-android-sdk/test-apks/vr_services/vr_services_current.apk',
1031 ],
Brian Sheedy4a652b72020-12-17 23:59:491032 },
Haiyang Pan363c59a2020-07-23 05:47:041033 },
Kenneth Russelleb60cbd22017-12-05 07:54:281034 },
bsheedy75a4dd52018-11-27 23:24:301035 'chrome_public_test_vr_apk-vega': {
1036 'modifications': {
bsheedy75a4dd52018-11-27 23:24:301037 'Oreo Phone Tester': {
1038 'swarming': {
1039 'dimension_sets': [
1040 {
1041 'device_os': 'OVR1.180808.003',
1042 'device_type': 'vega',
1043 'os': 'Android',
1044 },
1045 ],
1046 },
1047 }
1048 }
1049 },
Rakib M. Hasana56be792021-03-15 21:14:401050 'chrome_public_wpt': {
1051 'modifications': {
1052 'android-web-platform-pie-x86-fyi-rel': {
1053 'swarming': {
1054 'dimension_sets': [
1055 {
1056 'machine_type': 'n1-standard-8',
1057 },
1058 ],
1059 'shards': 18,
1060 },
1061 },
1062 },
1063 },
Ian Struiksmaeb285db02020-10-20 22:19:341064 'chrome_sizes': {
1065 'modifications': {
Yuke Liao975680302021-02-18 18:34:541066 'lacros-amd64-generic-chrome': {
1067 'swarming': {
1068 'dimension_sets': [
1069 {
Yuke Liao31225ee32021-03-17 23:21:331070 'cpu': 'x86-64',
Yuke Liao975680302021-02-18 18:34:541071 'os': 'Ubuntu-16.04',
1072 },
1073 ],
1074 },
1075 },
Ian Struiksmaeb285db02020-10-20 22:19:341076 'win-chrome': {
1077 'swarming': {
1078 # TODO(crbug.com/1124829): Remove this exception once pool
1079 # chrome.tests is migrated to 1909.
1080 'dimension_sets': [
1081 {
1082 'os': 'Windows-10-15063',
1083 },
1084 ],
1085 },
1086 },
1087 'win64-chrome': {
1088 'swarming': {
1089 # TODO(crbug.com/1124829): Remove this exception once pool
1090 # chrome.tests is migrated to 1909.
1091 'dimension_sets': [
1092 {
1093 'os': 'Windows-10-15063',
1094 },
1095 ],
1096 },
1097 },
1098 },
1099 },
Takuto Ikuta1b749b902019-04-11 18:05:531100 'chromedriver_py_tests': {
1101 'remove_from': [
1102 # Timeout happens sometimes (crbug.com/951799).
Takuto Ikuta1b749b902019-04-11 18:05:531103 'Win10 Tests x64 (dbg)',
1104 ],
1105 },
Haiyang Panfed339172021-03-10 23:19:571106 'components_browsertests': {
Chong Gu0ed5dcda2021-07-15 21:26:111107 'remove_from': [
1108 'fuchsia-fyi-arm64-rel', # https://crbug.com/961457
1109 'fuchsia-fyi-x64-rel', # https://crbug.com/961457
1110 ],
Haiyang Panfed339172021-03-10 23:19:571111 'modifications': {
1112 'android-11-x86-fyi-rel': {
1113 'swarming': {
1114 'shards': 2,
1115 },
1116 },
1117 },
1118 },
Kenneth Russelleb60cbd22017-12-05 07:54:281119 'components_unittests': {
Yun Liu3e759dbb2019-11-01 19:25:521120 'remove_from': [
Garrett Beaty47a2d802020-11-10 20:50:531121 # https://crbug.com/1147531 - covered on lollipop
1122 'android-marshmallow-arm64-rel',
Stephen Roeac495972020-02-25 23:32:411123 'Fuchsia ARM64', # https://crbug.com/961457
Yun Liu16394ab32019-11-19 16:37:571124 'Fuchsia x64', # https://crbug.com/961457
Chong Gudf7fbe92021-02-24 02:55:581125 'fuchsia-code-coverage', # https://crbug.com/961457
Stephen Roe2cfe780f2020-07-13 21:52:511126 'fuchsia-fyi-arm64-dbg', # https://crbug.com/961457
Stephen Roe45beae92021-05-27 23:26:321127 'fuchsia-fyi-arm64-femu', # https://crbug.com/961457
Kevin Marshallce2afe1b2019-12-06 00:49:211128 'fuchsia-fyi-x64-dbg', # https://crbug.com/961457
Chong Gu75af969a2021-03-22 14:46:141129 'ToTFuchsia x64', # https://crbug.com/961457
1130 'ToTFuchsiaOfficial', # https://crbug.com/961457
Yun Liu3e759dbb2019-11-01 19:25:521131 ],
Kenneth Russelleb60cbd22017-12-05 07:54:281132 'modifications': {
John Budorick5052d552017-12-13 02:59:341133 'Linux ASan LSan Tests (1)': {
1134 # These are very slow on the ASAN trybot for some reason.
1135 # crbug.com/794372
1136 'swarming': {
1137 'shards': 5,
1138 },
1139 },
Takuto Ikuta54671d972018-07-19 19:06:351140 'Linux Chromium OS ASan LSan Tests (1)': {
1141 # These are very slow on the ASAN trybot for some reason.
1142 # crbug.com/794372
1143 'swarming': {
1144 'shards': 5,
1145 },
1146 },
Stephen Martinis31dde712021-04-23 00:15:531147 # TODO(crbug.com/1200904): Remove after migration
1148 'Linux TSan (bionic)': {
1149 'swarming': {
1150 'shards': 2,
1151 },
1152 },
Erik Chen681dc0282019-11-26 22:54:491153 'Linux TSan Tests': {
1154 'swarming': {
1155 'shards': 2,
1156 },
1157 },
Haiyang Pan799282f2021-03-25 19:38:311158 'android-11-x86-fyi-rel': {
1159 'args': [
1160 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.components_unittests.filter',
1161 ],
1162 },
Omer Katz7d2be652020-01-22 18:13:461163 'linux-blink-heap-concurrent-marking-tsan-rel': {
1164 'swarming': {
1165 'shards': 2,
1166 },
1167 },
Sven Zheng80734f12020-08-06 06:50:391168 # https://crbug.com/1111979,
Junhua Chen39dd2dba2021-05-05 17:51:541169 'linux-lacros-code-coverage': {
1170 'args': [
1171 '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.components_unittests.filter',
1172 ],
1173 },
1174 # https://crbug.com/1111979,
Sven Zheng19767e52020-08-24 23:33:401175 'linux-lacros-rel': {
1176 'args': [
Yuke Liao56a437dd2021-05-05 04:53:401177 '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.components_unittests.filter',
Sven Zheng19767e52020-08-24 23:33:401178 ],
1179 },
1180 # https://crbug.com/1111979,
Sven Zheng5c9d3e342020-08-11 21:39:431181 'linux-lacros-tester-rel': {
Sven Zheng5c9d3e342020-08-11 21:39:431182 'args': [
Yuke Liao56a437dd2021-05-05 04:53:401183 '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.components_unittests.filter',
Sven Zheng5c9d3e342020-08-11 21:39:431184 ],
Sven Zheng80734f12020-08-06 06:50:391185 },
1186 },
Sven Zheng577fe5ff2020-08-03 22:06:441187 },
Kenneth Russelleb60cbd22017-12-05 07:54:281188 'content_browsertests': {
Brad Halla36886c2019-02-26 16:52:291189 'remove_from': [
Brad Halla36886c2019-02-26 16:52:291190 'CrWinAsan(dll)', # https://crbug.com/935598
Haiyang Pan62a7ae52020-11-19 23:54:551191 'android-lollipop-arm-rel', # crbug.com/1133002
Chong Gu0ed5dcda2021-07-15 21:26:111192 'android-marshmallow-arm64-rel', # http://crbug.com/1060245#c30: due to low utility and capacity.
1193 'fuchsia-fyi-arm64-rel', # https://crbug.com/1164534
1194 'fuchsia-fyi-x64-rel', # https://crbug.com/1164534
Brad Halla36886c2019-02-26 16:52:291195 ],
Kenneth Russelleb60cbd22017-12-05 07:54:281196 'modifications': {
Kenneth Russellfbda3c532017-12-08 23:57:241197 'Cast Audio Linux': {
1198 'args': [
Nico Weber02f30392018-07-16 18:39:431199 '--test-launcher-filter-file=../../testing/buildbot/filters/cast-linux.content_browsertests.filter',
Kenneth Russellfbda3c532017-12-08 23:57:241200 ],
Kenneth Russellfbda3c532017-12-08 23:57:241201 },
1202 'Cast Linux': {
1203 'args': [
Nico Weber02f30392018-07-16 18:39:431204 '--test-launcher-filter-file=../../testing/buildbot/filters/cast-linux.content_browsertests.filter',
Kenneth Russellfbda3c532017-12-08 23:57:241205 ],
Kenneth Russellfbda3c532017-12-08 23:57:241206 },
Erik Chenb681c8c2019-11-25 22:52:521207 'Linux ASan LSan Tests (1)': {
1208 'swarming': {
1209 'shards': 12,
1210 },
1211 },
Chris Cunninghame1a04ea2019-04-24 01:49:321212 'Linux ASan Tests (sandboxed)': {
1213 'swarming': {
John Abd-El-Malek3a631612020-07-08 21:40:411214 'shards': 10, # https://crbug.com/1103330
Chris Cunninghame1a04ea2019-04-24 01:49:321215 },
1216 },
Stephen Martinis31dde712021-04-23 00:15:531217 # TODO(crbug.com/1200904): Remove after migration
1218 'Linux TSan (bionic)': {
1219 'swarming': {
1220 'shards': 15,
1221 },
1222 },
Erik Chen681dc0282019-11-26 22:54:491223 'Linux TSan Tests': {
1224 'swarming': {
1225 'shards': 15,
1226 },
1227 },
Stephen Martinis1384ff92020-01-07 19:52:151228 'Lollipop Phone Tester': {
1229 'swarming': {
Haiyang Panbbd866d2020-09-16 00:48:381230 'shards': 10,
Stephen Martinis1384ff92020-01-07 19:52:151231 },
1232 },
Sergey Silkinfe96b352020-10-19 20:41:341233 'Lollipop Tablet Tester': {
1234 'args': [
1235 '--test-launcher-filter-file=../../testing/buildbot/filters/android.lollipop_tablet_tester.content_browsertests.filter',
1236 ],
Haiyang Pan1f6367352021-07-02 21:15:571237 'swarming': {
1238 'shards': 15,
1239 },
Sergey Silkinfe96b352020-10-19 20:41:341240 },
Sergey Silkinfe96b352020-10-19 20:41:341241 'Marshmallow Tablet Tester': {
1242 'args': [
1243 '--test-launcher-filter-file=../../testing/buildbot/filters/android.marshmallow_tablet_tester.content_browsertests.filter',
1244 ],
Haiyang Pan1f6367352021-07-02 21:15:571245 'swarming': {
1246 'shards': 15,
1247 },
Sergey Silkinfe96b352020-10-19 20:41:341248 },
Sergey Silkin1fe10e82020-10-30 19:36:581249 'WebRTC Chromium FYI Android Tests (dbg) (L Nexus5)': {
1250 'args': [
1251 '--test-launcher-filter-file=../../testing/buildbot/filters/chromium.webrtc.fyi.android.tests.dbg.content_browsertests.filter',
1252 ],
1253 },
1254 'WebRTC Chromium FYI Android Tests (dbg) (M Nexus5X)': {
1255 'args': [
1256 '--test-launcher-filter-file=../../testing/buildbot/filters/chromium.webrtc.fyi.android.tests.dbg.content_browsertests.filter',
1257 ],
1258 }
1259 ,
Stephen Martinis1384ff92020-01-07 19:52:151260 'Win10 Tests x64': {
1261 # crbug.com/868082
1262 'args': [
1263 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
1264 ],
1265 },
1266 'Win10 Tests x64 (dbg)': {
1267 'experiment_percentage': 100,
1268 # crbug.com/868082
1269 'args': [
1270 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
Stephen Martinis1384ff92020-01-07 19:52:151271 ],
1272 },
Kuan Huangc93e8672021-06-29 21:13:451273 'Win10 Tests x64 20h2': {
1274 # crbug.com/868082
1275 'args': [
1276 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
1277 ],
1278 },
Haiyang Panfed339172021-03-10 23:19:571279 'android-11-x86-fyi-rel': {
Haiyang Pan51450ab2021-03-23 00:48:571280 # TODO(crbug.com/1137474): Revisit the shard number once failed tests
1281 # are fixed.
Haiyang Panfed339172021-03-10 23:19:571282 'swarming': {
Haiyang Pan51450ab2021-03-23 00:48:571283 'shards': 30,
Haiyang Pan45e77dda2021-07-01 22:23:291284 'dimension_sets': [
1285 {
1286 'machine_type': 'e2-standard-8', # use 8-core to shorten runtime
1287 },
1288 ],
Haiyang Panfed339172021-03-10 23:19:571289 },
1290 },
Stephen Martinis1384ff92020-01-07 19:52:151291 'android-arm64-proguard-rel': {
1292 'swarming': {
1293 'shards': 16,
1294 },
1295 },
1296 'android-asan': {
1297 'args': [
1298 '--test-launcher-filter-file=../../testing/buildbot/filters/android.asan.content_browsertests.filter',
1299 ],
1300 'swarming': {
1301 'shards': 18,
1302 },
1303 },
Stephen Martinis1384ff92020-01-07 19:52:151304 'android-marshmallow-arm64-rel': {
1305 'swarming': {
1306 'shards': 16,
1307 },
1308 },
Haiyang Pan2486dcb2020-09-18 17:53:061309 'android-marshmallow-x86-rel-non-cq': {
John Budoricka4e23882020-02-28 18:36:431310 'args': [
Haiyang Pan12d5acd2020-06-01 20:54:571311 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_m.content_browsertests.filter',
John Budoricka4e23882020-02-28 18:36:431312 ],
Haiyang Panc47f6d12020-08-19 18:34:491313 'swarming': {
1314 'shards': 20,
1315 },
John Budoricka4e23882020-02-28 18:36:431316 },
Haiyang Pan363c59a2020-07-23 05:47:041317 'android-nougat-arm64-rel': {
1318 'swarming': {
1319 'shards': 16,
1320 },
1321 # TODO(crbug.com/1108055): Remove this filter
1322 'args': [
1323 '--gtest_filter=-BackgroundTracingManagerBrowserTest.PerfettoSystemBackgroundScenario*',
1324 ],
1325 },
Haiyang Pan08d09dc2020-04-01 16:11:211326 'android-pie-x86-rel': {
John Budoricka4e23882020-02-28 18:36:431327 'args': [
Haiyang Pan12d5acd2020-06-01 20:54:571328 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_p.content_browsertests.filter',
John Budoricka4e23882020-02-28 18:36:431329 ],
Sky Malice303f7ec2021-07-17 04:13:091330 'swarming': {
1331 # Flaking with only 20 shards with 40-60 minute runs.
1332 # https://crbug.com/1230118
1333 'shards': 30,
Haiyang Pan2eb735e72020-09-15 22:51:511334 },
John Budoricka4e23882020-02-28 18:36:431335 },
Omer Katz7d2be652020-01-22 18:13:461336 'linux-blink-heap-concurrent-marking-tsan-rel': {
1337 'swarming': {
1338 'shards': 4,
1339 },
1340 },
Stephen Martinis1384ff92020-01-07 19:52:151341 'linux-chromeos-code-coverage': {
1342 'swarming': {
1343 'shards': 12,
1344 },
1345 },
Albert J. Wong91f109652019-11-19 03:01:161346 'linux-chromeos-rel': {
1347 'swarming': {
1348 'shards': 3,
1349 },
1350 },
Yuke Liao79424e42020-01-06 21:00:111351 'linux-code-coverage': {
Yuke Liao58e1d202020-03-20 23:02:011352 'args': [
1353 '--no-sandbox',
1354 ],
Yuke Liao79424e42020-01-06 21:00:111355 'swarming': {
1356 'shards': 12,
1357 },
1358 },
Junhua Chen39dd2dba2021-05-05 17:51:541359 # https://crbug.com/1111979,
1360 'linux-lacros-code-coverage': {
1361 'args': [
1362 '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.content_browsertests.filter',
1363 ],
1364 },
Sven Zheng80734f12020-08-06 06:50:391365 # https://crbug.com/1111979
1366 'linux-lacros-tester-fyi-rel': {
1367 'experiment_percentage': 100,
1368 },
Sven Zheng5c9d3e342020-08-11 21:39:431369 # https://crbug.com/1111979,
1370 'linux-lacros-tester-rel': {
Sven Zheng5c9d3e342020-08-11 21:39:431371 'args': [
Yuke Liao56a437dd2021-05-05 04:53:401372 '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.content_browsertests.filter',
Sven Zheng5c9d3e342020-08-11 21:39:431373 ],
1374 },
Kenneth Russelleb60cbd22017-12-05 07:54:281375 },
1376 },
Maksim Sisov6058ba72020-05-04 10:29:131377 'content_browsertests_wayland': {
1378 'modifications': {
1379 'Linux Ozone Tester (Wayland)': {
1380 'args': [
1381 '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.wayland_content_browsertests.filter',
1382 ],
1383 },
1384 },
1385 },
Nico Weber81e16ace22018-06-30 02:58:471386 'content_shell_crash_test': {
Haiyang Pan8c201b92020-06-04 01:25:071387 'remove_from': [
Nico Weberbbbc34e2020-10-14 18:21:501388 'Mac10.11 Tests', # crbug.com/1138050
Haiyang Pan2486dcb2020-09-18 17:53:061389 'android-marshmallow-x86-rel-non-cq', # crbug.com/1084353
Haiyang Pan8c201b92020-06-04 01:25:071390 ],
Dirk Prankeb1c36b322018-07-11 02:42:001391 'modifications': {
Dirk Prankeb1c36b322018-07-11 02:42:001392 'Win10 Tests x64 (dbg)': {
1393 'experiment_percentage': 100, # https://crbug.com/861730
1394 },
1395 },
Nico Weber81e16ace22018-06-30 02:58:471396 },
John Budorick27d2d44e2019-05-20 20:26:091397 'content_shell_test_apk': {
1398 'remove_from': [
John Budorick27d2d44e2019-05-20 20:26:091399 'android-asan', # https://crbug.com/964562
Ben Joyce02dc8092021-03-04 21:48:191400 'android-code-coverage-native', # Does not generate profraw data.
Ben Joyce46ca6012021-03-31 19:19:251401 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data.
John Budorick27d2d44e2019-05-20 20:26:091402 ],
John Budorickee2e64f2020-03-02 20:19:101403 'modifications': {
Haiyang Pan103864812021-03-19 19:28:441404 'android-11-x86-fyi-rel': {
1405 'args': [
1406 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.content_shell_test_apk.filter',
1407 ],
1408 },
Haiyang Pan2486dcb2020-09-18 17:53:061409 'android-marshmallow-x86-rel-non-cq': {
John Budorickee2e64f2020-03-02 20:19:101410 'args': [
Haiyang Pan28e73582020-05-30 00:34:271411 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_m.content_shell_test_apk.filter',
John Budorickee2e64f2020-03-02 20:19:101412 ],
1413 },
Haiyang Pan08d09dc2020-04-01 16:11:211414 'android-pie-x86-rel': {
John Budorickee2e64f2020-03-02 20:19:101415 'args': [
1416 '--gtest_filter=-ContentViewScrollingTest.testFling',
1417 ],
1418 },
1419 },
John Budorick27d2d44e2019-05-20 20:26:091420 },
Kenneth Russelleb60cbd22017-12-05 07:54:281421 'content_unittests': {
1422 'modifications': {
John Budorick5052d552017-12-13 02:59:341423 'Linux ASan LSan Tests (1)': {
1424 # These are slow on the ASAN trybot for some reason.
1425 # crbug.com/794372
1426 'swarming': {
1427 'shards': 2,
1428 },
1429 },
Takuto Ikuta54671d972018-07-19 19:06:351430 'Linux ChromiumOS MSan Tests': {
1431 # These are very slow on the Chrome OS MSAN trybot for some reason.
1432 # crbug.com/865455
1433 'swarming': {
1434 'shards': 2,
1435 },
1436 },
Chong Gu52481452021-04-02 17:52:411437 'fuchsia-code-coverage': {
1438 'swarming': {
1439 'shards': 12,
1440 },
1441 },
Kenneth Russelleb60cbd22017-12-05 07:54:281442 },
1443 },
Jonah Ryan-Davis832c8462020-06-09 03:45:031444 'context_lost_passthrough_tests': {
1445 'modifications': {
Jonah Ryan-Davisdeeffeaf2020-06-18 17:56:001446 'Mac FYI GPU ASAN Release': {
1447 'args': [
1448 '--is-asan',
1449 ]
1450 },
Jonah Ryan-Davis832c8462020-06-09 03:45:031451 },
1452 },
1453 'context_lost_validating_tests': {
Brian Sheedye285c9b2019-07-15 21:42:461454 # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2)
1455 # exception once there is enough capacity to run these tests.
1456 'remove_from': [
Brian Sheedye285c9b2019-07-15 21:42:461457 'Android FYI Release (Pixel 2)',
1458 ],
Kenneth Russellc1a09302018-07-10 01:12:541459 'modifications': {
1460 'Mac FYI GPU ASAN Release': {
1461 'args': [
1462 '--is-asan',
1463 ]
1464 },
1465 },
1466 },
Kenneth Russellfbda3c532017-12-08 23:57:241467 'crashpad_tests': {
1468 'remove_from': [
Nico Weber15a00d62018-05-16 17:11:481469 'linux-win_cross-rel', # https://crbug.com/762167
Stephen Martinis31dde712021-04-23 00:15:531470 # TODO(crbug.com/1200904): Remove after migration
1471 'Linux TSan (bionic)',
Vlad Tsyrklevich06a9a44f2019-07-24 19:14:391472 # https://crbug.com/crashpad/304
1473 'Linux TSan Tests',
1474 'ToTLinuxTSan',
1475 # https://crbug.com/crashpad/306
1476 'Linux CFI',
1477 'CFI Linux ToT',
Kenneth Russellfbda3c532017-12-08 23:57:241478 ],
Haiyang Panc7c009e2021-03-18 19:31:231479 'modifications': {
1480 'android-11-x86-fyi-rel': {
1481 'args': [
1482 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.crashpad_tests.filter',
1483 ],
1484 },
1485 },
Kenneth Russellfbda3c532017-12-08 23:57:241486 },
John Budorick5bc387fe2019-05-09 20:02:531487 'cronet_sizes': {
1488 'modifications': {
1489 'android-cronet-arm-dbg': {
1490 'swarming': {
1491 'dimension_sets': [
1492 {
1493 'device_os': None,
1494 'device_type': None,
Takuto Ikuta5e459b12019-07-09 05:30:561495 'os': 'Ubuntu-16.04',
John Budorick5bc387fe2019-05-09 20:02:531496 },
1497 ],
1498 },
1499 },
1500 },
1501 },
Brian Sheedye285c9b2019-07-15 21:42:461502 'depth_capture_tests': {
Brian Sheedye285c9b2019-07-15 21:42:461503 'remove_from': [
Wez6b0ebb52021-05-01 16:05:491504 # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2)
1505 # exception once there is enough capacity to run these tests.
Brian Sheedye285c9b2019-07-15 21:42:461506 'Android FYI Release (Pixel 2)',
Brian Sheedye285c9b2019-07-15 21:42:461507 ],
1508 },
Ben Pastene61ad637c2020-05-08 22:24:411509 'disk_usage_tast_test': {
1510 # TODO(crbug.com/1077659): Add the test back after it's fixed.
1511 'remove_from': [
1512 'chromeos-kevin-rel',
1513 ],
1514 },
Joe Downing41486042018-10-18 22:44:441515 'extensions_browsertests': {
Brad Halla36886c2019-02-26 16:52:291516 'remove_from': [
Brad Halla36886c2019-02-26 16:52:291517 'CrWinAsan(dll)', # https://crbug.com/935598
1518 ],
Joe Downing41486042018-10-18 22:44:441519 'modifications': {
1520 'Win10 Tests x64 (dbg)': {
1521 'experiment_percentage': 100, # https://crbug.com/876615
1522 },
Sven Zheng5c9d3e342020-08-11 21:39:431523 # https://crbug.com/1111979,
Junhua Chen39dd2dba2021-05-05 17:51:541524 'linux-lacros-code-coverage': {
1525 'args': [
1526 '--gtest_filter=-BluetoothShellApiTest.ApiSanityCheck:BluetoothSocketApiTest.Listen:BluetoothSocketApiTest.PermissionDenied',
1527 ],
1528 },
Sven Zhengd7f94622021-03-30 18:29:411529 'linux-lacros-rel': {
1530 'args': [
1531 '--gtest_filter=-BluetoothShellApiTest.ApiSanityCheck:BluetoothSocketApiTest.Listen:BluetoothSocketApiTest.PermissionDenied',
1532 ],
1533 },
Sven Zheng5c9d3e342020-08-11 21:39:431534 'linux-lacros-tester-rel': {
Sven Zheng5c9d3e342020-08-11 21:39:431535 'args': [
1536 '--gtest_filter=-BluetoothShellApiTest.ApiSanityCheck:BluetoothSocketApiTest.Listen:BluetoothSocketApiTest.PermissionDenied',
1537 ],
1538 },
Joe Downing41486042018-10-18 22:44:441539 },
1540 },
Sven Zheng577fe5ff2020-08-03 22:06:441541 'extensions_unittests': {
Sven Zheng80734f12020-08-06 06:50:391542 'modifications': {
Sven Zheng5c9d3e342020-08-11 21:39:431543 # https://crbug.com/1111979,
Junhua Chen39dd2dba2021-05-05 17:51:541544 'linux-lacros-code-coverage': {
1545 'args': [
1546 '--gtest_filter=-NativeExtensionBindingsSystemUnittest*:'
1547 'BluetoothSocketApiUnittest.CreateThenClose:'
1548 'FeatureProviderTest.PermissionFeatureAvailability',
1549 ],
1550 },
Sven Zheng5c9d3e342020-08-11 21:39:431551 'linux-lacros-tester-rel': {
Sven Zheng5c9d3e342020-08-11 21:39:431552 'args': [
Yuke Liaobb8308322020-08-12 20:20:471553 '--gtest_filter=-NativeExtensionBindingsSystemUnittest*:'
1554 'BluetoothSocketApiUnittest.CreateThenClose:'
1555 'FeatureProviderTest.PermissionFeatureAvailability',
Sven Zheng5c9d3e342020-08-11 21:39:431556 ],
1557 },
Sven Zheng80734f12020-08-06 06:50:391558 },
Sven Zheng577fe5ff2020-08-03 22:06:441559 },
Chong Gudf7fbe92021-02-24 02:55:581560 'gfx_unittests': {
1561 'modifications': {
1562 'fuchsia-code-coverage': {
1563 'swarming': {
1564 'shards': 2,
1565 },
1566 },
1567 },
1568 },
Kenneth Russelleb60cbd22017-12-05 07:54:281569 'gin_unittests': {
1570 'remove_from': [
Nico Weber1394523f2018-06-06 15:58:471571 'ToTLinuxASan', # https://crbug.com/831667
Nico Weberd36959682018-04-12 03:33:461572 'Linux ASan LSan Tests (1)', # https://crbug.com/831667
Nico Weber1394523f2018-06-06 15:58:471573 'Linux Chromium OS ASan LSan Tests (1)', # https://crbug.com/831667
Kenneth Russelleb60cbd22017-12-05 07:54:281574 ],
1575 },
Jonah Ryan-Davisdeeffeaf2020-06-18 17:56:001576 'gl_tests_passthrough': {
1577 'remove_from': [
1578 'CFI Linux ToT',
1579 # Can't run on MSAN because gl_tests uses the hardware driver,
1580 # which isn't instrumented.
1581 'Linux MSan Tests',
1582 ],
1583 'modifications': {
1584 # TODO(kbr): figure out a better way to specify blocks of
1585 # arguments like this for tests on multiple machines.
Garrett Beatya491ec72020-07-25 12:36:121586 'Linux ASan LSan Tests (1)': {
1587 'args': [
1588 '--use-gpu-in-tests',
1589 '--no-xvfb',
1590 ],
1591 'swarming': {
1592 'dimension_sets': [
1593 {
1594 'gpu': '10de:1cb3',
1595 'os': 'Ubuntu',
1596 'pool': 'chromium.tests.gpu',
1597 },
1598 ],
1599 },
1600 },
1601 'Linux CFI': {
1602 'args': [
1603 '--use-gpu-in-tests',
1604 '--no-xvfb',
1605 ],
1606 'swarming': {
1607 'dimension_sets': [
1608 {
1609 'gpu': '10de:1cb3',
1610 'os': 'Ubuntu',
1611 'pool': 'chromium.tests.gpu',
1612 },
1613 ],
1614 },
1615 },
Stephen Martinis31dde712021-04-23 00:15:531616 # TODO(crbug.com/1200904): Remove after migration
1617 'Linux TSan (bionic)': {
1618 'args': [
1619 '--use-gpu-in-tests',
1620 '--no-xvfb',
1621 ],
1622 'swarming': {
1623 'dimension_sets': [
1624 {
1625 'gpu': '10de:1cb3',
1626 'os': 'Ubuntu',
1627 'pool': 'chromium.tests.gpu',
1628 },
1629 ],
1630 },
1631 },
Garrett Beatya491ec72020-07-25 12:36:121632 'Linux TSan Tests': {
1633 'args': [
1634 '--use-gpu-in-tests',
1635 '--no-xvfb',
1636 ],
1637 'swarming': {
1638 'dimension_sets': [
1639 {
1640 'gpu': '10de:1cb3',
1641 'os': 'Ubuntu',
1642 'pool': 'chromium.tests.gpu',
1643 },
1644 ],
1645 },
1646 },
Jonah Ryan-Davisdeeffeaf2020-06-18 17:56:001647 },
1648 },
Jonah Ryan-Davise25a89f2020-05-29 20:18:241649 'gl_tests_validating': {
Jonah Ryan-Davisb9f03ac2021-03-18 23:53:021650 'remove_from': [
Kenneth Russell8a386d42018-06-02 09:48:011651 'Android FYI Release (Nexus 5X)',
John Budorickca14c76f62017-12-09 14:19:181652 ],
Kenneth Russelleb60cbd22017-12-05 07:54:281653 'modifications': {
Haiyang Pancf765862021-03-18 20:39:151654 'android-11-x86-fyi-rel': {
1655 'args': [
1656 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.gl_tests.filter',
1657 ],
1658 },
Haiyang Pan2486dcb2020-09-18 17:53:061659 'android-marshmallow-x86-rel-non-cq': {
John Budorick79ec9012020-01-08 21:56:311660 'args': [
1661 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.gl_tests.filter',
1662 ],
1663 },
Andrew Luo38b311f2019-10-04 03:42:091664 'android-pie-arm64-rel': {
John Budorick79ec9012020-01-08 21:56:311665 'args': [
Andrew Luobe83fd82019-12-19 03:07:581666 '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_arm64_rel.gl_tests.filter', # https://crbug.com/1034007
1667 ],
Andrew Luo38b311f2019-10-04 03:42:091668 },
Haiyang Pan08d09dc2020-04-01 16:11:211669 'android-pie-x86-rel': {
John Budorick79ec9012020-01-08 21:56:311670 'args': [
1671 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.gl_tests.filter',
1672 ],
1673 },
Kenneth Russelleb60cbd22017-12-05 07:54:281674 },
1675 },
Takuto Ikutaf5333252019-11-06 16:07:081676 'gl_unittests': {
1677 'remove_from': [
Takuto Ikutaf5333252019-11-06 16:07:081678 # On Android, these are already run on the main waterfall.
1679 # Run them on the one-off Android FYI bots, though.
1680 'Android FYI Release (Nexus 5X)',
Yuly Novikov37e04342020-05-29 00:52:041681 # Can't run on MSAN because gl_unittests uses the hardware driver,
1682 # which isn't instrumented.
1683 'Linux MSan Tests',
Takuto Ikutaf5333252019-11-06 16:07:081684 ],
Takuto Ikutaf5333252019-11-06 16:07:081685 },
1686 'gl_unittests_ozone': {
1687 'remove_from': [
1688 # Can't run on MSAN because gl_unittests_ozone uses the hardware driver,
1689 # which isn't instrumented.
1690 'Linux ChromiumOS MSan Tests',
1691 ],
1692 },
1693 'gpu_process_launch_tests': {
1694 # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2)
1695 # exception once there is enough capacity to run these tests.
1696 'remove_from': [
Takuto Ikutaf5333252019-11-06 16:07:081697 'Android FYI Release (Pixel 2)',
1698 ],
1699 },
Chong Gudf7fbe92021-02-24 02:55:581700 'gpu_unittests': {
1701 'modifications': {
1702 'fuchsia-code-coverage': {
1703 'swarming': {
1704 'shards': 5,
1705 },
1706 },
1707 },
1708 },
Kevin McNeed21a6c522021-06-14 21:27:251709 'grit_python_unittests': {
1710 'remove_from': [
1711 # These tests require node, which is not supported in Win7.
1712 # (https://crbug.com/1218989)
1713 'Win 7 Tests x64 (1)',
1714 'Win7 Tests (1)',
1715 'Win7 Tests (dbg)(1)',
1716 ],
1717 },
Brian Sheedye285c9b2019-07-15 21:42:461718 'hardware_accelerated_feature_tests': {
1719 # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2)
1720 # exception once there is enough capacity to run these tests.
1721 'remove_from': [
Brian Sheedye285c9b2019-07-15 21:42:461722 'Android FYI Release (Pixel 2)',
1723 ],
1724 },
Brad Halla36886c2019-02-26 16:52:291725 'headless_browsertests': {
Chong Gud1a5c5992021-04-09 04:08:321726 'modifications': {
1727 'fuchsia-code-coverage': {
1728 'swarming': {
Chong Gu115ce152021-04-15 23:57:161729 'shards': 6,
Chong Gud1a5c5992021-04-09 04:08:321730 },
1731 },
1732 },
Brad Halla36886c2019-02-26 16:52:291733 'remove_from': [
Brad Halla36886c2019-02-26 16:52:291734 'CrWinAsan(dll)', # https://crbug.com/935598
Zhaoyang Li18d1a0a2021-05-05 01:03:401735 'Mac10.13 Tests', # https://crbug.com/1204424
Brad Halla36886c2019-02-26 16:52:291736 ],
1737 },
Kenneth Russell8a386d42018-06-02 09:48:011738 'info_collection_tests': {
1739 'remove_from': [
Kenneth Russell8a386d42018-06-02 09:48:011740 # The Mac ASAN swarming bot runs tests on two different GPU
1741 # types, so we can't have one expected vendor ID / device ID.
1742 'Mac FYI GPU ASAN Release',
Kenneth Russell8a386d42018-06-02 09:48:011743 'Android V8 FYI Release (Nexus 5X)',
1744 'Linux V8 FYI Release (NVIDIA)',
Michael Achenbach5fdfc67b2018-12-13 13:26:351745 'Linux V8 FYI Release - pointer compression (NVIDIA)',
Kenneth Russell8a386d42018-06-02 09:48:011746 'Mac V8 FYI Release (Intel)',
1747 'Win V8 FYI Release (NVIDIA)',
Kenneth Russell8a386d42018-06-02 09:48:011748 ],
Brian Sheedyfe61cdac2020-02-12 01:25:591749 'modifications': {
Brian Sheedyb18cb762020-06-30 00:09:291750 'ChromeOS FYI Release (amd64-generic)': {
Brian Sheedy65be3052020-06-26 19:26:511751 'args': [
Brian Sheedyb18cb762020-06-30 00:09:291752 # Swarming does not report a GPU since tests are run in a VM, but
1753 # the VM does report that a GPU is present.
1754 '--expected-device-id', '1050',
Brian Sheedydf2672f2020-05-07 20:44:361755 ],
1756 },
Brian Sheedyfe61cdac2020-02-12 01:25:591757 },
Brian Sheedy32eeeb52020-05-22 01:49:371758 'replacements': {
1759 'ChromeOS FYI Release (amd64-generic)': {
1760 'args': {
1761 # Swarming does not report a GPU since tests are run in a VM, but
1762 # the VM does report that a GPU is present.
1763 '--expected-vendor-id': '1af4',
Brian Sheedyb18cb762020-06-30 00:09:291764 # Magic substitution happens after regular replacement, so remove it
1765 # now since we are manually applying the expected device ID above.
1766 '$$MAGIC_SUBSTITUTION_GPUExpectedDeviceId': None,
Brian Sheedy32eeeb52020-05-22 01:49:371767 },
Brian Sheedyff6d1442020-09-19 00:46:311768 },
1769 'Mac FYI arm64 Release (Apple DTK)': {
1770 'args': {
1771 # The GPU information is not yet exposed in swarming, so we can't
1772 # explicitly request it and have the JSON generation handle this
1773 # automatically.
1774 '--expected-vendor-id': '106b',
1775 },
1776 },
Brian Sheedy32eeeb52020-05-22 01:49:371777 },
Kenneth Russell8a386d42018-06-02 09:48:011778 },
Kenneth Russelleb60cbd22017-12-05 07:54:281779 'interactive_ui_tests': {
Brad Halla36886c2019-02-26 16:52:291780 'remove_from': [
Brad Halla36886c2019-02-26 16:52:291781 'CrWinAsan(dll)', # https://crbug.com/935598
1782 ],
Kenneth Russelleb60cbd22017-12-05 07:54:281783 'modifications': {
Stephen Martinis1384ff92020-01-07 19:52:151784 'Linux - Future (dbg)': { # client.v8.chromium
Nico Weberdae13cd92018-12-14 13:56:261785 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:151786 'shards': 3,
Nico Weberdae13cd92018-12-14 13:56:261787 },
1788 },
John Budorickca14c76f62017-12-09 14:19:181789 'Linux ASan LSan Tests (1)': {
Nico Weber96a75a6942018-06-20 04:53:171790 # These are slow on the ASan trybot for some reason, crbug.com/794372
1791 'swarming': {
1792 'shards': 6,
1793 },
1794 },
Takuto Ikuta54671d972018-07-19 19:06:351795 'Linux ChromiumOS MSan Tests': {
1796 # These are very slow on the Chrome OS MSAN trybot for some reason.
1797 # crbug.com/865455
1798 'swarming': {
1799 'shards': 5,
1800 },
1801 },
Stephen Martinis31dde712021-04-23 00:15:531802 # TODO(crbug.com/1200904): Remove after migration
1803 'Linux TSan (bionic)': {
1804 # These are slow on the TSan bots for some reason, crbug.com/794372
1805 'swarming': {
1806 'shards': 32, # Adjusted for testing, see https://crbug.com/1179567
1807 },
1808 },
Stephen Martinis1384ff92020-01-07 19:52:151809 'Linux TSan Tests': {
1810 # These are slow on the TSan bots for some reason, crbug.com/794372
Dirk Pranke8fd63c12017-12-10 18:06:271811 'swarming': {
Stephen Martinisad6cb7af2021-02-24 01:12:001812 'shards': 32, # Adjusted for testing, see https://crbug.com/1179567
Dirk Pranke8fd63c12017-12-10 18:06:271813 },
1814 },
Stephen Martinis1384ff92020-01-07 19:52:151815 'ToTLinuxTSan': {
1816 # These are slow on the TSan bots for some reason, crbug.com/794372
1817 'swarming': {
1818 'shards': 6,
1819 },
1820 },
1821 # temporary, https://crbug.com/818832
Greg Thompson3eb7e6522018-05-25 09:04:031822 'Win10 Tests x64 (dbg)': {
1823 'experiment_percentage': 100,
1824 },
Stephen Martinis1384ff92020-01-07 19:52:151825 'Win7 Tests (dbg)(1)': {
1826 'swarming': {
1827 'shards': 4,
1828 },
1829 },
Jacob Kopczynski3a555bd32020-12-10 01:41:161830 # TODO(crbug.com/970649): Remove these filters.
Ben Pastene8ef125e2019-12-10 01:46:291831 'linux-chromeos-chrome': {
Ben Pastene8ef125e2019-12-10 01:46:291832 'args': [
1833 '--gtest_filter=-SadTabViewInteractiveUITest.ReloadMultipleSadTabs',
1834 ],
1835 },
Stephen Martinis1384ff92020-01-07 19:52:151836 'linux-chromeos-code-coverage': {
Yuke Liao79424e42020-01-06 21:00:111837 'swarming': {
1838 'shards': 10,
1839 },
1840 },
Jacob Kopczynski3a555bd32020-12-10 01:41:161841 'linux-chromeos-ltc': {
1842 'args': [
1843 '--gtest_filter=-SadTabViewInteractiveUITest.ReloadMultipleSadTabs',
1844 ],
1845 },
1846 'linux-chromeos-lts': {
1847 'args': [
1848 '--gtest_filter=-SadTabViewInteractiveUITest.ReloadMultipleSadTabs',
1849 ],
1850 },
Stephen Martinis1384ff92020-01-07 19:52:151851 'linux-code-coverage': {
Yuke Liao79424e42020-01-06 21:00:111852 'swarming': {
1853 'shards': 10,
1854 },
1855 },
Sven Zheng80734f12020-08-06 06:50:391856 # https://crbug.com/1111979
Junhua Chen39dd2dba2021-05-05 17:51:541857 'linux-lacros-code-coverage': {
1858 'args': [
1859 '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.interactive_ui_tests.filter',
1860 ],
1861 },
1862 # https://crbug.com/1111979
Yuke Liaof3b1a4a892020-08-18 22:04:121863 'linux-lacros-rel': {
1864 'args': [
Yuke Liao56a437dd2021-05-05 04:53:401865 '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.interactive_ui_tests.filter',
Yuke Liaof3b1a4a892020-08-18 22:04:121866 ],
1867 },
1868 # https://crbug.com/1111979
Sven Zheng010820d2020-08-17 22:38:441869 'linux-lacros-tester-rel': {
Sven Zheng010820d2020-08-17 22:38:441870 'args': [
Yuke Liao56a437dd2021-05-05 04:53:401871 '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.interactive_ui_tests.filter',
Sven Zheng010820d2020-08-17 22:38:441872 ],
1873 },
Kenneth Russelleb60cbd22017-12-05 07:54:281874 },
1875 },
Yuke Liaob6beaeca2021-04-29 23:41:511876 'interactive_ui_tests_amd64-generic': {
1877 'remove_from': [
1878 # TODO(crbug.com/1204231): Re-enable.
1879 'lacros-amd64-generic-rel',
1880 ]
1881 },
Yuke Liao79a8cf52021-06-11 18:14:341882 'interactive_ui_tests_eve': {
1883 'remove_from': [
1884 # TODO(crbug.com/1204231): Re-enable.
1885 'lacros-amd64-generic-rel',
1886 ]
1887 },
Maksim Sisov649b7017a2021-03-04 08:20:391888 'interactive_ui_tests_wayland': {
1889 'modifications': {
1890 # CQ tester.
1891 'Linux Ozone Tester (Wayland)': {
1892 'args': [
1893 '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.interactive_ui_tests_wayland.filter',
1894 ],
1895 },
1896 # CI Ozone/Wayland tester.
1897 'Linux Tester (Ozone Wayland)': {
1898 'args': [
1899 '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.interactive_ui_tests_wayland.filter',
1900 ],
1901 },
1902 },
1903 },
John Budorickf00e5ff2019-06-11 21:21:061904 'ipc_tests': {
1905 'modifications': {
1906 'android-asan': {
1907 'swarming': {
1908 'shards': 2,
1909 },
1910 },
1911 },
1912 },
Dominic Battre3bd28c32021-07-12 18:35:291913 'mac_signing_tests': {
1914 'remove_from': [
1915 # TODO(crbug.com/1220743): Re-enable.
1916 'Mac10.11 Tests',
1917 'Mac10.12 Tests',
1918 ]
1919 },
Jonah Ryan-Davis832c8462020-06-09 03:45:031920 'maps_pixel_passthrough_test': {
Brian Sheedyc0c142c2021-06-01 21:18:051921 'modifications': {
1922 'Android FYI Release (Pixel 4)': {
1923 'args': [
1924 # Pixel 4s are weird in that they can output in different color spaces
1925 # simultaneously. The readback code for capturing a screenshot assumes
1926 # only one color space, so disable wide color gamut for the test to
1927 # work around the issue. See https://crbug.com/1166379 for more
1928 # information.
1929 '--extra-browser-args=--disable-wcg-for-test',
1930 ],
1931 },
1932 'Optional Android Release (Pixel 4)': {
1933 'args': [
1934 # See above.
1935 '--extra-browser-args=--disable-wcg-for-test',
1936 ],
1937 },
1938 },
Jonah Ryan-Davis832c8462020-06-09 03:45:031939 'replacements': {
1940 # The V8 builders pass the V8 revision for ${got_revision}, so instead
1941 # use ${got_cr_revision}, which is only set on the V8 bots.
1942 'Linux V8 FYI Release (NVIDIA)': {
1943 'args': {
1944 '--git-revision': '${got_cr_revision}',
1945 },
1946 },
1947 'Linux V8 FYI Release - pointer compression (NVIDIA)': {
1948 'args': {
1949 '--git-revision': '${got_cr_revision}',
1950 },
1951 },
Jonah Ryan-Davisdeeffeaf2020-06-18 17:56:001952 'Mac V8 FYI Release (Intel)': {
1953 'args': {
1954 '--git-revision': '${got_cr_revision}',
1955 },
1956 },
Jonah Ryan-Davis832c8462020-06-09 03:45:031957 'Win V8 FYI Release (NVIDIA)': {
1958 'args': {
1959 '--git-revision': '${got_cr_revision}',
1960 },
1961 },
1962 },
1963 },
1964 'maps_pixel_validating_test': {
Brian Sheedy0566f2cb2021-02-12 22:12:501965 'modifications': {
1966 'Android FYI Release (Pixel 4)': {
1967 'args': [
1968 # Pixel 4s are weird in that they can output in different color spaces
1969 # simultaneously. The readback code for capturing a screenshot assumes
1970 # only one color space, so disable wide color gamut for the test to
1971 # work around the issue. See https://crbug.com/1166379 for more
1972 # information.
1973 '--extra-browser-args=--disable-wcg-for-test',
1974 ],
1975 },
Brian Sheedycde1ab1882021-05-27 21:22:001976 'Optional Android Release (Pixel 4)': {
1977 'args': [
1978 # See above.
1979 '--extra-browser-args=--disable-wcg-for-test',
1980 ],
1981 },
Brian Sheedy0566f2cb2021-02-12 22:12:501982 },
Brian Sheedye285c9b2019-07-15 21:42:461983 # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2)
1984 # exception once there is enough capacity to run these tests.
1985 'remove_from': [
Brian Sheedye285c9b2019-07-15 21:42:461986 'Android FYI Release (Pixel 2)',
1987 ],
Brian Sheedy44fd891b2019-10-03 20:07:541988 'replacements': {
Brian Sheedy44fd891b2019-10-03 20:07:541989 # The V8 builders pass the V8 revision for ${got_revision}, so instead
1990 # use ${got_cr_revision}, which is only set on the V8 bots.
1991 'Android V8 FYI Release (Nexus 5X)': {
1992 'args': {
Brian Sheedy4d335deb2020-04-01 20:47:321993 '--git-revision': '${got_cr_revision}',
Brian Sheedy44fd891b2019-10-03 20:07:541994 },
1995 },
Brian Sheedy44fd891b2019-10-03 20:07:541996 'Mac V8 FYI Release (Intel)': {
1997 'args': {
Brian Sheedy4d335deb2020-04-01 20:47:321998 '--git-revision': '${got_cr_revision}',
Brian Sheedy44fd891b2019-10-03 20:07:541999 },
2000 },
Brian Sheedy44fd891b2019-10-03 20:07:542001 },
Brian Sheedye285c9b2019-07-15 21:42:462002 },
Andrew Luo38b311f2019-10-04 03:42:092003 'media_unittests': {
2004 'modifications': {
Haiyang Pancf765862021-03-18 20:39:152005 'android-11-x86-fyi-rel': {
2006 'args': [
2007 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.media_unittests.filter',
2008 ],
2009 },
Haiyang Pan2486dcb2020-09-18 17:53:062010 'android-marshmallow-x86-rel-non-cq': {
John Budorickb5185112020-01-08 22:40:212011 'args': [
Haiyang Pan569659f02020-05-30 00:48:452012 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_m.media_unittests.filter',
John Budorickb5185112020-01-08 22:40:212013 ],
2014 },
Andrew Luo38b311f2019-10-04 03:42:092015 'android-pie-arm64-rel': {
Andrew Luobe83fd82019-12-19 03:07:582016 'args': [
2017 '--gtest_filter=-AAudio/AudioOutputTest.Play200HzTone/0', # https://crbug.com/1034009
2018 ],
Andrew Luo38b311f2019-10-04 03:42:092019 },
Haiyang Pan08d09dc2020-04-01 16:11:212020 'android-pie-x86-rel': {
John Budorickb5185112020-01-08 22:40:212021 'args': [
Haiyang Pan569659f02020-05-30 00:48:452022 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_p.media_unittests.filter',
John Budorickb5185112020-01-08 22:40:212023 ],
2024 },
Chong Gudf7fbe92021-02-24 02:55:582025 'fuchsia-code-coverage': {
2026 'swarming': {
2027 'shards': 3,
2028 },
2029 },
Andrew Luo38b311f2019-10-04 03:42:092030 },
2031 },
Chong Gu4eca1ce2021-05-17 08:49:572032 'mediapipe_validating_tests': {
2033 'remove_from': [
2034 # TODO(crbug.com/1201887): Remove once tests are stable.
2035 'Fuchsia x64',
2036 ],
2037 },
Ben Joyce02dc8092021-03-04 21:48:192038 'mojo_test_apk': {
2039 'remove_from': [
2040 'android-code-coverage-native', # Does not generate profraw data.
Ben Joyce46ca6012021-03-31 19:19:252041 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data.
Ben Joyce02dc8092021-03-04 21:48:192042 ],
2043 },
John Budorickf00e5ff2019-06-11 21:21:062044 'mojo_unittests': {
2045 'modifications': {
2046 'android-asan': {
2047 'swarming': {
John Budorick5a29d7542019-10-11 20:56:442048 'shards': 5,
John Budorickf00e5ff2019-06-11 21:21:062049 },
2050 },
Chong Gudf7fbe92021-02-24 02:55:582051 'fuchsia-code-coverage': {
2052 'swarming': {
2053 'shards': 2,
2054 },
2055 },
John Budorickf00e5ff2019-06-11 21:21:062056 },
2057 },
Peter Kotwiczda2f11102020-10-09 05:29:502058 'monochrome_public_apk_checker': {
Ben Pastene521f8d62020-01-08 20:01:152059 'modifications': {
2060 'ToTAndroid': {
2061 'swarming': {
2062 'dimension_sets': [
2063 {
John Budorick838256a2020-02-29 01:29:072064 'cpu': 'x86-64',
Ben Pastene521f8d62020-01-08 20:01:152065 'device_os': None,
2066 'device_playstore_version': None,
2067 'device_type': None,
2068 'os': 'Ubuntu-16.04',
2069 },
2070 ],
2071 },
2072 },
2073 'android-arm64-proguard-rel': {
2074 'swarming': {
2075 'dimension_sets': [
2076 {
John Budorick838256a2020-02-29 01:29:072077 'cpu': 'x86-64',
Ben Pastene521f8d62020-01-08 20:01:152078 'device_os': None,
2079 'device_playstore_version': None,
2080 'device_type': None,
2081 'os': 'Ubuntu-16.04',
2082 },
2083 ],
2084 },
2085 },
2086 'android-pie-arm64-rel': {
2087 'swarming': {
2088 'dimension_sets': [
2089 {
John Budorick838256a2020-02-29 01:29:072090 'cpu': 'x86-64',
Ben Pastene521f8d62020-01-08 20:01:152091 'device_os': None,
2092 'device_os_flavor': None,
2093 'device_playstore_version': None,
2094 'device_type': None,
2095 'os': 'Ubuntu-16.04',
2096 },
2097 ],
2098 },
2099 },
2100 },
Erik Chend16d922d2019-12-10 04:37:142101 },
Ben Joyce4677e682021-03-22 22:19:112102 'monochrome_public_bundle_fake_modules_smoke_test' : {
2103 'remove_from': [
2104 'android-pie-arm64-coverage-experimental-rel', # TODO(crbug.com/1190999):
2105 # GLIBC_2.28 Not found.
2106 ],
2107 },
2108 'monochrome_public_bundle_smoke_test' : {
2109 'remove_from': [
2110 'android-pie-arm64-coverage-experimental-rel', # TODO(crbug.com/1190999):
2111 # GLIBC_2.28 Not found.
2112 ],
2113 },
2114 'monochrome_public_smoke_test' : {
2115 'remove_from': [
2116 'android-pie-arm64-coverage-experimental-rel', # TODO(crbug.com/1190999):
2117 # GLIBC_2.28 Not found.
2118 ],
2119 },
bsheedye9469572019-01-23 17:31:332120 'monochrome_public_test_ar_apk': {
2121 'modifications': {
Brian Sheedy12169aa2019-10-16 23:38:032122 'Nougat Phone Tester': {
2123 'args': [
2124 # ArCore is not installed as a system app on N, so we can install it
2125 # normally instead of replacing the system version.
2126 '--additional-apk=//third_party/arcore-android-sdk/test-apks/arcore/arcore_current.apk'
2127 ],
2128 },
bsheedye9469572019-01-23 17:31:332129 # We need to match the Playstore version as well because AR tests fail on
2130 # old versions of the Playstore.
2131 'Oreo Phone Tester': {
Brian Sheedy2bcd16b2019-04-22 22:47:082132 'args': [
2133 # ArCore is not installed as a system app on O, so we can install it
2134 # normally instead of replacing the system version.
2135 '--additional-apk=//third_party/arcore-android-sdk/test-apks/arcore/arcore_current.apk'
2136 ],
bsheedye9469572019-01-23 17:31:332137 'swarming': {
2138 'dimension_sets': [
2139 {
2140 'device_os': 'OPR3.170623.008',
bsheedye9469572019-01-23 17:31:332141 'device_type': 'marlin',
2142 'os': 'Android',
2143 },
2144 ],
2145 },
2146 },
Haiyang Pan57159eba2020-05-07 23:14:132147 'android-10-arm64-rel': {
2148 'args': [
Brian Sheedy4dc4a6f2020-09-17 22:18:502149 '--remove-system-package=com.google.ar.core',
2150 '--additional-apk=//third_party/arcore-android-sdk/test-apks/arcore/arcore_current.apk',
Haiyang Pan57159eba2020-05-07 23:14:132151 ]
2152 },
Haiyang Pan363c59a2020-07-23 05:47:042153 'android-nougat-arm64-rel': {
2154 'args': [
2155 # ArCore is not installed as a system app on N, so we can install it
2156 # normally instead of replacing the system version.
2157 '--additional-apk=//third_party/arcore-android-sdk/test-apks/arcore/arcore_current.apk'
2158 ],
2159 },
Brian Sheedy2bcd16b2019-04-22 22:47:082160 'android-pie-arm64-dbg': {
2161 'args': [
Brian Sheedy4dc4a6f2020-09-17 22:18:502162 '--remove-system-package=com.google.ar.core',
2163 '--additional-apk=//third_party/arcore-android-sdk/test-apks/arcore/arcore_current.apk',
Brian Sheedy2bcd16b2019-04-22 22:47:082164 ]
2165 }
bsheedye9469572019-01-23 17:31:332166 },
2167 },
Nico Weberd3096fb2018-06-07 17:50:152168 'nacl_helper_nonsfi_unittests': {
2169 'remove_from': [
Stephen Martinis31dde712021-04-23 00:15:532170 # TODO(crbug.com/1200904): Remove after migration
2171 'Linux TSan (bionic)', # Sets enable_nacl=false.
Nico Weberd3096fb2018-06-07 17:50:152172 'Linux TSan Tests', # Sets enable_nacl=false.
2173 ],
2174 },
Kenneth Russellfbda3c532017-12-08 23:57:242175 'nacl_loader_unittests': {
2176 'remove_from': [
Nico Weber48f187142018-06-01 15:16:352177 'ToTMacASan', # The mac asan tot bot sets enable_nacl=false
Nico Weber3611ee802018-06-07 13:34:512178 'linux-win_cross-rel', # Sets enable_nacl=false, https://crbug.com/774186
Stephen Martinis31dde712021-04-23 00:15:532179 # TODO(crbug.com/1200904): Remove after migration
2180 'Linux TSan (bionic)', # The TSan bot sets enable_nacl=false
Nico Webera8fc38f72018-04-10 02:20:112181 'Linux TSan Tests', # The TSan bot sets enable_nacl=false
Nico Weber05d3e642018-05-31 16:59:482182 'Mac ASan 64 Tests (1)', # The mac asan bot sets enable_nacl=false
Kenneth Russellfbda3c532017-12-08 23:57:242183 ],
2184 },
Kenneth Russelleb60cbd22017-12-05 07:54:282185 'net_unittests': {
2186 'modifications': {
Nico Weber33b9b7a2020-06-12 19:23:272187 'CrWinAsan': {
2188 # TODO(crbug.com/794372): net_unittests is slow under ASan.
2189 'swarming': {
2190 'shards': 16,
2191 },
2192 },
2193 'CrWinAsan(dll)': {
2194 # TODO(crbug.com/794372): net_unittests is slow under ASan.
2195 'swarming': {
2196 'shards': 16,
2197 },
2198 },
John Budorickca14c76f62017-12-09 14:19:182199 'Linux ASan LSan Tests (1)': {
John Budorick5052d552017-12-13 02:59:342200 # These are very slow on the ASAN trybot for some reason.
2201 # crbug.com/794372
John Budorickca14c76f62017-12-09 14:19:182202 'swarming': {
John Budorick5052d552017-12-13 02:59:342203 'shards': 16,
John Budorickca14c76f62017-12-09 14:19:182204 },
2205 },
2206 'Linux Chromium OS ASan LSan Tests (1)': {
Takuto Ikuta54671d972018-07-19 19:06:352207 # These are very slow on the ASAN trybot for some reason.
2208 # crbug.com/794372
John Budorickca14c76f62017-12-09 14:19:182209 'swarming': {
Sergey Berezinda3255c2018-03-16 00:34:022210 'shards': 8,
John Budorickca14c76f62017-12-09 14:19:182211 }
2212 },
Takuto Ikuta54671d972018-07-19 19:06:352213 'Linux ChromiumOS MSan Tests': {
2214 # These are very slow on the Chrome OS MSAN trybot for some reason.
2215 # crbug.com/865455
2216 'swarming': {
2217 'shards': 2,
2218 },
2219 },
Stephen Martinis31dde712021-04-23 00:15:532220 # TODO(crbug.com/1200904): Remove after migration
2221 'Linux TSan (bionic)': {
2222 'swarming': {
2223 'shards': 4,
2224 }
2225 },
John Budorickca14c76f62017-12-09 14:19:182226 'Linux TSan Tests': {
2227 'swarming': {
2228 'shards': 4,
2229 }
2230 },
Ben Pastene8bf205b2018-06-13 04:00:332231 # The suite runs signficantly slower on linux dbg, so increase shards.
2232 'Linux Tests (dbg)(1)': {
2233 'swarming': {
2234 'shards': 2,
2235 },
2236 },
Stephen Martinis1384ff92020-01-07 19:52:152237 'ToTLinuxASan': {
2238 # TODO(crbug.com/794372): net_unittests is slow under ASan.
2239 'swarming': {
2240 'shards': 16,
2241 },
2242 },
2243 'ToTLinuxTSan': {
2244 'swarming': {
2245 'shards': 4,
2246 }
2247 },
Haiyang Pan8d9906e02021-03-24 20:11:042248 'android-11-x86-fyi-rel': {
2249 'args': [
2250 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.net_unittests.filter',
2251 ],
2252 },
Haiyang Pan2486dcb2020-09-18 17:53:062253 'android-marshmallow-x86-rel-non-cq': {
John Budorick7fde6b492020-01-29 17:43:502254 # crbug.com/1046060
2255 'args': [
2256 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.net_unittests.filter',
2257 ],
2258 },
Haiyang Pan08d09dc2020-04-01 16:11:212259 'android-pie-x86-rel': {
John Budorick7fde6b492020-01-29 17:43:502260 # crbug.com/1046060
2261 'args': [
2262 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.net_unittests.filter',
2263 ],
2264 },
Chong Gu012d5462021-04-07 23:43:242265 'fuchsia-code-coverage': {
2266 'swarming': {
2267 'shards': 14,
2268 },
2269 },
Omer Katz7d2be652020-01-22 18:13:462270 'linux-blink-heap-concurrent-marking-tsan-rel': {
2271 'swarming': {
2272 'shards': 4,
2273 }
2274 },
Ben Pastene8bf205b2018-06-13 04:00:332275 'linux-chromeos-dbg': {
2276 'swarming': {
2277 'shards': 2,
2278 },
2279 },
Nico Weber33b9b7a2020-06-12 19:23:272280 'win-asan': {
2281 # TODO(crbug.com/794372): net_unittests is slow under ASan.
2282 'swarming': {
2283 'shards': 16,
2284 },
2285 },
Kenneth Russelleb60cbd22017-12-05 07:54:282286 },
2287 },
John Chenaab16fc02020-03-03 06:35:452288 'not_site_per_process_blink_web_tests': {
Lukasz Anforowicz04bc6302018-11-19 19:04:282289 'remove_from': [
Lukasz Anforowicz04bc6302018-11-19 19:04:282290 # TODO(dpranke): Should we be running this step on Linux Tests (dbg)(1)?
2291 'Linux Tests (dbg)(1)',
Lukasz Anforowicz04bc6302018-11-19 19:04:282292 ],
Yuke Liaobc9ff982019-04-30 06:56:162293 'modifications': {
Stephen Martinis1384ff92020-01-07 19:52:152294 'Linux Tests': {
2295 "args": [
2296 "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw",
Stephen Martinis1384ff92020-01-07 19:52:152297 ],
2298 },
Yuke Liaoea70f472019-12-19 06:03:362299 'linux-code-coverage': {
2300 'args': [
2301 '--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw',
Yuke Liaoea70f472019-12-19 06:03:362302 ],
2303 'swarming': {
2304 'shards': 20,
2305 },
2306 },
Stephanie Kim5c7f31d2021-04-27 18:00:062307 'linux-xenial-rel': {
2308 "args": [
2309 "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw",
2310 ],
2311 },
Yuke Liaobc9ff982019-04-30 06:56:162312 },
Lukasz Anforowicz04bc6302018-11-19 19:04:282313 },
Xi Cheng34ca4042018-02-23 00:10:122314 'notification_helper_unittests': {
2315 'remove_from': [
Hans Wennborg252643a2018-05-22 14:41:122316 # The test uses WinRT, which only exists in Windows 8 or above.
2317 # (https://crbug.com/813553)
Xi Cheng34ca4042018-02-23 00:10:122318 'Win 7 Tests x64 (1)',
Xi Cheng34ca4042018-02-23 00:10:122319 'Win7 Tests (1)',
2320 'Win7 Tests (dbg)(1)',
Stephen Martinis1384ff92020-01-07 19:52:152321 # all these bots run Windows 7.
Xi Cheng34ca4042018-02-23 00:10:122322 'ToTWin',
2323 'ToTWin(dbg)',
2324 'ToTWin(dll)',
inglorionb8e7a3ed2019-04-12 09:49:032325 'ToTWinOfficial',
Arthur Eubanks0c24b822021-06-15 18:51:342326 'ToTWinOfficial64',
Xi Cheng34ca4042018-02-23 00:10:122327 'ToTWin64',
2328 'ToTWin64(dbg)',
2329 'ToTWin64(dll)',
2330 'ToTWinCFI',
2331 'ToTWinCFI64',
Xi Cheng34ca4042018-02-23 00:10:122332 ],
2333 },
Ben Pastenee723b2f2019-05-31 19:10:272334 'ozone_unittests': {
2335 'modifications': {
Ben Pastene8ef125e2019-12-10 01:46:292336 'chromeos-betty-pi-arc-chrome': {
2337 'args': [
2338 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter',
2339 ],
2340 },
Ben Pastene500cc1d12021-01-22 18:10:472341 'chromeos-betty-pi-arc-chrome-dchecks': {
2342 'args': [
2343 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter',
2344 ],
2345 },
Jacob Kopczynski2fd462052020-11-13 19:18:222346 'chromeos-betty-pi-arc-chrome-ltc': {
2347 'args': [
2348 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter',
2349 ],
2350 },
2351 'chromeos-betty-pi-arc-chrome-lts': {
2352 'args': [
2353 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter',
2354 ],
2355 },
Ben Pastene8ef125e2019-12-10 01:46:292356 'linux-chromeos-chrome': {
2357 'args': [
2358 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter',
2359 ],
2360 },
Jacob Kopczynski3a555bd32020-12-10 01:41:162361 'linux-chromeos-ltc': {
2362 'args': [
2363 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter',
2364 ],
2365 },
2366 'linux-chromeos-lts': {
2367 'args': [
2368 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter',
2369 ],
2370 },
Ben Pastenee723b2f2019-05-31 19:10:272371 },
2372 },
Karen Qian385d2ca2019-03-19 21:49:582373 'perfetto_unittests': {
2374 'remove_from': [
Haiyang Pan363c59a2020-07-23 05:47:042375 # TODO(crbug.com/931138): Fix permission issue when creating tmp files
John Budorickd3fa5992019-12-13 17:22:412376 'android-arm64-proguard-rel',
John Budorickf2283d72019-06-25 01:09:092377 'android-asan',
Yun Liu022f4512019-06-10 23:14:042378 'android-code-coverage',
Yun Liu7cfd28a2019-10-30 01:57:122379 'android-code-coverage-native',
Haiyang Pan32b83392020-03-14 01:38:462380 'android-lollipop-arm-rel',
Karen Qian385d2ca2019-03-19 21:49:582381 'android-marshmallow-arm64-rel',
Haiyang Pan2486dcb2020-09-18 17:53:062382 'android-marshmallow-x86-rel-non-cq',
Haiyang Pan363c59a2020-07-23 05:47:042383 'android-nougat-arm64-rel',
Ben Joyce46ca6012021-03-31 19:19:252384 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data.
Andrew Luo38b311f2019-10-04 03:42:092385 'android-pie-arm64-rel',
Haiyang Pan08d09dc2020-04-01 16:11:212386 'android-pie-x86-rel',
Haiyang Panfed339172021-03-10 23:19:572387 'android-11-x86-fyi-rel',
Karen Qian385d2ca2019-03-19 21:49:582388 'Lollipop Phone Tester',
2389 'Lollipop Tablet Tester',
2390 'Marshmallow 64 bit Tester',
2391 'Marshmallow Tablet Tester',
2392 'Nougat Phone Tester',
Arthur Eubanksc8f86ee2021-05-10 20:14:242393 'ToTAndroid'
Karen Qian385d2ca2019-03-19 21:49:582394 ]
2395 },
Stephen Martinis54d64ad2018-09-21 22:16:202396 'performance_test_suite': {
2397 'modifications': {
Zhaoyang Li78427592021-03-25 19:03:232398 'Mac10.15 Tests (dbg)': {
2399 'args': [
2400 '--browser=debug',
2401 ],
2402 },
Stephen Martinis54d64ad2018-09-21 22:16:202403 'Win10 Tests x64 (dbg)': {
2404 'args': [
Takuto Ikutab28b582e2021-02-10 01:41:212405 '--browser=debug_x64',
Stephen Martinis54d64ad2018-09-21 22:16:202406 ],
2407 'experiment_percentage': 100,
2408 },
2409 'Win7 Tests (dbg)(1)': {
2410 'args': [
2411 '--browser=debug',
2412 ],
2413 },
2414 },
2415 },
Sven Zhenge8335e02020-08-07 22:38:392416 'pixel_browser_tests': {
2417 'modifications': {
2418 'win-pixel-tester-rel': {
2419 'non_precommit_args': [
2420 # Do not allow retry or it will break the bulk approval process.
2421 # When retry with fail-pass pattern, the passing test will overwrite the previously
2422 # seen flaky version on the trace. We can triage the image using the printed link,
2423 # but it will not show on the Skia Gold search page.
2424 '--test-launcher-retry-limit=0',
2425 ],
2426 },
2427 },
2428 },
Jonah Ryan-Davis832c8462020-06-09 03:45:032429 'pixel_skia_gold_passthrough_test': {
Brian Sheedyc0c142c2021-06-01 21:18:052430 'modifications': {
2431 'Android FYI Release (Pixel 4)': {
2432 'args': [
2433 # Pixel 4s are weird in that they can output in different color spaces
2434 # simultaneously. The readback code for capturing a screenshot assumes
2435 # only one color space, so disable wide color gamut for the test to
2436 # work around the issue. See https://crbug.com/1166379 for more
2437 # information.
2438 '--extra-browser-args=--disable-wcg-for-test',
2439 ],
2440 },
2441 'Optional Android Release (Pixel 4)': {
2442 'args': [
2443 # See above.
2444 '--extra-browser-args=--disable-wcg-for-test',
2445 ],
2446 },
2447 },
Jonah Ryan-Davis832c8462020-06-09 03:45:032448 'replacements': {
2449 # The V8 builders pass the V8 revision for ${got_revision}, so instead
2450 # use ${got_cr_revision}, which is only set on the V8 bots.
2451 'Linux V8 FYI Release (NVIDIA)': {
2452 'args': {
2453 '--git-revision': '${got_cr_revision}',
2454 },
2455 },
2456 'Linux V8 FYI Release - pointer compression (NVIDIA)': {
2457 'args': {
2458 '--git-revision': '${got_cr_revision}',
2459 },
2460 },
Jonah Ryan-Davisdeeffeaf2020-06-18 17:56:002461 'Mac V8 FYI Release (Intel)': {
2462 'args': {
2463 '--git-revision': '${got_cr_revision}',
2464 },
2465 },
Jonah Ryan-Davis832c8462020-06-09 03:45:032466 'Win V8 FYI Release (NVIDIA)': {
2467 'args': {
2468 '--git-revision': '${got_cr_revision}',
2469 },
2470 },
2471 },
2472 },
2473 'pixel_skia_gold_validating_test': {
Brian Sheedy0566f2cb2021-02-12 22:12:502474 'modifications': {
2475 'Android FYI Release (Pixel 4)': {
2476 'args': [
2477 # Pixel 4s are weird in that they can output in different color spaces
2478 # simultaneously. The readback code for capturing a screenshot assumes
2479 # only one color space, so disable wide color gamut for the test to
2480 # work around the issue. See https://crbug.com/1166379 for more
2481 # information.
2482 '--extra-browser-args=--disable-wcg-for-test',
2483 ],
2484 },
Brian Sheedycde1ab1882021-05-27 21:22:002485 'Optional Android Release (Pixel 4)': {
2486 'args': [
2487 # See above.
2488 '--extra-browser-args=--disable-wcg-for-test',
2489 ],
2490 },
Brian Sheedy0566f2cb2021-02-12 22:12:502491 },
Brian Sheedye6ea0ee2019-07-11 02:54:372492 'replacements': {
Brian Sheedye6ea0ee2019-07-11 02:54:372493 # The V8 builders pass the V8 revision for ${got_revision}, so instead
2494 # use ${got_cr_revision}, which is only set on the V8 bots.
2495 'Android V8 FYI Release (Nexus 5X)': {
2496 'args': {
Brian Sheedy4d335deb2020-04-01 20:47:322497 '--git-revision': '${got_cr_revision}',
Brian Sheedye6ea0ee2019-07-11 02:54:372498 },
2499 },
Brian Sheedye6ea0ee2019-07-11 02:54:372500 'Mac V8 FYI Release (Intel)': {
2501 'args': {
Brian Sheedy4d335deb2020-04-01 20:47:322502 '--git-revision': '${got_cr_revision}',
Brian Sheedye6ea0ee2019-07-11 02:54:372503 },
2504 },
Brian Sheedye6ea0ee2019-07-11 02:54:372505 },
2506 },
2507 'pixel_test':{
Takuto Ikuta35c85522019-06-04 16:55:462508 'modifications': {
2509 'Android Release (Nexus 5X)': {
2510 'swarming': {
2511 'shards': 2,
2512 },
2513 },
2514 },
Nico Weber128fd382018-06-14 23:29:272515 },
Chong Gu7ee366b2021-04-29 22:59:272516 'pixel_tests': {
2517 'remove_from': [
2518 'Fuchsia x64' # https://crbug.com/1203236
2519 ],
2520 },
Brian Sheedy9653f152019-08-07 17:02:442521 'rendering_representative_perf_tests': {
2522 'modifications': {
2523 'Win10 FYI x64 Exp Release (Intel HD 630)': {
2524 'args': [
Takuto Ikutab28b582e2021-02-10 01:41:212525 '--browser=release_x64',
Brian Sheedy9653f152019-08-07 17:02:442526 ],
2527 },
2528 'Win10 FYI x64 Exp Release (NVIDIA)': {
2529 'args': [
Takuto Ikutab28b582e2021-02-10 01:41:212530 '--browser=release_x64',
Brian Sheedy9653f152019-08-07 17:02:442531 ],
2532 },
Yuly Novikov86cb3542020-11-26 17:10:002533 'Win10 FYI x64 Release (AMD RX 5500 XT)': {
2534 'args': [
Takuto Ikutab28b582e2021-02-10 01:41:212535 '--browser=release_x64',
Yuly Novikov86cb3542020-11-26 17:10:002536 ],
2537 },
Brian Sheedy9653f152019-08-07 17:02:442538 'Win10 FYI x64 Release (Intel HD 630)': {
2539 'args': [
Takuto Ikutab28b582e2021-02-10 01:41:212540 '--browser=release_x64',
Brian Sheedy9653f152019-08-07 17:02:442541 ],
2542 },
Brian Sheedy9653f152019-08-07 17:02:442543 'Win10 FYI x64 Release (NVIDIA)': {
2544 'args': [
Takuto Ikutab28b582e2021-02-10 01:41:212545 '--browser=release_x64',
Brian Sheedy9653f152019-08-07 17:02:442546 ],
2547 },
behdad26cf7e72019-12-18 13:57:302548 'Win10 x64 Release (NVIDIA)': {
2549 'args': [
Takuto Ikutab28b582e2021-02-10 01:41:212550 '--browser=release_x64',
behdad26cf7e72019-12-18 13:57:302551 ],
2552 },
Brian Sheedy9653f152019-08-07 17:02:442553 },
2554 },
John Budorickdce9d462019-03-23 00:25:382555 'sandbox_linux_unittests': {
2556 'modifications': {
2557 'Lollipop Phone Tester': {
2558 'args': [
2559 '--shard-timeout=300',
2560 ],
2561 },
Haiyang Pan32b83392020-03-14 01:38:462562 'android-lollipop-arm-rel': {
2563 'args': [
2564 '--shard-timeout=300',
2565 ],
2566 },
Haiyang Pan2486dcb2020-09-18 17:53:062567 'android-marshmallow-x86-rel-non-cq': {
John Budorick6e8e595b2020-01-27 18:15:582568 'args': [
2569 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.sandbox_linux_unittests.filter',
2570 ]
2571 },
Haiyang Pan08d09dc2020-04-01 16:11:212572 'android-pie-x86-rel': {
John Budorick191adfcd2020-01-29 18:19:042573 'args': [
2574 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.sandbox_linux_unittests.filter',
2575 ]
2576 },
John Budorickdce9d462019-03-23 00:25:382577 },
John Budorick3ebfdf852019-05-13 22:28:162578 'remove_from': [
John Budorick3ebfdf852019-05-13 22:28:162579 'android-asan', # https://crbug.com/962650
2580 ],
John Budorickdce9d462019-03-23 00:25:382581 },
Brian Sheedyc0c142c2021-06-01 21:18:052582 'screenshot_sync_passthrough_tests': {
2583 'modifications': {
2584 'Android FYI Release (Pixel 4)': {
2585 'args': [
2586 # Pixel 4s are weird in that they can output in different color spaces
2587 # simultaneously. The readback code for capturing a screenshot assumes
2588 # only one color space, so disable wide color gamut for the test to
2589 # work around the issue. See https://crbug.com/1166379 for more
2590 # information.
2591 '--extra-browser-args=--disable-wcg-for-test',
2592 ],
2593 },
2594 'Optional Android Release (Pixel 4)': {
2595 'args': [
2596 # See above.
2597 '--extra-browser-args=--disable-wcg-for-test',
2598 ],
2599 },
2600 },
2601 },
Brian Sheedy0566f2cb2021-02-12 22:12:502602 'screenshot_sync_validating_tests': {
2603 'modifications': {
2604 'Android FYI Release (Pixel 4)': {
2605 'args': [
2606 # Pixel 4s are weird in that they can output in different color spaces
2607 # simultaneously. The readback code for capturing a screenshot assumes
2608 # only one color space, so disable wide color gamut for the test to
2609 # work around the issue. See https://crbug.com/1166379 for more
2610 # information.
2611 '--extra-browser-args=--disable-wcg-for-test',
2612 ],
2613 },
Brian Sheedycde1ab1882021-05-27 21:22:002614 'Optional Android Release (Pixel 4)': {
2615 'args': [
2616 # See above.
2617 '--extra-browser-args=--disable-wcg-for-test',
2618 ],
2619 },
Brian Sheedy0566f2cb2021-02-12 22:12:502620 },
2621 },
Kenneth Russelleb60cbd22017-12-05 07:54:282622 'services_unittests': {
2623 'remove_from': [
Nico Weber15a00d62018-05-16 17:11:482624 'ToTLinuxMSan', # https://crbug.com/831676
Kenneth Russell8a386d42018-06-02 09:48:012625 # The face and barcode detection tests fail on the Mac Pros.
2626 'Mac Pro FYI Release (AMD)',
Nico Weberd36959682018-04-12 03:33:462627 'Linux ChromiumOS MSan Tests', # https://crbug.com/831676
2628 'Linux MSan Tests', # https://crbug.com/831676
Kenneth Russelleb60cbd22017-12-05 07:54:282629 ],
Brian Sheedyb6c58792020-05-07 18:37:332630 'replacements': {
2631 # TODO(crbug.com/1078982): Remove once the test is fixed on 10.15.4.
2632 'Mac FYI Experimental Release (Intel)': {
2633 'args': {
2634 '--gtest_filter': '*Detection*:-FaceDetectionImplMacTest.ScanOneFace*',
2635 },
2636 },
2637 },
Haiyang Pan363c59a2020-07-23 05:47:042638 'modifications': {
2639 'android-nougat-arm64-rel': {
2640 # TODO(crbug.com/1108055): Remove this filter
2641 'args': [
2642 '--gtest_filter=-SystemPerfettoTest.*',
2643 ],
Chong Gudf7fbe92021-02-24 02:55:582644 },
Chong Gu52481452021-04-02 17:52:412645 'fuchsia-code-coverage': {
2646 'swarming': {
2647 'shards': 7,
2648 },
2649 },
2650 }
Chong Gudf7fbe92021-02-24 02:55:582651 },
Stephen Martinis54d64ad2018-09-21 22:16:202652 'swiftshader_unittests': {
2653 'remove_from': [
2654 # Save capacity on the hardware where we have only a few machines.
2655 'Mac FYI Experimental Release (Intel)',
2656 'Mac FYI Experimental Retina Release (AMD)',
2657 'Mac FYI Experimental Retina Release (NVIDIA)',
2658 'Mac Pro FYI Release (AMD)',
2659 ],
2660 },
Kenneth Russelleb60cbd22017-12-05 07:54:282661 'sync_integration_tests': {
Brad Halla36886c2019-02-26 16:52:292662 'remove_from': [
Brad Halla36886c2019-02-26 16:52:292663 'CrWinAsan(dll)', # https://crbug.com/935598
2664 ],
Kenneth Russelleb60cbd22017-12-05 07:54:282665 'modifications': {
Erik Chene84bc1c2019-11-25 23:23:522666 'Linux ASan LSan Tests (1)': {
2667 'swarming': {
2668 'shards': 4,
2669 },
2670 },
Stephen Martinis31dde712021-04-23 00:15:532671 # TODO(crbug.com/1200904): Remove after migration
2672 'Linux TSan (bionic)': {
2673 'swarming': {
2674 'shards': 6,
2675 },
2676 },
Nico Weber8fbc2832018-12-14 16:00:572677 'Linux TSan Tests': {
2678 'swarming': {
2679 'shards': 6,
2680 },
2681 },
Sven Zheng9a52be52020-10-09 21:27:122682 # TODO(crbug.com/1131588) Tests are flaky only on CQ.
2683 'Mac10.13 Tests': {
2684 'precommit_args': [
2685 '--gtest_filter=-*',
2686 ],
2687 },
Zhaoyang Li69e2e002021-02-19 21:57:352688 # TODO(crbug.com/1131588) Tests are flaky only on CQ.
2689 'Mac10.15 Tests': {
2690 'precommit_args': [
2691 '--gtest_filter=-*',
2692 ],
2693 },
Stephen Martinis1384ff92020-01-07 19:52:152694 'ToTLinuxTSan': {
Kenneth Russelleb60cbd22017-12-05 07:54:282695 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:152696 'shards': 6,
Kenneth Russelleb60cbd22017-12-05 07:54:282697 },
2698 },
Stephen Martinis75ab55d2018-08-30 02:27:122699 'Win10 Tests x64 (dbg)': {
2700 'experiment_percentage': 100, # https://crbug.com/840369
2701 },
Stephen Martinis1384ff92020-01-07 19:52:152702 'Win7 Tests (dbg)(1)': {
2703 'swarming': {
2704 'shards': 2,
2705 },
2706 },
2707 'linux-chromeos-code-coverage': {
Yuke Liao79424e42020-01-06 21:00:112708 'swarming': {
2709 'shards': 4,
2710 },
2711 },
Stephen Martinis1384ff92020-01-07 19:52:152712 'linux-code-coverage': {
Yuke Liao79424e42020-01-06 21:00:112713 'swarming': {
2714 'shards': 4,
2715 },
2716 },
Sven Zhengfbbf21a2021-04-16 23:57:122717 # https://crbug.com/1199909,
Junhua Chen39dd2dba2021-05-05 17:51:542718 'linux-lacros-code-coverage': {
2719 'args': [
2720 '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.sync_integration_tests.filter',
2721 ]
2722 },
Sven Zhengfbbf21a2021-04-16 23:57:122723 'linux-lacros-rel': {
Sven Zheng5c9d3e342020-08-11 21:39:432724 'args': [
Yuke Liao56a437dd2021-05-05 04:53:402725 '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.sync_integration_tests.filter',
Sven Zhengfbbf21a2021-04-16 23:57:122726 ]
Anastasiia N11c1f8d2021-04-19 14:04:422727 },
2728 'linux-lacros-tester-rel': {
2729 'args': [
Yuke Liao56a437dd2021-05-05 04:53:402730 '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.sync_integration_tests.filter',
Anastasiia N11c1f8d2021-04-19 14:04:422731 ],
2732 },
Kenneth Russelleb60cbd22017-12-05 07:54:282733 },
2734 },
Haiyang Panfed339172021-03-10 23:19:572735 'system_webview_shell_layout_test_apk': {
2736 'remove_from': [
2737 'android-11-x86-fyi-rel', # crbug.com/1165280
2738 ],
2739 },
Weizhong Xia613fda42021-04-21 20:11:522740 'system_webview_wpt': {
2741 'modifications': {
2742 'android-webview-pie-x86-wpt-fyi-rel': {
Weizhong Xia03b8e36e2021-06-25 23:23:582743 'args': [
2744 '--log-wptreport',
2745 ],
Weizhong Xia613fda42021-04-21 20:11:522746 'swarming': {
2747 'dimension_sets': [
2748 {
2749 'machine_type': 'n1-standard-8',
2750 },
2751 ],
2752 'shards': 18,
2753 },
2754 },
2755 },
2756 },
Kenneth Russell8a386d42018-06-02 09:48:012757 'tab_capture_end2end_tests': {
Nico Webere89a3c92018-07-01 01:30:522758 # Run these only on Release bots.
Kenneth Russell8a386d42018-06-02 09:48:012759 'remove_from': [
Kenneth Russell8a386d42018-06-02 09:48:012760 'Linux Debug (NVIDIA)',
2761 'Mac Debug (Intel)',
2762 'Mac Retina Debug (AMD)',
Yuly Novikovbc1ccff2019-08-03 00:05:492763 'Win10 FYI x64 Debug (NVIDIA)',
Yuly Novikovf28f1eca2019-07-04 22:43:392764 # Disabled due to dbus crashes crbug.com/927465
Yuly Novikov5865ff72019-07-09 21:38:052765 'Linux FYI Release (Intel HD 630)',
2766 'Linux FYI Release (NVIDIA)',
Brian Sheedy22d051e2019-08-07 00:50:162767 'Linux FYI SkiaRenderer Vulkan (Intel HD 630)',
Yuly Novikov5865ff72019-07-09 21:38:052768 'Linux FYI SkiaRenderer Vulkan (NVIDIA)',
2769 'Linux Release (NVIDIA)',
Kenneth Russell8a386d42018-06-02 09:48:012770 ],
Emily Hanleyb64ac7c2018-05-25 13:36:552771 },
Haiyang Pan8c201b92020-06-04 01:25:072772 'telemetry_chromium_minidump_unittests': {
2773 'remove_from': [
Haiyang Pan2486dcb2020-09-18 17:53:062774 'android-marshmallow-x86-rel-non-cq', # crbug.com/1084352
Haiyang Pan8c201b92020-06-04 01:25:072775 ],
2776 },
Brian Sheedyc117f6d2020-05-06 02:23:272777 'telemetry_monochrome_minidump_unittests': {
2778 'remove_from': [
2779 # Monochrome isn't supported on M.
2780 'android-marshmallow-arm64-rel',
Haiyang Pan2486dcb2020-09-18 17:53:062781 'android-marshmallow-x86-rel-non-cq',
Brian Sheedyc117f6d2020-05-06 02:23:272782 ],
2783 },
Kenneth Russelleb60cbd22017-12-05 07:54:282784 'telemetry_perf_unittests': {
2785 'modifications': {
Kenneth Russelleb60cbd22017-12-05 07:54:282786 'Linux Tests': {
2787 'args': [
2788 '--xvfb',
Ned Nguyene6e26042018-01-17 20:42:482789 '--jobs=1',
Kenneth Russelleb60cbd22017-12-05 07:54:282790 ],
2791 },
Juan Antonio Navarro Perez4899edf2019-03-14 13:05:352792 'Linux Tests (dbg)(1)': {
2793 'args': [
2794 '--xvfb',
2795 '--jobs=1',
2796 ],
2797 },
Stephanie Kim56defb72020-11-19 21:32:372798 # TODO crbug.com/1143924: Remove when experimentation is complete
2799 'Linux Tests Robocrop': {
2800 'args': [
2801 '--xvfb',
2802 '--jobs=1',
2803 ],
2804 },
Kenneth Russelleb60cbd22017-12-05 07:54:282805 # Disable parallelism on all Mac bots.
Kenneth Russelleb60cbd22017-12-05 07:54:282806 'Mac10.11 Tests': {
2807 'args': [
2808 '--jobs=1',
2809 ],
2810 },
2811 'Mac10.12 Tests': {
2812 'args': [
2813 '--jobs=1',
2814 ],
2815 },
Ned Nguyen6e6e5b32018-02-21 20:21:502816 'Win7 Tests (dbg)(1)': {
2817 'args': [
2818 '--jobs=1',
2819 ],
2820 'swarming': {
2821 'shards': 20,
2822 },
2823 'experiment_percentage': 100,
2824 },
Ben Pastene69400eb2021-03-25 19:27:162825 'chromeos-eve-chrome': {
2826 'args': [
2827 # TODO(crbug.com/1191132): Re-enable.
2828 '--skip=benchmarks.benchmark_smoke_unittest.BenchmarkSmokeTest.wasmpspdfkit',
2829 ],
2830 },
Ben Pastene2b4b15f2021-03-04 00:39:242831 'chromeos-kevin-chrome': {
2832 # TODO(crbug.com/1182948): Remove the experiment.
2833 'experiment_percentage': 100,
2834 },
Ben Pastene7b1384a2021-04-22 23:24:322835 'linux-bionic-rel': {
2836 'args': [
2837 '--xvfb',
2838 '--jobs=1',
2839 ],
2840 },
Stephen Martinis1384ff92020-01-07 19:52:152841 'linux-chromium-tests-staging-tests': {
2842 'args': [
2843 '--xvfb',
2844 '--jobs=1',
2845 ],
2846 },
2847 'linux-trusty-rel': {
2848 'args': [
2849 '--xvfb',
2850 '--jobs=1',
2851 ],
2852 },
Stephanie Kim5c7f31d2021-04-27 18:00:062853 'linux-xenial-rel': {
2854 'args': [
2855 '--xvfb',
2856 '--jobs=1',
2857 ],
2858 },
Kenneth Russelleb60cbd22017-12-05 07:54:282859 },
2860 'remove_from': [
Haiyang Pan2486dcb2020-09-18 17:53:062861 'android-marshmallow-x86-rel-non-cq', # crbug.com/1084352
Haiyang Pan0e39edf42020-04-28 19:29:012862 # There's no need to run telemetry_perf_unittests on both lollipop and
Erik Chen96894722019-11-21 20:03:392863 # marshmallow on the CQ. https://crbug.com/1026487.
2864 'android-marshmallow-arm64-rel',
Haiyang Pan363c59a2020-07-23 05:47:042865 'android-nougat-arm64-rel', # crbug.com/1108124
Andrew Luobe83fd82019-12-19 03:07:582866 'android-pie-arm64-rel',
Garrett Beatyeef031a2019-02-28 01:55:412867 # crbug.com/936540
Garrett Beatyeef031a2019-02-28 01:55:412868 'Mac10.11 Tests',
Shenghua Zhangbd6f1b232018-03-03 02:59:142869 'Mac10.13 Tests',
Zhaoyang Li69e2e002021-02-19 21:57:352870 'Mac10.15 Tests',
Zhaoyang Li78427592021-03-25 19:03:232871 'Mac10.15 Tests (dbg)',
Stephen Martinis1384ff92020-01-07 19:52:152872 'Linux - Future (dbg)', # client.v8.chromium
Takuto Ikuta9aa015d2019-04-15 23:33:292873 'Win10 Tests x64',
Stephen Martinise701f5a2018-05-04 01:25:112874 'Win10 Tests x64 (dbg)',
Kuan Huangc93e8672021-06-29 21:13:452875 'Win10 Tests x64 20h2',
Kenneth Russelleb60cbd22017-12-05 07:54:282876 ],
2877 },
Stephen Martinis54d64ad2018-09-21 22:16:202878 'telemetry_unittests': {
2879 'modifications': {
Stephen Martinis54d64ad2018-09-21 22:16:202880 'Win10 Tests x64 (dbg)': {
2881 'experiment_percentage': 100, # crbug.com/870673
Ben Pastene9383fe12020-10-20 21:32:402882 },
John Budorickc498fd3c2019-03-14 01:16:262883 },
2884 'remove_from': [
Ben Pastene619317752020-12-03 00:04:142885 'chromeos-kevin-rel', # crbug.com/1141234: Restore when there's more DUTs
2886
John Budorickc498fd3c2019-03-14 01:16:262887 # crbug.com/936540
John Budorickc498fd3c2019-03-14 01:16:262888 'Mac10.11 Tests',
Takuto Ikuta9aa015d2019-04-15 23:33:292889
2890 'Win10 Tests x64',
Kuan Huangc93e8672021-06-29 21:13:452891 'Win10 Tests x64 20h2',
John Budorickc498fd3c2019-03-14 01:16:262892 ],
Stephen Martinis54d64ad2018-09-21 22:16:202893 },
Brian Sheedyf3b48d62020-05-08 23:03:122894 'test_buildbucket_api_gpu_use_cases': {
2895 'remove_from': [
2896 # crbug.com/1080749
2897 'Optional Linux Release (NVIDIA)',
2898 ],
2899 },
Kenneth Russelleb60cbd22017-12-05 07:54:282900 'unit_tests': {
Yun Liu3e759dbb2019-11-01 19:25:522901 'remove_from': [
Haiyang Pan0e39edf42020-04-28 19:29:012902 # There's no need to run unit_tests on both lollipop and marshmallow
Erik Chen96894722019-11-21 20:03:392903 # on the CQ. https://crbug.com/1026487.
2904 'android-marshmallow-arm64-rel',
Haiyang Pan765477d2020-09-22 17:59:552905 'android-marshmallow-x86-rel-non-cq', # runs on MM-x86-rel already
Ben Pastene3e32ffe2020-08-07 03:37:072906 'android-pie-arm64-rel', # https://crbug.com/1010211
Yun Liu3e759dbb2019-11-01 19:25:522907 ],
Kenneth Russelleb60cbd22017-12-05 07:54:282908 'modifications': {
John Budorickca14c76f62017-12-09 14:19:182909 'Linux ASan LSan Tests (1)': {
John Budorick5052d552017-12-13 02:59:342910 # These are slow on the ASAN trybot for some reason.
2911 # crbug.com/794372
John Budorickca14c76f62017-12-09 14:19:182912 'swarming': {
John Budorick5052d552017-12-13 02:59:342913 'shards': 4,
John Budorickca14c76f62017-12-09 14:19:182914 },
2915 },
Stephen Martinis1384ff92020-01-07 19:52:152916 'Linux Chromium OS ASan LSan Tests (1)': {
2917 # These are slow on the ASAN trybot for some reason.
2918 # crbug.com/794372
John Budorickca14c76f62017-12-09 14:19:182919 'swarming': {
2920 'shards': 2,
2921 },
2922 },
Takuto Ikuta54671d972018-07-19 19:06:352923 'Linux ChromiumOS MSan Tests': {
2924 # These are very slow on the Chrome OS MSAN trybot for some reason.
2925 # crbug.com/865455
2926 'swarming': {
2927 'shards': 2,
2928 },
2929 },
Stephen Martinis31dde712021-04-23 00:15:532930 # TODO(crbug.com/1200904): Remove after migration
2931 'Linux TSan (bionic)': {
2932 'swarming': {
2933 'shards': 2,
2934 },
2935 },
Stephen Martinis1384ff92020-01-07 19:52:152936 'Linux TSan Tests': {
Takuto Ikuta54671d972018-07-19 19:06:352937 'swarming': {
2938 'shards': 2,
2939 },
2940 },
Stephen Martinis1384ff92020-01-07 19:52:152941 'ToTLinuxASan': {
Dirk Pranke20eae9a72017-12-09 18:12:142942 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:152943 'shards': 2,
Dirk Pranke20eae9a72017-12-09 18:12:142944 },
2945 },
Stephen Martinis1384ff92020-01-07 19:52:152946 'android-asan': {
2947 'args': [
2948 '--test-launcher-filter-file=../../testing/buildbot/filters/android.asan.unit_tests.filter',
2949 ],
2950 },
Takuto Ikuta527cdff2020-01-29 08:04:272951 'android-marshmallow-arm64-rel-swarming': {
2952 'swarming': {
2953 'shards': 8,
2954 },
2955 },
Stephen Martinis1384ff92020-01-07 19:52:152956 'linux-chromeos-chrome': {
2957 'args': [
2958 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.unit_tests.filter',
2959 ],
2960 },
Ben Pasteneacd57392019-10-31 02:13:252961 'linux-chromeos-dbg': {
2962 'swarming': {
2963 'shards': 2,
2964 },
2965 },
Erik Chend063aef72019-11-18 19:13:102966 'linux-chromeos-rel': {
2967 'swarming': {
2968 'shards': 2,
2969 },
2970 },
Yuke Liao597dd6df72020-08-18 03:02:542971 # https://crbug.com/1111979,
Junhua Chen39dd2dba2021-05-05 17:51:542972 'linux-lacros-code-coverage': {
2973 'args': [
2974 '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.unit_tests.filter',
2975 ],
2976 },
2977 # https://crbug.com/1111979,
Yuke Liao597dd6df72020-08-18 03:02:542978 'linux-lacros-rel': {
2979 'args': [
Yuke Liao56a437dd2021-05-05 04:53:402980 '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.unit_tests.filter',
Yuke Liao597dd6df72020-08-18 03:02:542981 ],
2982 },
Sven Zheng5c9d3e342020-08-11 21:39:432983 # https://crbug.com/1111979,
2984 'linux-lacros-tester-rel': {
Sven Zheng5c9d3e342020-08-11 21:39:432985 'args': [
Yuke Liao56a437dd2021-05-05 04:53:402986 '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.unit_tests.filter',
Sven Zheng5c9d3e342020-08-11 21:39:432987 ],
2988 },
Kenneth Russelleb60cbd22017-12-05 07:54:282989 },
2990 },
Maksim Sisov649b7017a2021-03-04 08:20:392991 'unit_tests_wayland': {
2992 'modifications': {
2993 # CI Ozone/Wayland tester.
2994 'Linux Tester (Ozone Wayland)': {
2995 'args': [
2996 '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.unit_tests_wayland.filter',
2997 ],
2998 },
2999 }
3000 },
Kenneth Russell8a386d42018-06-02 09:48:013001 'video_decode_accelerator_gl_unittest': {
3002 'remove_from': [
Kenneth Russell8a386d42018-06-02 09:48:013003 # Windows Intel doesn't have the GL extensions to support this test.
Yuly Novikovbc1ccff2019-08-03 00:05:493004 'Optional Win10 x64 Release (Intel HD 630)',
3005 'Win10 FYI x64 Release (Intel HD 630)',
Yuly Novikov5ff15502019-07-31 00:55:483006 'Win10 FYI x64 Exp Release (Intel HD 630)',
Kenneth Russell8a386d42018-06-02 09:48:013007 ],
3008 },
Sven Zheng577fe5ff2020-08-03 22:06:443009 'views_unittests': {
Sven Zheng80734f12020-08-06 06:50:393010 'modifications': {
Sven Zheng5c9d3e342020-08-11 21:39:433011 # https://crbug.com/1111979,
Junhua Chen39dd2dba2021-05-05 17:51:543012 'linux-lacros-code-coverage': {
3013 'args': [
3014 '--gtest_filter=-DesktopWidgetFocusManagerTest.AnchoredDialogInDesktopNativeWidgetAura:'
3015 'DesktopWidgetTest*:'
3016 'DesktopWindowTreeHostPlatformTest*:'
3017 'EditableComboboxTest*:'
3018 'MenuRunnerTest*:'
3019 'TextfieldTest*:'
3020 'TooltipControllerTest*:'
3021 'TooltipStateManagerTest*'
3022 ],
3023 },
Sven Zheng5c9d3e342020-08-11 21:39:433024 'linux-lacros-tester-rel': {
Sven Zheng5c9d3e342020-08-11 21:39:433025 'args': [
3026 '--gtest_filter=-DesktopWidgetFocusManagerTest.AnchoredDialogInDesktopNativeWidgetAura:'
Yuke Liao34721c22020-08-14 21:41:193027 'DesktopWidgetTest*:'
3028 'DesktopWindowTreeHostPlatformTest*:'
Yuke Liaocf9db2b2020-08-13 19:42:533029 'EditableComboboxTest*:'
Sven Zhengea8903f2020-08-14 05:27:513030 'MenuRunnerTest*:'
Yuke Liaocf9db2b2020-08-13 19:42:533031 'TextfieldTest*:'
Benjamin Beaudry54b3b882021-03-12 23:55:363032 'TooltipControllerTest*:'
3033 'TooltipStateManagerTest*'
Sven Zheng5c9d3e342020-08-11 21:39:433034 ],
3035 },
Sven Zheng80734f12020-08-06 06:50:393036 },
Sven Zheng577fe5ff2020-08-03 22:06:443037 },
Tom Anderson76eff052020-04-01 21:28:523038 'views_unittests_wayland': {
3039 'modifications': {
Maksim Sisov69730f82020-11-11 12:09:133040 # CQ tester.
Tom Anderson76eff052020-04-01 21:28:523041 'Linux Ozone Tester (Wayland)': {
3042 'args': [
3043 '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.wayland_views_unittests.filter',
3044 ],
3045 },
Maksim Sisov69730f82020-11-11 12:09:133046 # CI tester.
3047 'Linux Tester (Ozone Wayland)': {
3048 'args': [
3049 '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.wayland_views_unittests.filter',
3050 ],
3051 },
Tom Anderson76eff052020-04-01 21:28:523052 },
3053 },
John Budorickd02c429de2020-01-10 19:02:213054 'viz_unittests': {
3055 'modifications': {
Haiyang Pancf765862021-03-18 20:39:153056 'android-11-x86-fyi-rel': {
3057 'args': [
3058 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.viz_unittests.filter',
3059 ],
3060 },
Haiyang Pan2486dcb2020-09-18 17:53:063061 'android-marshmallow-x86-rel-non-cq': {
John Budorickafd548b2020-01-14 20:45:093062 'args': [
John Budorickd02c429de2020-01-10 19:02:213063 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.viz_unittests.filter',
3064 ],
3065 },
Haiyang Pan08d09dc2020-04-01 16:11:213066 'android-pie-x86-rel': {
John Budorickafd548b2020-01-14 20:45:093067 'args': [
John Budorickd02c429de2020-01-10 19:02:213068 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.viz_unittests.filter',
3069 ],
3070 },
3071 },
3072 },
John Budorick20f4fa8d2019-08-02 22:58:293073 'vr_android_unittests': {
3074 'remove_from': [
Michael Thiessen2abf0052021-03-05 18:43:073075 'android-lollipop-arm-rel',
Haiyang Pand12ff5462021-07-12 17:29:023076
3077 # Not available for android x86 & x64 platforms since this GN target
3078 # asserts "enable_vr" which is only true for arm & arm64 on android
3079 # platform. See //chrome/browser/android/vr/BUILD.gn and
3080 # //device/vr/buildflags/buildflags.gni
Haiyang Pan2486dcb2020-09-18 17:53:063081 'android-marshmallow-x86-rel-non-cq',
Haiyang Pan08d09dc2020-04-01 16:11:213082 'android-pie-x86-rel',
Haiyang Panfed339172021-03-10 23:19:573083 'android-11-x86-fyi-rel',
Haiyang Pand12ff5462021-07-12 17:29:023084 'android-12-x64-fyi-rel',
John Budorick20f4fa8d2019-08-02 22:58:293085 ],
3086 },
3087 'vr_common_unittests': {
3088 'remove_from': [
Haiyang Pan08d09dc2020-04-01 16:11:213089 'android-pie-x86-rel',
John Budorick20f4fa8d2019-08-02 22:58:293090 ],
3091 },
Kenneth Russellfbda3c532017-12-08 23:57:243092 'vr_pixeltests': {
3093 'remove_from': [
Haiyang Pan08d09dc2020-04-01 16:11:213094 'android-pie-x86-rel',
Kenneth Russell8ceeabf2017-12-11 17:53:283095 'VR Linux',
Kenneth Russellfbda3c532017-12-08 23:57:243096 ],
3097 },
Nico Webere81999ee2018-07-01 23:52:433098 'wayland_client_perftests': {
3099 'remove_from': [
3100 'linux-chromeos-dbg', # https://crbug.com/859307
3101 ],
3102 },
Chong Gud1a5c5992021-04-09 04:08:323103 'web_engine_browsertests': {
3104 'modifications': {
3105 'fuchsia-code-coverage': {
3106 'swarming': {
Chong Gu115ce152021-04-15 23:57:163107 'shards': 14,
Chong Gud1a5c5992021-04-09 04:08:323108 },
3109 },
3110 },
3111 },
Chong Gu4c9e8f112021-06-02 18:37:263112 'web_engine_integration_tests': {
3113 'modifications': {
3114 'fuchsia-code-coverage': {
3115 'swarming': {
3116 'shards': 6,
3117 },
3118 },
3119 },
3120 },
John Budorick63357462019-02-27 23:02:513121 'webdriver_tests_suite': {
3122 'remove_from': [
3123 'Linux Tests', # https://crbug.com/929689, https://crbug.com/936557
Stephanie Kim5c7f31d2021-04-27 18:00:063124 'linux-xenial-rel',
John Budorick63357462019-02-27 23:02:513125 ],
3126 },
bsheedy048cbdb2019-02-04 20:32:053127 'webgl2_conformance_gl_passthrough_tests': {
3128 'remove_from': [
Geoff Lang1fede152019-10-10 23:03:443129 # Not enough capacity. https://crbug.com/982294
3130 'Mac Pro FYI Release (AMD)',
3131 'Mac FYI Retina Release (NVIDIA)',
bsheedy048cbdb2019-02-04 20:32:053132 ],
3133 },
John Budorick82e61dfb2019-12-10 04:36:093134 'webgl2_conformance_validating_tests': {
Stephen Martinis54d64ad2018-09-21 22:16:203135 'remove_from': [
3136 # The Mac NVIDIA Retina bots don't have the capacity to run
3137 # this test suite on mac_optional_gpu_tests_rel.
3138 'Optional Mac Retina Release (NVIDIA)',
3139 ],
Kenneth Russell8a386d42018-06-02 09:48:013140 'modifications': {
Kenneth Russell8a386d42018-06-02 09:48:013141 'Mac FYI GPU ASAN Release': {
3142 'args': [
3143 '--is-asan',
3144 ]
3145 },
3146 },
3147 },
3148 'webgl_conformance_gl_passthrough_tests': {
3149 'remove_from': [
3150 # crbug.com/555545 and crbug.com/649824:
3151 # Disable webgl_conformance_gl_tests on some Win/AMD cards.
3152 # Always fails on older cards, flaky on newer cards.
Kenneth Russell8a386d42018-06-02 09:48:013153 'Win7 FYI Release (AMD)',
3154 ],
3155 },
Kenneth Russell984f2f12020-12-15 23:23:353156 'webgl_conformance_metal_passthrough_tests': {
3157 'remove_from': [
3158 # crbug.com/1158857: re-enable if Metal shader cache workaround is added.
3159 'Mac FYI Retina Release (NVIDIA)',
3160 ],
3161 },
Stephen Martinis54d64ad2018-09-21 22:16:203162 'webgl_conformance_tests': {
Kenneth Russelle63e41f2019-04-09 02:45:283163 'remove_from': [
3164 # Too slow on this configuration, which is severely hardware
3165 # constrained. crbug.com/950690
3166 'Mac FYI Retina Debug (NVIDIA)',
3167 ],
Kenneth Russell8a386d42018-06-02 09:48:013168 },
John Budorick82e61dfb2019-12-10 04:36:093169 'webgl_conformance_validating_tests': {
3170 'modifications': {
3171 'Mac FYI GPU ASAN Release': {
3172 'args': [
3173 '--is-asan',
3174 ]
3175 },
3176 },
3177 },
Kenneth Russelleb60cbd22017-12-05 07:54:283178 'webkit_unit_tests': {
Yun Liu16394ab32019-11-19 16:37:573179 'remove_from': [
3180 # Flakily fails on Win7. https://crbug.com/943372.
3181 'Win7 Tests (1)',
3182 'Win 7 Tests x64 (1)',
Haiyang Pan2489f032020-09-30 19:05:033183 'android-lollipop-arm-rel', # crbug.com/1133002#c6
Haiyang Pan90ed7c642021-02-06 01:22:063184 # Runs on android-marshmallow-x86-rel already (crbug.com/1127110)
3185 'android-marshmallow-arm64-rel',
3186 'android-marshmallow-x86-rel-non-cq',
Yun Liu16394ab32019-11-19 16:37:573187 ],
Dirk Pranke81ff51c2017-12-09 19:24:283188 'modifications': {
John Budorick5052d552017-12-13 02:59:343189 'Linux ASan LSan Tests (1)': {
3190 # These are very slow on the ASAN trybot for some reason.
3191 # crbug.com/794372
3192 'swarming': {
3193 'shards': 5,
3194 },
3195 },
Stephen Martinis31dde712021-04-23 00:15:533196 # TODO(crbug.com/1200904): Remove after migration
3197 'Linux TSan (bionic)': {
3198 'swarming': {
3199 'shards': 2,
3200 },
3201 },
Erik Chen681dc0282019-11-26 22:54:493202 'Linux TSan Tests': {
3203 'swarming': {
3204 'shards': 2,
3205 },
3206 },
arthursonzogni26889d82018-05-29 17:18:163207 'Marshmallow 64 bit Tester': {
3208 # Increase timeout. See https://crbug.com/847229.
3209 'swarming': {
3210 'hard_timeout': 1200,
3211 },
3212 },
Haiyang Panc7c009e2021-03-18 19:31:233213 'android-11-x86-fyi-rel': {
3214 'args': [
3215 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.blink_unittests.filter',
3216 ],
3217 },
Omer Katz7d2be652020-01-22 18:13:463218 'linux-blink-heap-concurrent-marking-tsan-rel': {
3219 'swarming': {
3220 'shards': 2,
3221 },
3222 },
Dirk Pranke81ff51c2017-12-09 19:24:283223 },
Kenneth Russelleb60cbd22017-12-05 07:54:283224 },
Haiyang Panfbd2b482020-09-23 23:41:253225 'weblayer_browsertests': {
3226 'modifications': {
Haiyang Pand38464f52021-03-24 00:29:013227 'android-11-x86-fyi-rel': {
3228 'args': [
3229 # TODO(crbug.com/1191784): Enable this test once the issue is fixed.
3230 '--gtest_filter=-DownloadBrowserTest.OverrideDownloadDirectory',
3231 ],
3232 },
Haiyang Panfbd2b482020-09-23 23:41:253233 'android-pie-arm64-rel': {
3234 # TODO(crbug.com/1111436): Move this back to walleye if/when additional
3235 # capacity has been deployed.
3236 'swarming': {
3237 'dimension_sets': [
3238 {
3239 'device_type': 'sailfish',
3240 },
3241 ],
3242 },
3243 },
3244 },
3245 },
Haiyang Pan591dbad2020-06-05 20:26:373246 'weblayer_bundle_test': {
3247 'remove_from': [
Haiyang Pan2486dcb2020-09-18 17:53:063248 'android-marshmallow-x86-rel-non-cq', # crbug.com/1088013
Haiyang Panfed339172021-03-10 23:19:573249 'android-11-x86-fyi-rel', # crbug.com/1165280
Haiyang Pan591dbad2020-06-05 20:26:373250 ],
3251 },
3252 'weblayer_instrumentation_test_apk': {
3253 'remove_from': [
Haiyang Pan2486dcb2020-09-18 17:53:063254 'android-marshmallow-x86-rel-non-cq', # crbug.com/1088013
Haiyang Panfed339172021-03-10 23:19:573255 'android-11-x86-fyi-rel', # crbug.com/1165280
Haiyang Pan591dbad2020-06-05 20:26:373256 ],
Haiyang Pan6d7a15b2020-10-03 00:29:193257 'modifications': {
3258 'android-pie-arm64-rel': {
3259 # TODO(crbug.com/1111436): Move this back to walleye if/when additional
3260 # capacity has been deployed.
3261 'swarming': {
3262 'dimension_sets': [
3263 {
3264 'device_type': 'sailfish',
3265 },
3266 ],
3267 },
3268 },
3269 },
Haiyang Pan591dbad2020-06-05 20:26:373270 },
Rakib M. Hasan48919902021-02-26 23:07:203271 'weblayer_instrumentation_test_apk_ToT_Tests': {
3272 'modifications': {
3273 'android-weblayer-10-x86-rel-tests': {
3274 'args': [
3275 '--replace-system-package=org.chromium.weblayer.shell,apks/WebLayerShellSystemWebView.apk'
3276 ]
3277 },
3278 'android-weblayer-marshmallow-x86-rel-tests': {
3279 'args': [
3280 '--replace-system-package=org.chromium.weblayer.shell,apks/WebLayerShellSystemWebView.apk'
3281 ]
3282 }
3283 }
3284 },
Haiyang Pan4efd9b02021-03-17 23:58:303285 'weblayer_private_instrumentation_test_apk': {
3286 'modifications': {
3287 # TODO(crbug.com/1189403): Remove the filter once the issue is fixed.
3288 'android-11-x86-fyi-rel': {
3289 'args': [
3290 '--gtest_filter=-org.chromium.weblayer.test.MediaCaptureTest.*',
3291 ],
3292 },
3293 },
3294 },
Weizhong Xia7d335882021-01-28 02:49:523295 'weblayer_shell_wpt': {
3296 'modifications': {
3297 # TODO(crbug.com/1171555): remove this when test can run with more emulators
3298 'android-weblayer-pie-x86-wpt-fyi-rel': {
3299 'swarming': {
Weizhong Xia3671c5f2021-01-30 00:22:273300 'dimension_sets': [
3301 {
3302 'machine_type': 'n1-standard-8',
3303 },
3304 ],
Weizhong Xia7d335882021-01-28 02:49:523305 'shards': 18,
3306 },
3307 },
Weizhong Xia0f0c3302021-04-27 00:05:433308 'android-weblayer-pie-x86-wpt-smoketest': {
3309 'args': [
Weizhong Xiaeb234a4b2021-04-28 03:07:533310 '--default-exclude',
Weizhong Xia0f0c3302021-04-27 00:05:433311 '--include-file=../../third_party/blink/web_tests/android/WPTSmokeTestCases'
3312 ],
3313 'swarming': {
3314 'dimension_sets': [
3315 {
3316 'machine_type': 'n1-standard-8',
3317 },
3318 ],
3319 'shards': 3,
3320 },
3321 },
Weizhong Xia7d335882021-01-28 02:49:523322 },
3323 },
Haiyang Panfbd2b482020-09-23 23:41:253324 'webview_cts_tests': {
Haiyang Panfed339172021-03-10 23:19:573325 'remove_from': [
3326 'android-11-x86-fyi-rel', # crbug.com/1165280
Ben Joyce4677e682021-03-22 22:19:113327 'android-pie-arm64-coverage-experimental-rel', # TODO(crbug.com/1190999):
3328 # GLIBC_2.28 Not found.
Haiyang Panfed339172021-03-10 23:19:573329 ],
Haiyang Panfbd2b482020-09-23 23:41:253330 'modifications': {
3331 'android-pie-arm64-rel': {
3332 # TODO(crbug.com/1111436): Move this back to walleye if/when additional
3333 # capacity has been deployed.
3334 'swarming': {
3335 'dimension_sets': [
3336 {
3337 'device_type': 'sailfish',
3338 },
3339 ],
3340 },
3341 },
3342 },
3343 },
Kenneth Russelleb60cbd22017-12-05 07:54:283344 'webview_instrumentation_test_apk': {
3345 'remove_from': [
Hans Wennborgeac4c36c2018-05-23 16:04:063346 # This test frequently fails on Android, https://crbug.com/824959
Haiyang Pana3ff55ae2020-04-23 18:26:543347 'android-lollipop-arm-rel',
Stephen Martinis1384ff92020-01-07 19:52:153348 # matching android builders, the test fails on these.
Hans Wennborga0b11ebe2018-05-15 16:26:503349 'ToTAndroid',
John Budorick27d2d44e2019-05-20 20:26:093350 'android-asan', # https://crbug.com/964562
Ben Joyce02dc8092021-03-04 21:48:193351 'android-code-coverage-native', # Does not generate profraw data.
Ben Joyce46ca6012021-03-31 19:19:253352 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data.
Ben Joyce02dc8092021-03-04 21:48:193353
Dirk Pranke20eae9a72017-12-09 18:12:143354 # On chromium.swarm, this should possibly be being run (or removed
Takuto Ikuta527cdff2020-01-29 08:04:273355 # from android-marshmallow-arm64-rel-swarming).
Haiyang Pan1ad3bb032020-04-24 23:52:033356 'android-lollipop-arm-rel-swarming',
Garrett Beaty47a2d802020-11-10 20:50:533357 # https://crbug.com/1147531 - covered on pie
3358 'android-marshmallow-arm64-rel',
Kenneth Russelleb60cbd22017-12-05 07:54:283359 ],
Ben Pastenee17a8e92018-07-12 21:55:183360 'modifications': {
Andrew Luof08500ae2020-01-10 01:24:453361 # chromium.android.fyi
3362 'Android WebView P FYI (rel)': {
3363 'args': [
3364 '--annotation',
3365 'DisabledTest,FlakyTest' # Monitor status of disabled tests.
3366 ],
3367 },
Ben Pastenee17a8e92018-07-12 21:55:183368 'Oreo Phone Tester': {
Andrew Luo93c4a1e2019-08-30 05:26:303369 # TODO(crbug.com/997362): Enable this once it's passing.
bsheedy01833462018-12-07 01:05:573370 # TODO(https://crbug.com/884413): Re-enable this once the tests are
3371 # either passing or there is more capacity.
3372 'experiment_percentage': 0,
Ben Pastenee17a8e92018-07-12 21:55:183373 },
Haiyang Pan103864812021-03-19 19:28:443374 'android-11-x86-fyi-rel': {
3375 'args': [
3376 # TODO(crbug.com/1189746) Enable this test once the issue is fixed.
3377 '--gtest_filter=-org.chromium.net.NetworkChangeNotifierTest.testNetworkChangeNotifierJavaObservers',
3378 ],
3379 },
Kuan Huang1f402c82021-06-08 17:58:183380 'android-pie-arm64-rel': {
3381 'swarming': {
3382 'shards': 9,
3383 },
3384 },
Haiyang Pan08d09dc2020-04-01 16:11:213385 'android-pie-x86-rel': {
Haiyang Panfdd94332020-03-27 02:43:293386 'args': [
3387 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.webview_instrumentation_test_apk.filter',
3388 ],
3389 },
Ben Pastenee17a8e92018-07-12 21:55:183390 },
Kenneth Russelleb60cbd22017-12-05 07:54:283391 },
Haiyang Panfed339172021-03-10 23:19:573392 'webview_ui_test_app_test_apk': {
3393 'remove_from': [
3394 'android-11-x86-fyi-rel', # crbug.com/1165280
3395 ],
3396 },
bsheedy800f5062018-08-07 00:47:543397 'xr_browser_tests': {
3398 'remove_from': [
Maggie Chen4fc29842018-08-07 19:12:483399 # Fails on the bot, http://crbug.com/868143
3400 'Win7 FYI Release (AMD)',
bsheedy800f5062018-08-07 00:47:543401 ],
3402 },
Kenneth Russelleb60cbd22017-12-05 07:54:283403}