blob: 8a2e16267a674dd116e600f972c354a8aec9b9b2 [file] [log] [blame]
Avi Drissmandfd880852022-09-15 20:11:091# Copyright 2017 The Chromium Authors
Kenneth Russelleb60cbd22017-12-05 07:54:282# 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': {
James Shened31ce5032022-06-22 22:45:3928 'Marshmallow Tablet Tester': {
29 'swarming': {
30 'shards': 2,
31 },
32 },
Haiyang Pan9d68ca02021-08-04 21:30:4733 'android-11-x86-rel': {
Haiyang Pan0ea9b3ef2022-01-21 21:58:1434 'args': [
35 # https://crbug.com/1289764
36 '--gtest_filter=-All/ChromeBrowsingDataLifetimeManagerScheduledRemovalTest.History/*',
37 ],
Haiyang Panca7fcec2021-03-19 02:11:1038 'swarming': {
39 'shards': 2,
40 },
41 },
Haiyang Panc1192662022-03-09 00:09:0242 'android-12-x64-rel': {
43 'args': [
44 # https://crbug.com/1289764
45 '--gtest_filter=-All/ChromeBrowsingDataLifetimeManagerScheduledRemovalTest.History/*',
46 ],
47 'swarming': {
48 'shards': 2,
49 },
50 },
Struan Shrimptone772d72f2021-12-15 07:50:0951 'android-marshmallow-arm64-rel': {
52 'swarming': {
Struan Shrimpton4b7abc02021-12-16 01:36:5953 'quickrun_shards': 3,
Struan Shrimptone772d72f2021-12-15 07:50:0954 },
55 },
James Shen39aa0e32022-03-22 04:44:5056 'android-marshmallow-x86-fyi-rel-reviver': {
57 'swarming': {
58 'shards': 2,
59 'quickrun_shards': 6,
60 },
61 },
Haiyang Panb991f562021-08-10 17:46:4662 'android-marshmallow-x86-rel': {
63 'swarming': {
64 'shards': 2,
Struan Shrimpton4b7abc02021-12-16 01:36:5965 'quickrun_shards': 6,
Haiyang Panb991f562021-08-10 17:46:4666 },
67 },
Haiyang Pancf24ceb2022-03-17 02:31:3068 'android-nougat-x86-rel': {
69 'swarming': {
Haiyang Pandcc3e012022-09-30 01:57:4370 'shards': 3,
Haiyang Pancf24ceb2022-03-17 02:31:3071 },
72 },
Andrew Luo38b311f2019-10-04 03:42:0973 'android-pie-arm64-rel': {
Andrew Luobe83fd82019-12-19 03:07:5874 'args': [
75 '--gtest_filter=-ImportantSitesUtilBrowserTest.DSENotConsideredImportantInRegularMode', # https://crbug.com/1034001
76 ],
Haiyang Panfbd2b482020-09-23 23:41:2577 # TODO(crbug.com/1111436): Move this back to walleye if/when additional
78 # capacity has been deployed.
79 'swarming': {
80 'dimension_sets': [
81 {
82 'device_type': 'sailfish',
83 },
84 ],
James Shenc9d4b2b2022-08-24 06:14:2485 'shards': 3,
Struan Shrimpton4b7abc02021-12-16 01:36:5986 'quickrun_shards': 6,
Haiyang Panfbd2b482020-09-23 23:41:2587 },
Andrew Luo38b311f2019-10-04 03:42:0988 },
James Shenfddea932022-08-18 07:19:5489 'android-pie-x86-fyi-rel-reviver': {
90 'swarming': {
James Shenc9d4b2b2022-08-24 06:14:2491 'shards': 3,
James Shenfddea932022-08-18 07:19:5492 },
93 },
Haiyang Pan08d09dc2020-04-01 16:11:2194 'android-pie-x86-rel': {
John Budorick191adfcd2020-01-29 18:19:0495 'args': [
96 '--gtest_filter=-ImportantSitesUtilBrowserTest.DSENotConsideredImportantInRegularMode', # https://crbug.com/1034001
97 ],
Haiyang Pan7cd609d2021-04-08 20:17:2498 'swarming': {
99 'shards': 2,
Ben Joyce5bb3fad2022-09-23 06:05:18100 'dimension_sets': [
101 {
102 'machine_type': 'e2-standard-8', # crbug/1292221
103 },
104 ],
Haiyang Pan7cd609d2021-04-08 20:17:24105 },
John Budorick191adfcd2020-01-29 18:19:04106 },
Andrew Luo38b311f2019-10-04 03:42:09107 },
108 },
Sven Zhengc60debc2020-09-10 18:40:52109 'android_sync_integration_tests': {
110 'remove_from': [
Haiyang Pan6b8e4cf2021-08-02 21:38:28111 # Remove from CQ bots due to capacity.
112 'android-marshmallow-arm64-rel',
Sven Zhengc60debc2020-09-10 18:40:52113 ],
James Shen9e4c19e2022-04-15 17:57:50114 'modifications': {
115 'android-12-x64-rel': {
116 'swarming': {
117 'shards': 3,
118 },
119 },
120 'android-marshmallow-x86-rel': {
121 'swarming': {
122 'shards': 3,
123 },
124 },
125 },
Sven Zhengc60debc2020-09-10 18:40:52126 },
Kenneth Russelleb60cbd22017-12-05 07:54:28127 'android_webview_unittests': {
Kenneth Russelleb60cbd22017-12-05 07:54:28128 },
Jamie Madillc9ae75d2020-10-23 19:19:48129 'angle_unittests': {
130 'remove_from': [
131 # On Android, these are already run on the main waterfall.
132 'Android FYI Release (Nexus 5X)',
Yuly Novikovc1117ae82021-01-15 22:33:36133 # Times out listing tests crbug.com/1167314
134 'android-asan',
Jamie Madillc9ae75d2020-10-23 19:19:48135 # Does not currently work on Lacros configurations.
Sven Zheng93bfaa92022-06-09 17:06:03136 'linux-lacros-asan-lsan-rel',
Junhua Chen39dd2dba2021-05-05 17:51:54137 'linux-lacros-code-coverage',
Jamie Madillc9ae75d2020-10-23 19:19:48138 'linux-lacros-tester-rel',
139 'linux-lacros-tester-fyi-rel',
Yuke Liaof27ebe52021-08-05 22:12:40140 'linux-lacros-dbg-tests-fyi',
Jamie Madillc9ae75d2020-10-23 19:19:48141 ],
Chong Gua10cd302022-01-14 19:22:19142 'modifications': {
143 # anglebug.com/6894
144 'fuchsia-fyi-x64-asan': {
145 'args': [
146 # crbug.com/
147 '--gtest_filter=-ConstructCompilerTest.DefaultParameters',
148 ],
149 },
150 },
Jamie Madillc9ae75d2020-10-23 19:19:48151 },
Sven Zhengef0d0872022-04-04 22:13:29152 'aura_unittests amd64-generic': {
Yuke Liaob6beaeca2021-04-29 23:41:51153 'remove_from': [
154 # TODO(crbug.com/1204231): Re-enable.
155 'lacros-amd64-generic-rel',
156 ]
157 },
Sven Zhengef0d0872022-04-04 22:13:29158 'aura_unittests eve': {
Yuke Liao79a8cf52021-06-11 18:14:34159 'remove_from': [
160 # TODO(crbug.com/1204231): Re-enable.
161 'lacros-amd64-generic-rel',
162 ]
163 },
Chong Gudf7fbe92021-02-24 02:55:58164 'base_unittests': {
165 'modifications': {
Haiyang Pan9d68ca02021-08-04 21:30:47166 'android-11-x86-rel': {
Haiyang Panc7c009e2021-03-18 19:31:23167 'args': [
Haiyang Panc08d02212021-10-18 18:58:38168 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.base_unittests.filter',
169 ],
170 },
Haiyang Pan2a55a452022-03-03 08:18:33171 'android-12-x64-rel': {
Haiyang Panc08d02212021-10-18 18:58:38172 'args': [
173 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.base_unittests.filter',
174 '--gtest_filter=-ModuleCacheTest.CheckAgainstProcMaps', # crbug.com/1260521
Haiyang Panc7c009e2021-03-18 19:31:23175 ],
176 },
Chong Gudf7fbe92021-02-24 02:55:58177 'fuchsia-code-coverage': {
178 'swarming': {
179 'shards': 5,
180 },
181 },
Chong Gua10cd302022-01-14 19:22:19182 'fuchsia-fyi-x64-asan': {
183 'args': [
184 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.lsan.base_unittests.filter',
185 ],
186 },
Chong Gudf7fbe92021-02-24 02:55:58187 },
188 },
Haiyang Pan363c59a2020-07-23 05:47:04189 'blink_platform_unittests': {
190 'modifications': {
James Shen088356672022-06-28 01:21:14191 # TODO(crbug.com/1303439): Remove this filter
192 'android-nougat-x86-rel': {
193 'args': [
194 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_n.blink_platform_unittests.filter',
195 ],
196 },
Haiyang Panfbd2b482020-09-23 23:41:25197 'android-pie-arm64-rel': {
198 # TODO(crbug.com/1111436): Move this back to walleye if/when additional
199 # capacity has been deployed.
200 'swarming': {
201 'dimension_sets': [
202 {
203 'device_type': 'sailfish',
204 },
205 ],
206 },
207 },
Chong Gu52481452021-04-02 17:52:41208 'fuchsia-code-coverage': {
209 'swarming': {
210 'shards': 5,
211 },
212 },
Haiyang Pan363c59a2020-07-23 05:47:04213 },
214 },
Brian Sheedy944d0622022-07-27 20:42:42215 'blink_pytype': {
216 'remove_from': [
217 'linux-code-coverage',
218 ],
219 },
Chong Gu76046412021-09-22 17:49:21220 'blink_unittests': {
Chong Guc2d145e2021-03-31 19:55:34221 'modifications': {
222 'fuchsia-code-coverage': {
223 'swarming': {
224 'shards': 30,
225 },
226 },
227 },
228 },
John Chenaab16fc02020-03-03 06:35:45229 'blink_web_tests': {
230 'remove_from': [
231 'Win 7 Tests x64 (1)', # 64-bit win is unsupported by the layout tests.
Weizhong Xia501ccac2022-06-09 00:46:27232 'Win7 Tests (1)',
John Chenaab16fc02020-03-03 06:35:45233 'Win10 Tests x64 (dbg)',
234 ],
235 'modifications': {
236 'Fuchsia x64': {
237 'args': [
238 '--platform=fuchsia',
Weizhong Xia3fdef5ca2022-01-04 21:50:20239 '--jobs=1',
John Chenaab16fc02020-03-03 06:35:45240 ],
241 'swarming': {
242 'shards': 1,
243 },
244 },
245 'Linux Tests': {
246 "args": [
247 "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw",
248 ],
Struan Shrimpton57c594e42022-01-25 17:59:13249 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51250 'quickrun_shards': 7,
251 'shards': 8,
Struan Shrimpton57c594e42022-01-25 17:59:13252 },
John Chenaab16fc02020-03-03 06:35:45253 },
254 'Linux Tests (dbg)(1)': {
255 'args': [
256 '--debug',
257 ],
258 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51259 'shards': 12,
John Chenaab16fc02020-03-03 06:35:45260 },
261 },
John Chenaab16fc02020-03-03 06:35:45262 'Mac10.13 Tests': {
263 'swarming': {
264 'dimension_sets': [
265 {
Erik Staab59591f32020-08-25 23:07:07266 'gpu': None,
John Chenaab16fc02020-03-03 06:35:45267 },
268 ],
Weizhong Xia8b786422022-06-23 14:46:51269 'shards': 10,
John Chenaab16fc02020-03-03 06:35:45270 },
271 },
Zhaoyang Li69e2e002021-02-19 21:57:35272 'Mac10.15 Tests': {
273 'swarming': {
274 'dimension_sets': [
275 {
276 'gpu': None,
277 },
278 ],
Weizhong Xia8b786422022-06-23 14:46:51279 'shards': 10,
Zhaoyang Li69e2e002021-02-19 21:57:35280 },
281 },
Lindsay Pasricha8d9a0c32021-12-08 17:08:29282 'Mac11 Tests': {
283 'swarming': {
284 'dimension_sets': [
285 {
286 'gpu': None,
287 },
288 ],
Weizhong Xia8b786422022-06-23 14:46:51289 'shards': 12,
290 'quickrun_shards': 10,
Lindsay Pasricha8d9a0c32021-12-08 17:08:29291 },
292 },
Yue She0cad2922022-06-24 15:06:07293 'Mac12 Tests': {
294 'swarming': {
295 'dimension_sets': [
296 {
297 'gpu': None,
298 },
299 ],
Lindsay Pasrichadf6edb62022-07-06 22:08:35300 'shards': 12,
301 'quickrun_shards': 10,
Yue She0cad2922022-06-24 15:06:07302 },
303 },
Cameron Higgins7558b162022-06-10 18:53:07304 'Mac12 Tests (dbg)': {
Zhaoyang Li9357e1e12021-12-07 18:53:17305 'experiment_percentage': 100,
306 'args': [
307 '--debug',
308 ],
309 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51310 'shards': 16,
Zhaoyang Li9357e1e12021-12-07 18:53:17311 },
312 },
Chong Gu75af969a2021-03-22 14:46:14313 'ToTFuchsia x64': {
314 'args': [
315 '--platform=fuchsia',
316 ],
317 'swarming': {
318 'shards': 1,
319 },
320 },
John Chenaab16fc02020-03-03 06:35:45321 'V8 Blink Linux Debug': {
Michael Achenbach455d39242020-06-22 13:33:45322 # This builder compiles Chromium in release mode, but V8 in debug.
323 # TODO(machenbach): Change name and out directory of this builder to
324 # something less confusing.
John Chenaab16fc02020-03-03 06:35:45325 'args': [
Michael Achenbach455d39242020-06-22 13:33:45326 '-t',
327 'Debug',
328 '--release',
John Chenaab16fc02020-03-03 06:35:45329 ],
330 },
331 'V8 Blink Linux Future': {
332 'args': [
Brian Sheedy10ddf0a2021-08-16 23:19:07333 '--flag-specific=future-js',
John Chenaab16fc02020-03-03 06:35:45334 ],
335 },
336 'WebKit Linux ASAN': {
337 'args': [
338 '--additional-expectations',
339 '../../third_party/blink/web_tests/ASANExpectations',
Weizhong Xia91b53362022-01-05 17:13:35340 '--timeout-ms',
John Chenaab16fc02020-03-03 06:35:45341 '48000',
342 '--enable-sanitizer',
343 ],
344 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51345 'shards': 8,
John Chenaab16fc02020-03-03 06:35:45346 },
347 },
348 'WebKit Linux Leak': {
349 'args': [
350 '--additional-expectations',
351 '../../third_party/blink/web_tests/LeakExpectations',
Weizhong Xia91b53362022-01-05 17:13:35352 '--timeout-ms',
John Chenaab16fc02020-03-03 06:35:45353 '48000',
354 '--enable-leak-detection',
355 ],
356 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51357 'shards': 4,
John Chenaab16fc02020-03-03 06:35:45358 },
359 },
360 'WebKit Linux MSAN': {
361 'args': [
362 '--additional-expectations',
363 '../../third_party/blink/web_tests/MSANExpectations',
Weizhong Xia91b53362022-01-05 17:13:35364 '--timeout-ms',
John Chenaab16fc02020-03-03 06:35:45365 '66000',
366 '--enable-sanitizer',
367 ],
368 'swarming': {
369 'expiration': 36000,
370 'hard_timeout': 10800,
371 'io_timeout': 3600,
Weizhong Xia8b786422022-06-23 14:46:51372 'shards': 8,
John Chenaab16fc02020-03-03 06:35:45373 },
374 },
Weizhong Xia28bff2782022-08-24 23:07:33375 'WebKit Win10': {
376 'args': [
377 '--exit-after-n-crashes-or-timeouts',
378 '150',
379 ],
380 },
John Chenaab16fc02020-03-03 06:35:45381 'Win10 Tests x64': {
382 'args': [
383 '--target',
Takuto Ikutab28b582e2021-02-10 01:41:21384 'Release_x64',
John Chenaab16fc02020-03-03 06:35:45385 ],
386 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51387 "shards": 12
John Chenaab16fc02020-03-03 06:35:45388 },
389 },
390 'Win10 Tests x64 (dbg)': {
391 'args': [
392 '--debug',
393 '--target',
Takuto Ikutab28b582e2021-02-10 01:41:21394 'Debug_x64',
John Chenaab16fc02020-03-03 06:35:45395 ],
396 },
Kuan Huanga89737d2022-01-07 19:42:11397 'Win11 Tests x64': {
398 'args': [
399 '--target',
400 'Release_x64',
401 ],
402 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51403 "shards": 12
Kuan Huanga89737d2022-01-07 19:42:11404 },
405 },
John Chenaab16fc02020-03-03 06:35:45406 # tryserver.chromium.android
407 'android_blink_rel': {
408 'args': [
409 '--release',
410 '--android',
John Chenaab16fc02020-03-03 06:35:45411 # TODO(crbug.com/875172): run on the real GPU since the
412 # software fallback, SwiftShader, isn't yet for 32-bit ARM.
413 '--additional-driver-flag=--use-gpu-in-tests',
414 ],
415 },
416 'devtools_frontend_linux_blink_light_rel': {
417 'args': [
418 'http/tests/devtools',
419 ],
420 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51421 'shards': 2,
John Chenaab16fc02020-03-03 06:35:45422 },
423 },
Takuto Ikutabace8f82022-01-26 23:47:47424 'devtools_frontend_linux_blink_light_rel_fastbuild': {
425 'args': [
426 'http/tests/devtools',
427 ],
428 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51429 'shards': 2,
Takuto Ikutabace8f82022-01-26 23:47:47430 },
431 },
John Chenaab16fc02020-03-03 06:35:45432 'fuchsia-fyi-x64-rel': {
433 'args': [
434 '--platform=fuchsia',
435 ],
436 'swarming': {
437 'shards': 1,
438 },
439 },
David Dorwin49b2ddb2022-09-08 20:49:43440 'fuchsia-x64-cast-receiver-rel': {
441 'args': [
442 '--platform=fuchsia',
443 '--jobs=1',
444 ],
445 'swarming': {
446 'shards': 1,
447 },
448 },
449 'fuchsia-x64-rel': {
450 'args': [
451 '--platform=fuchsia',
452 '--jobs=1',
453 ],
454 'swarming': {
455 'shards': 1,
456 },
457 },
Mathias Carlen30968a62020-03-31 08:47:04458 'linux-autofill-assistant': {
459 'args': [
460 '--release',
461 ],
462 },
John Chenaab16fc02020-03-03 06:35:45463 'linux-blink-animation-use-time-delta': {
464 'args': [
465 '--debug',
466 ],
467 },
Daniel Libby178c9832020-10-08 20:36:14468 'linux-blink-web-tests-force-accessibility-rel': {
469 'args': [
Brian Sheedy10ddf0a2021-08-16 23:19:07470 '--flag-specific=force-renderer-accessibility',
Daniel Libby178c9832020-10-08 20:36:14471 ],
472 },
John Chenaab16fc02020-03-03 06:35:45473 'linux-code-coverage': {
474 'args': [
475 '--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw',
476 ],
477 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51478 'shards': 8,
John Chenaab16fc02020-03-03 06:35:45479 },
480 },
Aaron Gable40f79aa2020-03-21 01:21:15481 'linux-layout-tests-edit-ng': {
482 'args': [
Brian Sheedy10ddf0a2021-08-16 23:19:07483 '--flag-specific=enable-editing-ng',
Aaron Gable40f79aa2020-03-21 01:21:15484 ],
485 },
Garrett Beaty731523e92022-05-03 17:16:55486 'linux_layout_tests_layout_ng_disabled': {
487 'args': [
488 '--flag-specific=disable-layout-ng',
489 ],
490 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51491 'shards': 8,
Garrett Beaty731523e92022-05-03 17:16:55492 },
493 },
Riley Wong89d6dc72022-09-08 20:29:07494 'mac10.13-blink-rel': {
495 'swarming': {
496 'shards': 1,
497 },
498 },
Riley Wong89d6dc72022-09-08 20:29:07499 'mac10.14-blink-rel': {
500 'swarming': {
501 'shards': 1,
502 },
503 },
Riley Wong89d6dc72022-09-08 20:29:07504 'mac10.15-blink-rel': {
505 'swarming': {
506 'shards': 8,
507 },
508 },
Riley Wongc20ba4a2022-09-12 17:06:31509 'mac11.0-blink-rel': {
510 'swarming': {
511 'shards': 5,
512 'hard_timeout': 1800,
513 },
514 },
Ben Pasteneebad8fc2022-08-12 23:34:28515 'win10-rel-no-external-ip': {
516 'args': [
517 '--target',
518 'Release_x64',
519 ],
520 'swarming': {
521 "shards": 12
522 },
523 },
Riley Wong5feb0eb2022-08-05 15:49:26524 'win10.20h2-blink-rel': {
525 'swarming': {
526 'shards': 6,
527 'hard_timeout': 1200,
528 },
529 },
Weizhong Xia8b786422022-06-23 14:46:51530 'win11-blink-rel': {
531 'swarming': {
532 'hard_timeout': 1200,
533 },
534 'args': [
535 '--target',
536 'Release_x64',
537 ],
538 },
539 },
540 },
541 'blink_wpt_tests': {
542 'remove_from': [
543 'Win 7 Tests x64 (1)', # 64-bit win is unsupported by the layout tests.
544 'Win7 Tests (1)',
545 'Win10 Tests x64 (dbg)',
Weizhong Xia6d85a442022-06-23 17:17:06546 'devtools_frontend_linux_blink_light_rel',
547 'devtools_frontend_linux_blink_light_rel_fastbuild',
Weizhong Xia8b786422022-06-23 14:46:51548 ],
549 'modifications': {
550 'Fuchsia x64': {
551 'args': [
552 '--platform=fuchsia',
553 '--jobs=1',
554 ],
555 'swarming': {
556 'shards': 1,
557 },
558 },
559 'Linux Tests': {
560 "args": [
561 "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw",
562 ],
563 'swarming': {
564 'quickrun_shards': 11,
565 'shards': 10,
566 },
567 },
568 'Linux Tests (dbg)(1)': {
569 'args': [
570 '--debug',
571 ],
572 'swarming': {
573 'shards': 18,
574 },
575 },
576 'Mac10.13 Tests': {
577 'swarming': {
578 'dimension_sets': [
579 {
580 'gpu': None,
581 },
582 ],
583 'shards': 15,
584 },
585 },
586 'Mac10.15 Tests': {
587 'swarming': {
588 'dimension_sets': [
589 {
590 'gpu': None,
591 },
592 ],
593 'shards': 15,
594 },
595 },
596 'Mac11 Tests': {
597 'swarming': {
598 'dimension_sets': [
599 {
600 'gpu': None,
601 },
602 ],
603 'shards': 18,
604 'quickrun_shards': 16,
605 },
606 },
Lindsay Pasrichadf6edb62022-07-06 22:08:35607 'Mac12 Tests': {
608 'swarming': {
609 'dimension_sets': [
610 {
611 'gpu': None,
612 },
613 ],
614 'shards': 18,
615 'quickrun_shards': 16,
616 },
617 },
Weizhong Xia8b786422022-06-23 14:46:51618 'Mac12 Tests (dbg)': {
619 'experiment_percentage': 100,
620 'args': [
621 '--debug',
622 ],
623 'swarming': {
624 'shards': 24,
625 },
626 },
627 'ToTFuchsia x64': {
628 'args': [
629 '--platform=fuchsia',
630 ],
631 'swarming': {
632 'shards': 1,
633 },
634 },
635 'V8 Blink Linux Debug': {
636 # This builder compiles Chromium in release mode, but V8 in debug.
637 # TODO(machenbach): Change name and out directory of this builder to
638 # something less confusing.
639 'args': [
640 '-t',
641 'Debug',
642 '--release',
643 ],
644 },
645 'V8 Blink Linux Future': {
646 'args': [
647 '--flag-specific=future-js',
648 ],
649 },
650 'WebKit Linux ASAN': {
651 'args': [
652 '--additional-expectations',
653 '../../third_party/blink/web_tests/ASANExpectations',
654 '--timeout-ms',
655 '48000',
656 '--enable-sanitizer',
657 ],
658 'swarming': {
659 'shards': 12,
660 },
661 },
662 'WebKit Linux Leak': {
663 'args': [
664 '--additional-expectations',
665 '../../third_party/blink/web_tests/LeakExpectations',
666 '--timeout-ms',
667 '48000',
668 '--enable-leak-detection',
669 ],
670 'swarming': {
671 'shards': 6,
672 },
673 },
674 'WebKit Linux MSAN': {
675 'args': [
676 '--additional-expectations',
677 '../../third_party/blink/web_tests/MSANExpectations',
678 '--timeout-ms',
679 '66000',
680 '--enable-sanitizer',
681 ],
682 'swarming': {
683 'expiration': 36000,
684 'hard_timeout': 10800,
685 'io_timeout': 3600,
686 'shards': 12,
687 },
688 },
689 'Win10 Tests x64': {
690 'args': [
691 '--target',
692 'Release_x64',
693 ],
694 'swarming': {
695 "shards": 18
696 },
697 },
698 'Win10 Tests x64 (dbg)': {
699 'args': [
700 '--debug',
701 '--target',
702 'Debug_x64',
703 ],
704 },
705 'Win11 Tests x64': {
706 'args': [
707 '--target',
708 'Release_x64',
709 ],
710 'swarming': {
711 "shards": 18
712 },
713 },
714 # tryserver.chromium.android
715 'android_blink_rel': {
716 'args': [
717 '--release',
718 '--android',
Weizhong Xia8b786422022-06-23 14:46:51719 # TODO(crbug.com/875172): run on the real GPU since the
720 # software fallback, SwiftShader, isn't yet for 32-bit ARM.
721 '--additional-driver-flag=--use-gpu-in-tests',
722 ],
723 },
Weizhong Xia8b786422022-06-23 14:46:51724 'fuchsia-fyi-x64-rel': {
725 'args': [
726 '--platform=fuchsia',
727 ],
728 'swarming': {
729 'shards': 1,
730 },
731 },
David Dorwin49b2ddb2022-09-08 20:49:43732 'fuchsia-x64-cast-receiver-rel': {
733 'args': [
734 '--platform=fuchsia',
735 '--jobs=1',
736 ],
737 'swarming': {
738 'shards': 1,
739 },
740 },
741 'fuchsia-x64-rel': {
742 'args': [
743 '--platform=fuchsia',
744 '--jobs=1',
745 ],
746 'swarming': {
747 'shards': 1,
748 },
749 },
Weizhong Xia8b786422022-06-23 14:46:51750 'linux-autofill-assistant': {
751 'args': [
752 '--release',
753 ],
754 },
755 'linux-bfcache-rel': {
756 'args': [
Weizhong Xia8b786422022-06-23 14:46:51757 # TODO(crbug.com/1255537): Re-enable the test.
758 '--ignore-tests=external/wpt/html/browsers/browsing-the-web/back-forward-cache/events.html',
759 ],
760 },
761 'linux-blink-animation-use-time-delta': {
762 'args': [
763 '--debug',
764 ],
765 },
766 'linux-blink-web-tests-force-accessibility-rel': {
767 'args': [
768 '--flag-specific=force-renderer-accessibility',
769 ],
770 },
771 'linux-code-coverage': {
772 'args': [
773 '--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw',
774 ],
775 'swarming': {
776 'shards': 12,
777 },
778 },
779 'linux-layout-tests-edit-ng': {
780 'args': [
781 '--flag-specific=enable-editing-ng',
782 ],
783 },
784 'linux_layout_tests_layout_ng_disabled': {
785 'args': [
786 '--flag-specific=disable-layout-ng',
787 ],
788 'swarming': {
789 'shards': 12,
790 },
791 },
Riley Wong89d6dc72022-09-08 20:29:07792 'mac10.13-blink-rel': {
793 'swarming': {
794 'shards': 1,
795 },
796 },
Riley Wong89d6dc72022-09-08 20:29:07797 'mac10.14-blink-rel': {
798 'swarming': {
799 'shards': 1,
800 },
801 },
Riley Wong89d6dc72022-09-08 20:29:07802 'mac10.15-blink-rel': {
803 'swarming': {
804 'shards': 12,
805 },
806 },
Riley Wongc20ba4a2022-09-12 17:06:31807 'mac11.0-blink-rel': {
808 'swarming': {
809 'shards': 7,
810 'hard_timeout': 1800,
811 },
812 },
Ben Pasteneebad8fc2022-08-12 23:34:28813 'win10-rel-no-external-ip': {
814 'args': [
815 '--target',
816 'Release_x64',
817 ],
818 'swarming': {
819 "shards": 18
820 },
821 },
Riley Wong5feb0eb2022-08-05 15:49:26822 'win10.20h2-blink-rel': {
823 'swarming': {
824 'shards': 9,
825 'hard_timeout': 1200,
826 },
827 },
Riley Wong5fc22762022-06-15 20:25:07828 'win11-blink-rel': {
829 'swarming': {
830 'hard_timeout': 1200,
831 },
832 'args': [
833 '--target',
834 'Release_x64',
835 ],
Riley Wong70908512022-06-17 20:35:32836 }
John Chenaab16fc02020-03-03 06:35:45837 },
838 },
Kenneth Russelleb60cbd22017-12-05 07:54:28839 'browser_tests': {
Kenneth Russellfbda3c532017-12-08 23:57:24840 'remove_from': [
Brad Halla36886c2019-02-26 16:52:29841 'CrWinAsan(dll)', # https://crbug.com/935598
Nico Weber3af4da72018-02-27 01:59:41842 'linux-win_cross-rel',
Nico Weberdae13cd92018-12-14 13:56:26843 'ToTLinuxTSan', # https://crbug.com/368525
Lindsay Pasrichab3f72db2021-09-22 22:05:46844 # TODO(crbug.com/1171053): Enable the suite in 'Mac10.15 Tests' once it's
Zhaoyang Li69e2e002021-02-19 21:57:35845 # off CQ.
Gary Tongd5f5a742021-01-29 00:01:13846 'Mac10.13 Tests', # https://crbug.com/1042757
Zhaoyang Li69e2e002021-02-19 21:57:35847 'Mac10.15 Tests', # https://crbug.com/1042757
Cameron Higgins7558b162022-06-10 18:53:07848 'Mac12 Tests (dbg)', # https://crbug.com/1201386
Lindsay Pasricha8155d052021-04-22 00:06:43849 'mac-code-coverage', # https://crbug.com/1201386
Nico Weberd36959682018-04-12 03:33:46850 'Linux TSan Tests', # https://crbug.com/368525
Stephen Martinise701f5a2018-05-04 01:25:11851 'Win10 Tests x64 (dbg)',
Kenneth Russellfbda3c532017-12-08 23:57:24852 ],
Kenneth Russelleb60cbd22017-12-05 07:54:28853 'modifications': {
Nico Weber3f919792020-06-12 23:34:52854 'CrWinAsan': {
855 # These are very slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:44856 # crbug.com/1257927
Nico Weber3f919792020-06-12 23:34:52857 'swarming': {
858 'shards': 40,
859 },
860 },
861 'CrWinAsan(dll)': {
862 # These are very slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:44863 # crbug.com/1257927
Nico Weber3f919792020-06-12 23:34:52864 'swarming': {
865 'shards': 40,
866 },
867 },
Stephen Martinis1384ff92020-01-07 19:52:15868 'Linux - Future (dbg)': { # client.v8.chromium
Yuke Liaoea70f472019-12-19 06:03:36869 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:15870 'shards': 10,
Yuke Liaoea70f472019-12-19 06:03:36871 },
872 },
Erik Staabd468a802022-06-28 23:38:03873 'Linux ASan LSan Low Symbols FYI Tests (1)': {
874 # These are very slow on the ASAN trybot for some reason.
875 # crbug.com/1257927
876 'swarming': {
877 'shards': 40,
878 'quickrun_shards': 80
879 },
880 },
Stephen Martinis1384ff92020-01-07 19:52:15881 'Linux ASan LSan Tests (1)': {
Gregory Gutermanb6f9a972022-09-27 20:17:58882 'ci_only': True,
Stephen Martinis1384ff92020-01-07 19:52:15883 # These are very slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:44884 # crbug.com/1257927
Roberto Carrillo2c9ec972019-03-20 03:11:19885 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:15886 'shards': 40,
Struan Shrimptone772d72f2021-12-15 07:50:09887 'quickrun_shards': 80
Roberto Carrillo2c9ec972019-03-20 03:11:19888 },
889 },
Chris Cunningham1d0e9e12020-02-26 22:56:40890 'Linux ASan Tests (sandboxed)': {
891 'swarming': {
John Abd-El-Malek3a631612020-07-08 21:40:41892 'shards': 30, # https://crbug.com/1103330
Chris Cunningham1d0e9e12020-02-26 22:56:40893 },
894 },
Titouan Rigoudy3fbe2742022-09-09 17:10:14895 'Linux CFI': {
896 'swarming': {
897 'shards': 20, # https://crbug.com/1361973
898 },
899 },
Stephen Martinis1384ff92020-01-07 19:52:15900 'Linux Chromium OS ASan LSan Tests (1)': {
901 # These are very slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:44902 # crbug.com/1257927
Roberto Carrillo5a5c98dc2019-10-30 22:33:51903 'swarming': {
Chris Cunningham74217f32022-05-02 18:47:23904 'shards': 60,
Roberto Carrillo5a5c98dc2019-10-30 22:33:51905 },
906 },
Ben Pastene7636bb62022-04-22 18:55:25907 'Linux ChromiumOS MSan Focal': {
908 # These are very slow on the Chrome OS MSAN trybot for some reason.
909 # crbug.com/865455
910 'swarming': {
911 'shards': 40,
912 },
913 'args': [
914 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.msan.browser_tests.oobe_negative.filter',
915 ],
916 },
Stephen Martinis1384ff92020-01-07 19:52:15917 'Linux ChromiumOS MSan Tests': {
Alexis Hetua804f7412022-05-13 17:04:20918 # These are very slow on the Chrome OS MSAN trybot, most likely because browser_tests on cros has ~40% more tests. Also, these tests
919 # run on ash, which means every test starts and shuts down ash, which most likely explains why it takes longer than on other platforms.
Stephen Martinis1384ff92020-01-07 19:52:15920 # crbug.com/865455
Kenneth Russell56a3e862017-12-08 03:11:34921 'swarming': {
Alexis Hetud62dbf32022-05-17 19:48:38922 'shards': 48,
Kenneth Russell56a3e862017-12-08 03:11:34923 },
Ben Pastene44221d32020-05-21 23:38:36924 'args': [
925 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.msan.browser_tests.oobe_negative.filter',
926 ],
Kenneth Russell56a3e862017-12-08 03:11:34927 },
Struan Shrimptona9b1d512022-09-13 16:09:42928 'Linux MSan Tests': {
929 'swarming': {
930 'shards': 12,
931 },
932 },
Struan Shrimptonf5b2b552022-01-20 20:37:39933 'Linux Tests': {
934 'swarming': {
935 'quickrun_shards': 15,
936 },
937 },
Maksim Sisovc81d284c2021-10-05 17:54:35938 # https://crbug.com/1084469
939 'Linux Tests (Wayland)': {
940 'args': [
941 '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.wayland_browser_tests.filter',
942 ],
Struan Shrimptone772d72f2021-12-15 07:50:09943 'swarming': {
944 'quickrun_shards': 24,
945 },
Maksim Sisovc81d284c2021-10-05 17:54:35946 },
John Budorick614f91a2020-03-30 20:34:55947 'Linux Tests (dbg)(1)': {
948 # crbug.com/1066161
949 'swarming': {
950 'shards': 20,
951 },
952 },
Stephen Martinis1384ff92020-01-07 19:52:15953 'Mac ASan 64 Tests (1)': {
Kenneth Russellfbda3c532017-12-08 23:57:24954 'swarming': {
Stephen Martiniscd3c3832020-11-19 22:01:24955 'shards': 30,
Kenneth Russellfbda3c532017-12-08 23:57:24956 },
Lindsay Pasricha8155d052021-04-22 00:06:43957 # crbug.com/1196416
958 'args': [
959 '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac-rel.browser_tests.filter',
960 ],
Lindsay Pasrichab3f72db2021-09-22 22:05:46961 'experiment_percentage': 100, # https://crbug.com/1251657
Kenneth Russellfbda3c532017-12-08 23:57:24962 },
Lindsay Pasricha76f44d22021-04-07 16:16:26963 'Mac10.15 Tests': {
964 # crbug.com/1042757
965 'swarming': {
966 'dimension_sets': [
967 {
968 # These shards are liable to time out when running on macmini7,1.
969 'cores': '8|12',
970 }
971 ],
972 },
973 # crbug.com/1196416
974 'args': [
975 '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac-rel.browser_tests.filter',
976 ],
977 },
Lindsay Pasrichaf8762592021-12-02 23:43:09978 'Mac11 Tests': {
979 'ci_only': True,
980 },
Yue She0cad2922022-06-24 15:06:07981 'Mac12 Tests': {
982 'ci_only': True,
Titouan Rigoudycd0e6dd72022-09-09 13:18:20983 'swarming': {
984 'shards': 20, # crbug.com/1361887
985 },
Yue She0cad2922022-06-24 15:06:07986 },
Cameron Higgins7558b162022-06-10 18:53:07987 'Mac12 Tests (dbg)': {
Zhaoyang Li9357e1e12021-12-07 18:53:17988 # crbug.com/1042757
989 'swarming': {
990 'dimension_sets': [
991 {
992 # These shards are liable to time out when running on macmini7,1.
993 'cores': '8|12',
994 }
995 ],
996 },
997 # crbug.com/1196416
998 'args': [
999 '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac-rel.browser_tests.filter',
1000 ],
1001 },
Stephen Martinis1384ff92020-01-07 19:52:151002 'ToTWin(dbg)': {
Kenneth Russelleb60cbd22017-12-05 07:54:281003 'swarming': {
John Budorickca14c76f62017-12-09 14:19:181004 'shards': 20,
Kenneth Russelleb60cbd22017-12-05 07:54:281005 },
1006 },
Stephen Martinis1384ff92020-01-07 19:52:151007 'ToTWin64(dbg)': {
Kenneth Russell8ceeabf2017-12-11 17:53:281008 'swarming': {
1009 'shards': 20,
1010 },
1011 },
Kenneth Russell6c83d212018-07-27 20:52:591012 'Win10 Tests x64': {
1013 # crbug.com/868082
1014 'args': [
1015 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
1016 ],
Takuto Ikutac9c269a2019-01-10 22:40:251017 'swarming': {
1018 # This is for slow test execution that often becomes a critical path of
1019 # swarming jobs. crbug.com/868114
1020 'shards': 15,
Struan Shrimptona1ab7672022-01-13 18:02:511021 'quickrun_shards': 40,
Takuto Ikutac9c269a2019-01-10 22:40:251022 }
Kenneth Russell6c83d212018-07-27 20:52:591023 },
Kuan Huanga89737d2022-01-07 19:42:111024 'Win11 Tests x64': {
1025 # crbug.com/868082
1026 'args': [
1027 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
1028 ],
1029 'swarming': {
1030 # This is for slow test execution that often becomes a critical path of
1031 # swarming jobs. crbug.com/868114
1032 'shards': 15,
1033 'quickrun_shards': 30,
1034 }
1035 },
Stephen Martinis1384ff92020-01-07 19:52:151036 'Win7 Tests (1)': {
1037 # This is for slow test execution that often becomes a critical path of
1038 # swarming jobs. crbug.com/868114
1039 'swarming': {
1040 'shards': 15,
1041 },
1042 },
Stephen Martinis1384ff92020-01-07 19:52:151043 'linux-chromeos-chrome': {
1044 # TODO(https://crbug.com/932269): Promote out of experiment when the
1045 # tests are green.
1046 'args': [
1047 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.browser_tests.filter',
1048 ],
Ben Pastene37473092022-08-02 19:16:461049 'swarming': {
1050 'shards': 20,
1051 },
Stephen Martinis1384ff92020-01-07 19:52:151052 },
1053 'linux-chromeos-code-coverage': {
Nico Weber0c2861b2018-12-14 18:05:161054 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:151055 'shards': 50,
1056 },
1057 },
1058 'linux-chromeos-dbg': {
1059 'swarming': {
Chris Cunningham88e70de2022-05-02 23:39:161060 'shards': 50,
Stephen Martinis1384ff92020-01-07 19:52:151061 },
1062 },
1063 'linux-chromeos-rel': {
1064 'swarming': {
1065 'shards': 20,
Struan Shrimptone772d72f2021-12-15 07:50:091066 'quickrun_shards': 40,
Stephanie Kime9008f72020-03-05 23:01:161067 'dimension_sets': [
1068 {
1069 'kvm': '1',
1070 },
1071 ],
Stephen Martinis1384ff92020-01-07 19:52:151072 },
1073 },
1074 'linux-code-coverage': {
Yuke Liao58e1d202020-03-20 23:02:011075 'args': [
1076 '--no-sandbox',
1077 ],
Stephen Martinis1384ff92020-01-07 19:52:151078 'swarming': {
1079 'shards': 50,
1080 },
1081 },
Sven Zheng49ffa5c2022-09-06 18:48:261082 # asan tests is slower.
1083 'linux-lacros-asan-lsan-rel': {
1084 'swarming': {
1085 'shards': 20,
1086 },
1087 },
Sven Zheng80734f12020-08-06 06:50:391088 'linux-lacros-tester-rel': {
Struan Shrimptone772d72f2021-12-15 07:50:091089 'swarming': {
1090 'quickrun_shards': 20,
1091 },
Sven Zheng80734f12020-08-06 06:50:391092 },
Kuan Huang235b0142021-10-19 18:59:281093 'mac-code-coverage': {
1094 'args': [
1095 '--coverage-continuous-mode=1',
1096 ],
1097 },
Lindsay Pasricha8bbc3382022-01-31 22:54:541098 'mac-osxbeta-rel': {
1099 'swarming': {
1100 'shards': 12,
1101 },
1102 },
Kuan Huang83a1c922021-09-08 22:00:271103 'mac11-arm64-rel-tests': {
Kuan Huang199112a52021-08-23 17:37:191104 'ci_only': False, # https://crbug.com/1234525
Lindsay Pasricha36432062021-10-27 20:43:301105 'args': [
1106 # crbug.com/1262402
1107 '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac11-arm64-rel.browser_tests.filter',
Lindsay Pasricha7cb620d2022-01-28 23:47:011108 ],
1109 'swarming': {
Lindsay Pasrichab7e471f2022-02-08 18:17:311110 'shards': 30,
Lindsay Pasricha7cb620d2022-01-28 23:47:011111 },
Kuan Huang199112a52021-08-23 17:37:191112 },
Zhaoyang Li5d3713d2022-06-13 18:01:171113 'mac12-arm64-rel-tests': {
1114 'ci_only': False, # https://crbug.com/1234525
1115 'args': [
1116 # crbug.com/1262402
1117 '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac12-arm64-rel.browser_tests.filter',
1118 ],
1119 'swarming': {
1120 'shards': 30,
1121 },
1122 },
Stephen Martinis1384ff92020-01-07 19:52:151123 'win-asan': {
Nico Weber3f919792020-06-12 23:34:521124 # These are very slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:441125 # crbug.com/1257927
Stephen Martinis1384ff92020-01-07 19:52:151126 'swarming': {
Nico Weber3f919792020-06-12 23:34:521127 'shards': 40,
Nico Weber0c2861b2018-12-14 18:05:161128 },
1129 },
Yuki Yamada70190fc2021-10-28 09:00:271130 'win-backuprefptr-x64-fyi-rel': {
1131 'args': [
1132 '--test-launcher-filter-file=../../testing/buildbot/filters/win_backuprefptr_fyi.browser_tests.filter',
1133 ],
1134 },
Ben Pasteneebad8fc2022-08-12 23:34:281135 'win10-rel-no-external-ip': {
1136 # crbug.com/868082
1137 'args': [
1138 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
1139 ],
1140 'swarming': {
1141 'shards': 15,
1142 }
1143 },
Kenneth Russelleb60cbd22017-12-05 07:54:281144 },
1145 },
Erik Chen681dc0282019-11-26 22:54:491146 'cc_unittests': {
1147 'modifications': {
1148 'Linux TSan Tests': {
1149 'swarming': {
1150 'shards': 3,
1151 },
1152 },
Haiyang Pan9d68ca02021-08-04 21:30:471153 'android-11-x86-rel': {
Haiyang Pancf765862021-03-18 20:39:151154 # https://crbug.com/1039860
1155 'args': [
Haiyang Pan11d8bd52021-11-19 21:22:541156 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11_12.cc_unittests.filter',
1157 ],
1158 },
Haiyang Pan2a55a452022-03-03 08:18:331159 'android-12-x64-rel': {
Haiyang Pan11d8bd52021-11-19 21:22:541160 # https://crbug.com/1039860
1161 'args': [
1162 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11_12.cc_unittests.filter',
Haiyang Pancf765862021-03-18 20:39:151163 ],
1164 },
Haiyang Pan6b8e4cf2021-08-02 21:38:281165 'android-marshmallow-x86-rel': {
John Budorickfa8f1da92020-01-15 18:11:381166 # https://crbug.com/1039860
1167 'args': [
1168 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.cc_unittests.filter',
1169 ],
1170 },
Haiyang Pan08d09dc2020-04-01 16:11:211171 'android-pie-x86-rel': {
John Budorickfa8f1da92020-01-15 18:11:381172 # https://crbug.com/1039860
1173 'args': [
1174 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.cc_unittests.filter',
1175 ],
1176 },
Struan Shrimptona1ab7672022-01-13 18:02:511177 'chromeos-amd64-generic-rel': {
1178 'swarming': {
1179 'quickrun_shards': 2,
1180 },
1181 },
Chong Gudf7fbe92021-02-24 02:55:581182 'fuchsia-code-coverage': {
1183 'swarming': {
1184 'shards': 4,
1185 },
1186 },
Chong Gub2446462021-08-19 18:44:081187 'fuchsia-fyi-arm64-dbg': {
1188 'args': [
1189 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.debug.cc_unittests.filter',
1190 ],
1191 },
Erik Chen681dc0282019-11-26 22:54:491192 },
1193 },
Prakhar94f444a2020-10-08 07:30:081194 'check_static_initializers': {
1195 'modifications': {
1196 'Mac Builder': {
1197 'args': [
1198 '--allow-coverage-initializer',
1199 ],
1200 },
1201 },
1202 },
Ben Pastene7a05a8f2020-11-12 17:25:511203 'chrome_all_tast_tests': {
1204 'modifications': {
Struan Shrimpton4b7abc02021-12-16 01:36:591205 'chromeos-amd64-generic-rel': {
1206 'swarming': {
Struan Shrimpton57c594e42022-01-25 17:59:131207 'quickrun_shards': 8,
Ben Pastene8fdb0ea92022-06-23 18:46:581208 'shards': 7,
Struan Shrimpton4b7abc02021-12-16 01:36:591209 },
1210 },
Ben Pastene7a05a8f2020-11-12 17:25:511211 'chromeos-betty-pi-arc-cfi-thin-lto-chrome': {
1212 'args': [
1213 # This bot sets symbol_level=2, which doesn't fit inside a normal VM.
1214 '--strip-chrome',
1215 ],
1216 },
Ben Pastenef85543f2022-06-24 17:50:021217 # TODO(crbug.com/1141234): Move out of experimental if/when the bots are
1218 # stable.
1219 'chromeos-jacuzzi-chrome': {
1220 'experiment_percentage': 100,
1221 },
yoshiki iguchi32971c52022-07-08 16:55:011222 'chromeos-kevin-chrome': {
1223 'swarming': {
Austin Engda0cb2e92022-07-11 18:08:551224 # Reducing parallelism due to DUT shortage (b/238271231)
yoshiki iguchi32971c52022-07-08 16:55:011225 'shards': 5,
1226 }
1227 },
1228 'chromeos-kevin-rel': {
1229 'swarming': {
Austin Engda0cb2e92022-07-11 18:08:551230 # Reducing parallelism due to DUT shortage (b/238271231)
yoshiki iguchi32971c52022-07-08 16:55:011231 'shards': 5,
1232 }
1233 },
Ben Pastenef85543f2022-06-24 17:50:021234 'chromeos-octopus-chrome': {
1235 'experiment_percentage': 100,
1236 },
Ben Pastene7a05a8f2020-11-12 17:25:511237 },
1238 },
Sven Zheng3d244282022-09-26 20:33:101239 'chrome_all_tast_tests_with_lacros': {
1240 'modifications': {
1241 'chromeos-eve-chrome': {
1242 'swarming': {
1243 # Increased timeout to 2 hours due to shard timeout.
1244 'hard_timeout': 7200,
1245 }
1246 },
1247 },
1248 },
Andrew Luod252791ac2019-10-15 00:28:131249 'chrome_java_test_pagecontroller_tests': {
Haiyang Panfbd2b482020-09-23 23:41:251250 'modifications': {
1251 'android-pie-arm64-rel': {
1252 # TODO(crbug.com/1111436): Move this back to walleye if/when additional
1253 # capacity has been deployed.
1254 'swarming': {
1255 'dimension_sets': [
1256 {
1257 'device_type': 'sailfish',
1258 },
1259 ],
1260 },
1261 },
1262 },
Andrew Luod252791ac2019-10-15 00:28:131263 },
Stephanie Kim07761d22021-11-25 00:21:181264 'chrome_junit_tests': {
1265 'modifications': {
1266 'android-marshmallow-arm64-rel': {
1267 'args': [
1268 # Too many shards can lead to race conditions (crbug/1272066)
1269 '--shards=8',
1270 ],
1271 },
1272 },
1273 },
Yun Liu7cfd28a2019-10-30 01:57:121274 'chrome_public_smoke_test': {
1275 'remove_from': [
Ben Joyce02dc8092021-03-04 21:48:191276 'android-code-coverage-native', # Does not generate profraw data.
Ben Joyce46ca6012021-03-31 19:19:251277 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data.
Yun Liu7cfd28a2019-10-30 01:57:121278 ],
1279 },
Kenneth Russelleb60cbd22017-12-05 07:54:281280 'chrome_public_test_apk': {
John Budorick27d2d44e2019-05-20 20:26:091281 'remove_from': [
1282 'android-asan', # https://crbug.com/964562
Ben Joyce02dc8092021-03-04 21:48:191283 'android-code-coverage-native', # Does not generate profraw data.
Ben Joyce46ca6012021-03-31 19:19:251284 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data.
John Budorick27d2d44e2019-05-20 20:26:091285 ],
Kenneth Russelleb60cbd22017-12-05 07:54:281286 'modifications': {
Kenneth Russelleb60cbd22017-12-05 07:54:281287 'Marshmallow 64 bit Tester': {
1288 'swarming': {
Kenneth Russelleb60cbd22017-12-05 07:54:281289 'shards': 14,
1290 },
1291 },
Arthur Wang5dd7b07c2020-04-04 01:05:221292 'Marshmallow Tablet Tester': {
1293 'args': [
1294 '--timeout-scale',
1295 '2.0',
1296 ],
1297 },
Ben Pastenec73e96e92018-07-12 01:40:351298 'Oreo Phone Tester': {
bsheedy01833462018-12-07 01:05:571299 # TODO(https://crbug.com/884413): Re-enable this once the tests are
1300 # either passing or there is more capacity.
1301 'experiment_percentage': 0,
Ben Pastenec73e96e92018-07-12 01:40:351302 },
Haiyang Pan9d68ca02021-08-04 21:30:471303 'android-11-x86-rel': {
Haiyang Panb80557c2021-03-13 03:01:441304 'args': [
1305 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.chrome_public_test_apk.filter',
Haiyang Pan1d5ca2862021-04-01 22:21:091306 '--timeout-scale=2.0',
Haiyang Panb80557c2021-03-13 03:01:441307 ],
Haiyang Panc82c3fa2022-02-01 01:26:061308 # TODO(https://crbug.com/1285975) Remove experiment and enable on
1309 # trybot once the device offline issue is resolved.
1310 'ci_only': True,
1311 'experiment_percentage': 100,
Haiyang Pan68a39c02021-11-11 21:12:211312 },
Haiyang Pan2a55a452022-03-03 08:18:331313 'android-12-x64-rel': {
Haiyang Pan68a39c02021-11-11 21:12:211314 'args': [
Haiyang Pan629f4e42022-02-09 22:11:231315 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.chrome_public_test_apk.filter',
Haiyang Pan68a39c02021-11-11 21:12:211316 '--timeout-scale=2.0',
1317 ],
Haiyang Pan2a55a452022-03-03 08:18:331318 # TODO(crbug.com/1225851): Remove experiment and ci_only
1319 # once the test suite is stable.
1320 'ci_only': True,
1321 'experiment_percentage': 100,
Haiyang Panb80557c2021-03-13 03:01:441322 },
Stephen Martinis1384ff92020-01-07 19:52:151323 'android-arm64-proguard-rel': {
1324 'swarming': {
1325 'shards': 25,
1326 },
1327 },
Brian Sheedy44a7a0032020-04-16 19:20:571328 'android-marshmallow-arm64-rel-swarming': {
1329 'swarming': {
Brian Sheedy180c2dd2020-04-22 19:34:311330 'service_account': '[email protected]'
Brian Sheedy44a7a0032020-04-16 19:20:571331 },
1332 },
James Shen39aa0e32022-03-22 04:44:501333 'android-marshmallow-x86-fyi-rel-reviver': {
1334 'swarming': {
1335 # TODO(crbug.com/1127110): Revisit shards and machine_type if there
1336 # are n2 machines available in the test pool.
1337 'shards': 25,
1338 },
1339 },
Haiyang Pan742760c2021-02-12 03:21:411340 'android-marshmallow-x86-rel': {
1341 'args': [
1342 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_m.chrome_public_test_apk.filter',
1343 ],
1344 'swarming': {
1345 # TODO(crbug.com/1127110): Revisit shards and machine_type if there
1346 # are n2 machines available in the test pool.
1347 'shards': 25,
Haiyang Pan742760c2021-02-12 03:21:411348 },
Haiyang Pan37fbd7a42020-06-03 03:27:371349 },
James Shenf0ce295f2022-07-21 01:37:171350 'android-nougat-x86-rel': {
1351 'args': [
1352 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_n.chrome_public_test_apk.filter',
1353 ],
James Shen57e04ef2022-09-23 02:22:271354 'swarming': {
1355 'shards': 25,
1356 'dimension_sets': [
1357 {
1358 'machine_type': 'e2-standard-8', # use 8-core to shorten runtime
1359 },
1360 ],
1361 },
James Shenf0ce295f2022-07-21 01:37:171362 },
Stephen Martinis1384ff92020-01-07 19:52:151363 'android-pie-arm64-rel': {
1364 'args': [
1365 '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_arm64_rel.chrome_public_test_apk.filter', # https://crbug.com/1010211
1366 ],
Stephen Martinisd05530d2021-07-27 22:50:221367 'ci_only': True, # https://crbug.com/1233700
Haiyang Pan43640ee2020-02-13 01:38:001368 },
James Shenfddea932022-08-18 07:19:541369 'android-pie-x86-fyi-rel-reviver': {
1370 'swarming': {
1371 # See https://crbug.com/1230192, runs of 40-60 minutes at 20 shards.
1372 'shards': 30,
1373 },
1374 },
Haiyang Pan08d09dc2020-04-01 16:11:211375 'android-pie-x86-rel': {
Haiyang Pan43640ee2020-02-13 01:38:001376 'args': [
Haiyang Pan71373072020-03-02 19:57:491377 # https://crbug.com/1046059
Haiyang Pan23f64f52020-06-04 01:23:321378 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_p.chrome_public_test_apk.filter',
Haiyang Pan43640ee2020-02-13 01:38:001379 ],
Haiyang Pan71373072020-03-02 19:57:491380 'swarming': {
Haiyang Pan58a6db22021-07-30 01:08:261381 # See https://crbug.com/1230192, runs of 40-60 minutes at 20 shards.
1382 'shards': 30,
1383 },
1384 },
1385 },
1386 },
1387 'chrome_public_test_apk_with_playstore': {
1388 'remove_from': [
1389 # Android Emulator does not ship playstore image on Marshmallow.
James Shen39aa0e32022-03-22 04:44:501390 'android-marshmallow-x86-fyi-rel-reviver',
Haiyang Pan58a6db22021-07-30 01:08:261391 'android-marshmallow-x86-rel',
1392 ],
1393 'modifications': {
Haiyang Pan9d68ca02021-08-04 21:30:471394 'android-11-x86-rel': {
Haiyang Pan58a6db22021-07-30 01:08:261395 'args': [
1396 '--avd-config=../../tools/android/avd/proto/generic_playstore_android30.textpb',
1397 ],
1398 'swarming': {
1399 # soft affinity so that bots with caches will be picked first
1400 'optional_dimensions': {
1401 '60': [
1402 {
Haiyang Pan0fee3652022-02-23 19:19:481403 'caches': 'generic_playstore_android30',
Haiyang Pan58a6db22021-07-30 01:08:261404 }
1405 ],
1406 },
1407 'named_caches': [
1408 {
Haiyang Pan0fee3652022-02-23 19:19:481409 'name': 'generic_playstore_android30',
1410 'path': '.android_emulator/generic_playstore_android30',
Haiyang Pan58a6db22021-07-30 01:08:261411 },
1412 ],
1413 },
1414 },
Haiyang Pan2a55a452022-03-03 08:18:331415 'android-12-x64-rel': {
Haiyang Pan68a39c02021-11-11 21:12:211416 'args': [
1417 '--avd-config=../../tools/android/avd/proto/generic_playstore_android31.textpb',
1418 ],
1419 'swarming': {
1420 # soft affinity so that bots with caches will be picked first
1421 'optional_dimensions': {
1422 '60': [
1423 {
Haiyang Pan0fee3652022-02-23 19:19:481424 'caches': 'generic_playstore_android31',
Haiyang Pan68a39c02021-11-11 21:12:211425 }
1426 ],
1427 },
1428 'named_caches': [
1429 {
Haiyang Pan0fee3652022-02-23 19:19:481430 'name': 'generic_playstore_android31',
1431 'path': '.android_emulator/generic_playstore_android31',
Haiyang Pan68a39c02021-11-11 21:12:211432 },
1433 ],
1434 },
1435 },
James Shenfddea932022-08-18 07:19:541436 'android-pie-x86-fyi-rel-reviver': {
1437 'args': [
1438 '--avd-config=../../tools/android/avd/proto/generic_playstore_android28.textpb',
1439 ],
1440 'swarming': {
1441 # soft affinity so that bots with caches will be picked first
1442 'optional_dimensions': {
1443 '60': [
1444 {
1445 'caches': 'generic_playstore_android28',
1446 }
1447 ],
1448 },
1449 'named_caches': [
1450 {
1451 'name': 'generic_playstore_android28',
1452 'path': '.android_emulator/generic_playstore_android28',
1453 },
1454 ],
1455 },
1456 },
Haiyang Pan58a6db22021-07-30 01:08:261457 'android-pie-x86-rel': {
1458 'args': [
1459 '--avd-config=../../tools/android/avd/proto/generic_playstore_android28.textpb',
1460 ],
1461 'swarming': {
Haiyang Pan2c438302021-06-11 23:50:381462 # soft affinity so that bots with caches will be picked first
1463 'optional_dimensions': {
1464 '60': [
1465 {
Haiyang Pan0fee3652022-02-23 19:19:481466 'caches': 'generic_playstore_android28',
Haiyang Pan2c438302021-06-11 23:50:381467 }
1468 ],
1469 },
Haiyang Pan71373072020-03-02 19:57:491470 'named_caches': [
1471 {
Haiyang Pan0fee3652022-02-23 19:19:481472 'name': 'generic_playstore_android28',
1473 'path': '.android_emulator/generic_playstore_android28',
Haiyang Pan71373072020-03-02 19:57:491474 },
Haiyang Pan980402822020-10-07 23:24:561475 ],
Haiyang Pan71373072020-03-02 19:57:491476 },
John Budorick34009472018-04-03 17:38:441477 },
Kenneth Russelleb60cbd22017-12-05 07:54:281478 },
1479 },
1480 'chrome_public_test_vr_apk': {
Nico Weberb0b3f5862018-07-13 18:45:151481 'remove_from': [
Ben Joyce3e043862021-10-20 23:57:241482 # Decided to no longer run VR tests on M, crbug.com/1159619.
bsheedy410dd7c2018-06-15 22:42:091483 'Marshmallow Tablet Tester',
Haiyang Pand12ff5462021-07-12 17:29:021484
Andrew Luo38b311f2019-10-04 03:42:091485 'android-pie-arm64-rel', # https://crbug.com/1010211
bsheedydf58b4e2018-11-01 19:42:161486 'ToTAndroid',
John Budorick27d2d44e2019-05-20 20:26:091487 'android-asan', # https://crbug.com/964562
Ben Joyce02dc8092021-03-04 21:48:191488 'android-code-coverage-native', # Does not generate profraw data.
Ben Joyce46ca6012021-03-31 19:19:251489 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data.
bsheedy410dd7c2018-06-15 22:42:091490 ],
Kenneth Russelleb60cbd22017-12-05 07:54:281491 },
bsheedy75a4dd52018-11-27 23:24:301492 'chrome_public_test_vr_apk-vega': {
1493 'modifications': {
bsheedy75a4dd52018-11-27 23:24:301494 'Oreo Phone Tester': {
1495 'swarming': {
1496 'dimension_sets': [
1497 {
1498 'device_os': 'OVR1.180808.003',
1499 'device_type': 'vega',
1500 'os': 'Android',
1501 },
1502 ],
1503 },
1504 }
1505 }
1506 },
Henrique Nakashimad99462ab2022-06-08 19:52:421507 'chrome_public_unit_test_apk': {
1508 'modifications': {
1509 'android-12-x64-rel': {
1510 'args': [
1511 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.chrome_public_unit_test_apk.filter',
1512 ],
1513 },
1514 },
1515 },
Nihar Damarasingu8def1a22022-08-18 21:15:541516 'chrome_public_wpt': {
1517 'modifications': {
1518 'android-chrome-pie-x86-wpt-fyi-rel': {
1519 'args': [
1520 '--use-upstream-wpt',
1521 ],
1522 },
1523 },
1524 },
Ian Struiksmaeb285db02020-10-20 22:19:341525 'chrome_sizes': {
1526 'modifications': {
Yuke Liao975680302021-02-18 18:34:541527 'lacros-amd64-generic-chrome': {
1528 'swarming': {
1529 'dimension_sets': [
1530 {
Yuke Liao31225ee32021-03-17 23:21:331531 'cpu': 'x86-64',
Ben Pasteneddd3da72021-09-23 17:41:351532 'os': 'Ubuntu-18.04',
Yuke Liao975680302021-02-18 18:34:541533 },
1534 ],
1535 },
1536 },
Ben Pastenee9536c82021-10-19 01:48:571537 'lacros-arm-generic-chrome': {
1538 'swarming': {
1539 'dimension_sets': [
1540 {
1541 'cpu': 'x86-64',
1542 'os': 'Ubuntu-18.04',
1543 },
1544 ],
1545 },
1546 },
Ian Struiksmaeb285db02020-10-20 22:19:341547 },
1548 },
Takuto Ikuta1b749b902019-04-11 18:05:531549 'chromedriver_py_tests': {
Ben Pastene1b1aa972022-09-28 17:51:011550 'modifications': {
1551 'Win10 Tests x64': {
1552 # TODO(crbug.com/1369158): Fix & re-enable.
1553 'isolate_profile_data': False,
1554 },
1555 },
Takuto Ikuta1b749b902019-04-11 18:05:531556 'remove_from': [
1557 # Timeout happens sometimes (crbug.com/951799).
Takuto Ikuta1b749b902019-04-11 18:05:531558 'Win10 Tests x64 (dbg)',
1559 ],
1560 },
Haiyang Panfed339172021-03-10 23:19:571561 'components_browsertests': {
1562 'modifications': {
Haiyang Pan9d68ca02021-08-04 21:30:471563 'android-11-x86-rel': {
Haiyang Panfed339172021-03-10 23:19:571564 'swarming': {
1565 'shards': 2,
1566 },
1567 },
André Kempef30fe9d22022-02-03 10:44:291568 'android-asan': {
1569 'swarming': {
1570 'shards': 3,
1571 },
1572 },
Struan Shrimptonf5b2b552022-01-20 20:37:391573 'android-marshmallow-arm64-rel': {
1574 'swarming': {
1575 'quickrun_shards': 2,
1576 },
1577 },
Haiyang Pandcc3e012022-09-30 01:57:431578 'android-nougat-x86-rel': {
1579 'swarming': {
1580 'shards': 2,
1581 },
1582 },
Haiyang Panfed339172021-03-10 23:19:571583 },
1584 },
Kenneth Russelleb60cbd22017-12-05 07:54:281585 'components_unittests': {
Yun Liu3e759dbb2019-11-01 19:25:521586 'remove_from': [
Ben Joyce68c5c852021-10-16 23:55:161587 # https://crbug.com/1147531 - covered on marshmallow emulator.
Garrett Beaty47a2d802020-11-10 20:50:531588 'android-marshmallow-arm64-rel',
Yun Liu3e759dbb2019-11-01 19:25:521589 ],
Kenneth Russelleb60cbd22017-12-05 07:54:281590 'modifications': {
Erik Staabd468a802022-06-28 23:38:031591 'Linux ASan LSan Low Symbols FYI Tests (1)': {
1592 # These are very slow on the ASAN trybot for some reason.
1593 # crbug.com/1257927
1594 'swarming': {
1595 'shards': 5,
1596 },
1597 },
John Budorick5052d552017-12-13 02:59:341598 'Linux ASan LSan Tests (1)': {
1599 # These are very slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:441600 # crbug.com/1257927
John Budorick5052d552017-12-13 02:59:341601 'swarming': {
1602 'shards': 5,
1603 },
1604 },
Takuto Ikuta54671d972018-07-19 19:06:351605 'Linux Chromium OS ASan LSan Tests (1)': {
1606 # These are very slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:441607 # crbug.com/1257927
Takuto Ikuta54671d972018-07-19 19:06:351608 'swarming': {
1609 'shards': 5,
1610 },
1611 },
Erik Chen681dc0282019-11-26 22:54:491612 'Linux TSan Tests': {
1613 'swarming': {
1614 'shards': 2,
1615 },
1616 },
Lindsay Pasrichafaeaac72022-07-27 21:08:081617 # https://crbug.com/1344223
1618 'Mac10.13 Tests': {
1619 'swarming': {
1620 'shards': 2,
1621 },
1622 },
Haiyang Pan9d68ca02021-08-04 21:30:471623 'android-11-x86-rel': {
Haiyang Pan799282f2021-03-25 19:38:311624 'args': [
Haiyang Pane521cf692021-11-30 00:35:231625 # TODO(crbug.com/1192348): Fix the test failure
1626 '--gtest_filter=-FieldFormatterTest.DifferentLocales',
Haiyang Pan799282f2021-03-25 19:38:311627 ],
1628 },
Haiyang Pan2a55a452022-03-03 08:18:331629 'android-12-x64-rel': {
Haiyang Pan2877f062021-11-18 01:06:061630 'args': [
1631 # TODO(crbug.com/1192348): Fix the test failure
1632 '--gtest_filter=-FieldFormatterTest.DifferentLocales',
1633 ],
1634 },
Sven Zheng80734f12020-08-06 06:50:391635 },
Sven Zheng577fe5ff2020-08-03 22:06:441636 },
Chong Gu76046412021-09-22 17:49:211637 'compositor_unittests': {
Chong Gub2446462021-08-19 18:44:081638 'modifications': {
1639 'fuchsia-fyi-arm64-dbg': {
1640 'args': [
1641 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.debug.compositor_unittests.filter',
1642 ],
1643 },
1644 },
1645 },
Kenneth Russelleb60cbd22017-12-05 07:54:281646 'content_browsertests': {
Brad Halla36886c2019-02-26 16:52:291647 'remove_from': [
Brad Halla36886c2019-02-26 16:52:291648 'CrWinAsan(dll)', # https://crbug.com/935598
Chong Gu0ed5dcda2021-07-15 21:26:111649 'android-marshmallow-arm64-rel', # http://crbug.com/1060245#c30: due to low utility and capacity.
Brad Halla36886c2019-02-26 16:52:291650 ],
Kenneth Russelleb60cbd22017-12-05 07:54:281651 'modifications': {
Kenneth Russellfbda3c532017-12-08 23:57:241652 'Cast Audio Linux': {
1653 'args': [
Nico Weber02f30392018-07-16 18:39:431654 '--test-launcher-filter-file=../../testing/buildbot/filters/cast-linux.content_browsertests.filter',
Kenneth Russellfbda3c532017-12-08 23:57:241655 ],
Kenneth Russellfbda3c532017-12-08 23:57:241656 },
1657 'Cast Linux': {
1658 'args': [
Nico Weber02f30392018-07-16 18:39:431659 '--test-launcher-filter-file=../../testing/buildbot/filters/cast-linux.content_browsertests.filter',
Kenneth Russellfbda3c532017-12-08 23:57:241660 ],
Kenneth Russellfbda3c532017-12-08 23:57:241661 },
Erik Staabd468a802022-06-28 23:38:031662 'Linux ASan LSan Low Symbols FYI Tests (1)': {
1663 'swarming': {
1664 'shards': 12,
1665 'quickrun_shards': 24,
1666 },
1667 },
Erik Chenb681c8c2019-11-25 22:52:521668 'Linux ASan LSan Tests (1)': {
1669 'swarming': {
1670 'shards': 12,
Struan Shrimptone772d72f2021-12-15 07:50:091671 'quickrun_shards': 24,
Erik Chenb681c8c2019-11-25 22:52:521672 },
1673 },
Chris Cunninghame1a04ea2019-04-24 01:49:321674 'Linux ASan Tests (sandboxed)': {
1675 'swarming': {
John Abd-El-Malek3a631612020-07-08 21:40:411676 'shards': 10, # https://crbug.com/1103330
Chris Cunninghame1a04ea2019-04-24 01:49:321677 },
1678 },
Erik Chen681dc0282019-11-26 22:54:491679 'Linux TSan Tests': {
1680 'swarming': {
1681 'shards': 15,
Struan Shrimptonf5b2b552022-01-20 20:37:391682 'quickrun_shards': 30,
Erik Chen681dc0282019-11-26 22:54:491683 },
1684 },
Lindsay Pasrichab3f72db2021-09-22 22:05:461685 'Mac ASan 64 Tests (1)': { # https://crbug.com/1200640
1686 'experiment_percentage': 100,
1687 },
Struan Shrimpton57c594e42022-01-25 17:59:131688 'Mac11 Tests': {
1689 'swarming': {
Lindsay Pasricha0b5beaf2022-03-04 08:15:271690 'shards': 12,
Struan Shrimpton57c594e42022-01-25 17:59:131691 'quickrun_shards': 10,
1692 },
1693 },
Yue She0cad2922022-06-24 15:06:071694 'Mac12 Tests': {
1695 'swarming': {
1696 'shards': 12,
1697 'quickrun_shards': 10,
1698 },
1699 },
Cameron Higgins7558b162022-06-10 18:53:071700 'Mac12 Tests (dbg)': { # https://crbug.com/1279504
Lindsay Pasricha945e4d62022-01-20 02:14:011701 'swarming': {
Lindsay Pasricha9ec81b52022-03-10 03:43:311702 'shards': 18,
Lindsay Pasricha945e4d62022-01-20 02:14:011703 },
1704 },
1705
Sergey Silkinfe96b352020-10-19 20:41:341706 'Marshmallow Tablet Tester': {
1707 'args': [
1708 '--test-launcher-filter-file=../../testing/buildbot/filters/android.marshmallow_tablet_tester.content_browsertests.filter',
1709 ],
Haiyang Pan1f6367352021-07-02 21:15:571710 'swarming': {
1711 'shards': 15,
1712 },
Sergey Silkinfe96b352020-10-19 20:41:341713 },
Sergey Silkin1fe10e82020-10-30 19:36:581714 'WebRTC Chromium FYI Android Tests (dbg) (M Nexus5X)': {
1715 'args': [
1716 '--test-launcher-filter-file=../../testing/buildbot/filters/chromium.webrtc.fyi.android.tests.dbg.content_browsertests.filter',
1717 ],
Andrew Grieveae21ca62021-10-20 18:37:521718 },
1719 'WebRTC Chromium FYI Android Tests (dbg) (N Nexus5X)': {
1720 'args': [
1721 '--test-launcher-filter-file=../../testing/buildbot/filters/chromium.webrtc.fyi.android.tests.dbg.content_browsertests.filter',
1722 ],
1723 },
Stephen Martinis1384ff92020-01-07 19:52:151724 'Win10 Tests x64': {
1725 # crbug.com/868082
1726 'args': [
1727 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
1728 ],
Struan Shrimptona1ab7672022-01-13 18:02:511729 'swarming': {
1730 'quickrun_shards': 18,
1731 },
Stephen Martinis1384ff92020-01-07 19:52:151732 },
1733 'Win10 Tests x64 (dbg)': {
1734 'experiment_percentage': 100,
1735 # crbug.com/868082
1736 'args': [
1737 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
Stephen Martinis1384ff92020-01-07 19:52:151738 ],
1739 },
Kuan Huanga89737d2022-01-07 19:42:111740 'Win11 Tests x64': {
1741 # crbug.com/868082
1742 'args': [
1743 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
1744 ],
1745 },
Haiyang Pan9d68ca02021-08-04 21:30:471746 'android-11-x86-rel': {
Haiyang Pan566e2652022-01-25 07:01:521747 # TODO(crbug.com/1137474): Remove ci_only and experiment_percentage
1748 # after the test suite is green.
1749 'ci_only': True,
Haiyang Pan10f029c2021-07-30 23:17:561750 'experiment_percentage': 100,
Haiyang Pan51450ab2021-03-23 00:48:571751 # TODO(crbug.com/1137474): Revisit the shard number once failed tests
1752 # are fixed.
Haiyang Panfed339172021-03-10 23:19:571753 'swarming': {
Haiyang Pan51450ab2021-03-23 00:48:571754 'shards': 30,
Haiyang Pan45e77dda2021-07-01 22:23:291755 'dimension_sets': [
1756 {
1757 'machine_type': 'e2-standard-8', # use 8-core to shorten runtime
1758 },
1759 ],
Haiyang Panfed339172021-03-10 23:19:571760 },
1761 },
Haiyang Pan2a55a452022-03-03 08:18:331762 'android-12-x64-rel': {
Haiyang Pandbff3ef2022-02-11 23:24:191763 'args': [
1764 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.content_browsertests.filter',
1765 ],
Haiyang Pan249494b2022-01-27 21:56:211766 'swarming': {
Haiyang Panc1192662022-03-09 00:09:021767 'shards': 25,
Haiyang Pan249494b2022-01-27 21:56:211768 },
1769 },
Stephen Martinis1384ff92020-01-07 19:52:151770 'android-arm64-proguard-rel': {
1771 'swarming': {
1772 'shards': 16,
1773 },
1774 },
1775 'android-asan': {
1776 'args': [
1777 '--test-launcher-filter-file=../../testing/buildbot/filters/android.asan.content_browsertests.filter',
1778 ],
1779 'swarming': {
André Kempef30fe9d22022-02-03 10:44:291780 'shards': 25,
Stephen Martinis1384ff92020-01-07 19:52:151781 },
1782 },
Stephen Martinis1384ff92020-01-07 19:52:151783 'android-marshmallow-arm64-rel': {
1784 'swarming': {
1785 'shards': 16,
1786 },
1787 },
Haiyang Pan2486dcb2020-09-18 17:53:061788 'android-marshmallow-x86-rel-non-cq': {
John Budoricka4e23882020-02-28 18:36:431789 'args': [
Haiyang Pan12d5acd2020-06-01 20:54:571790 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_m.content_browsertests.filter',
John Budoricka4e23882020-02-28 18:36:431791 ],
Haiyang Panc47f6d12020-08-19 18:34:491792 'swarming': {
1793 'shards': 20,
1794 },
John Budoricka4e23882020-02-28 18:36:431795 },
Haiyang Pancf24ceb2022-03-17 02:31:301796 'android-nougat-x86-rel': {
James Shenfa680ebaa2022-07-22 02:53:531797 'args': [
1798 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_n.content_browsertests.filter',
1799 ],
Haiyang Pancf24ceb2022-03-17 02:31:301800 'swarming': {
James Shen57e04ef2022-09-23 02:22:271801 'shards': 25,
1802 'dimension_sets': [
1803 {
1804 'machine_type': 'e2-standard-8', # use 8-core to shorten runtime
1805 },
1806 ],
Haiyang Pancf24ceb2022-03-17 02:31:301807 },
1808 },
Struan Shrimptone772d72f2021-12-15 07:50:091809 'android-pie-arm64-rel': {
1810 'swarming': {
Struan Shrimpton4b7abc02021-12-16 01:36:591811 'quickrun_shards': 40
Struan Shrimptone772d72f2021-12-15 07:50:091812 }
1813 },
James Shenfddea932022-08-18 07:19:541814 'android-pie-x86-fyi-rel-reviver': {
1815 'swarming': {
1816 # Flaking with only 20 shards with 40-60 minute runs.
1817 # https://crbug.com/1230118
1818 'shards': 30,
1819 },
1820 },
Haiyang Pan08d09dc2020-04-01 16:11:211821 'android-pie-x86-rel': {
John Budoricka4e23882020-02-28 18:36:431822 'args': [
Haiyang Pan12d5acd2020-06-01 20:54:571823 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_p.content_browsertests.filter',
John Budoricka4e23882020-02-28 18:36:431824 ],
Sky Malice303f7ec2021-07-17 04:13:091825 'swarming': {
1826 # Flaking with only 20 shards with 40-60 minute runs.
1827 # https://crbug.com/1230118
1828 'shards': 30,
Haiyang Pan2eb735e72020-09-15 22:51:511829 },
John Budoricka4e23882020-02-28 18:36:431830 },
Stephen Martinis1384ff92020-01-07 19:52:151831 'linux-chromeos-code-coverage': {
1832 'swarming': {
1833 'shards': 12,
1834 },
1835 },
Albert J. Wong91f109652019-11-19 03:01:161836 'linux-chromeos-rel': {
1837 'swarming': {
1838 'shards': 3,
1839 },
1840 },
Yuke Liao79424e42020-01-06 21:00:111841 'linux-code-coverage': {
Yuke Liao58e1d202020-03-20 23:02:011842 'args': [
1843 '--no-sandbox',
1844 ],
Yuke Liao79424e42020-01-06 21:00:111845 'swarming': {
1846 'shards': 12,
1847 },
1848 },
Sven Zheng80734f12020-08-06 06:50:391849 # https://crbug.com/1111979
1850 'linux-lacros-tester-fyi-rel': {
1851 'experiment_percentage': 100,
1852 },
Kuan Huang235b0142021-10-19 18:59:281853 'mac-code-coverage': {
1854 'args': [
1855 '--coverage-continuous-mode=1',
1856 ],
1857 },
Kuan Huang05332fb2021-10-12 02:04:261858 # https://crbug.com/1255940
1859 'mac-rel-swarming': {
1860 'swarming': {
1861 'dimension_sets': [
1862 {
1863 # These test would time out when running on 4 cores instances.
1864 'cores': '8|12',
1865 }
1866 ],
1867 },
1868 },
Ben Pasteneebad8fc2022-08-12 23:34:281869 'win10-rel-no-external-ip': {
1870 # crbug.com/868082
1871 'args': [
1872 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
1873 ],
1874 },
Kenneth Russelleb60cbd22017-12-05 07:54:281875 },
1876 },
Nico Weber81e16ace22018-06-30 02:58:471877 'content_shell_crash_test': {
Haiyang Pan8c201b92020-06-04 01:25:071878 'remove_from': [
Haiyang Pan2486dcb2020-09-18 17:53:061879 'android-marshmallow-x86-rel-non-cq', # crbug.com/1084353
James Shenad325fb02022-07-25 19:46:211880 'android-nougat-x86-rel', # crbug.com/1084353
Haiyang Pan8c201b92020-06-04 01:25:071881 ],
Dirk Prankeb1c36b322018-07-11 02:42:001882 'modifications': {
Dirk Prankeb1c36b322018-07-11 02:42:001883 'Win10 Tests x64 (dbg)': {
1884 'experiment_percentage': 100, # https://crbug.com/861730
1885 },
1886 },
Nico Weber81e16ace22018-06-30 02:58:471887 },
John Budorick27d2d44e2019-05-20 20:26:091888 'content_shell_test_apk': {
1889 'remove_from': [
John Budorick27d2d44e2019-05-20 20:26:091890 'android-asan', # https://crbug.com/964562
Ben Joyce02dc8092021-03-04 21:48:191891 'android-code-coverage-native', # Does not generate profraw data.
Ben Joyce46ca6012021-03-31 19:19:251892 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data.
John Budorick27d2d44e2019-05-20 20:26:091893 ],
John Budorickee2e64f2020-03-02 20:19:101894 'modifications': {
Haiyang Pan9d68ca02021-08-04 21:30:471895 'android-11-x86-rel': {
Haiyang Pan103864812021-03-19 19:28:441896 'args': [
1897 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.content_shell_test_apk.filter',
Haiyang Panabdab2f2021-07-19 20:37:511898 '--timeout-scale=2.0',
Haiyang Pan103864812021-03-19 19:28:441899 ],
1900 },
Haiyang Pan2a55a452022-03-03 08:18:331901 'android-12-x64-rel': {
Haiyang Pan3b1016e2022-02-05 00:02:451902 'args': [
1903 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.content_shell_test_apk.filter',
1904 ],
1905 },
James Shen39aa0e32022-03-22 04:44:501906 'android-marshmallow-x86-fyi-rel-reviver': {
1907 'swarming': {
1908 'quickrun_shards': 8,
1909 },
1910 },
Haiyang Panb991f562021-08-10 17:46:461911 'android-marshmallow-x86-rel': {
John Budorickee2e64f2020-03-02 20:19:101912 'args': [
Haiyang Pan28e73582020-05-30 00:34:271913 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_m.content_shell_test_apk.filter',
John Budorickee2e64f2020-03-02 20:19:101914 ],
Struan Shrimpton57c594e42022-01-25 17:59:131915 'swarming': {
1916 'quickrun_shards': 8,
1917 },
John Budorickee2e64f2020-03-02 20:19:101918 },
James Shen97b48ac42022-07-01 23:34:441919 'android-nougat-x86-rel': {
1920 'args': [
1921 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_n.content_shell_test_apk.filter',
1922 ],
James Shen57e04ef2022-09-23 02:22:271923 'swarming': {
1924 'dimension_sets': [
1925 {
1926 'machine_type': 'e2-standard-8', # use 8-core to shorten runtime
1927 },
1928 ],
1929 },
James Shen97b48ac42022-07-01 23:34:441930 },
Haiyang Pan08d09dc2020-04-01 16:11:211931 'android-pie-x86-rel': {
John Budorickee2e64f2020-03-02 20:19:101932 'args': [
1933 '--gtest_filter=-ContentViewScrollingTest.testFling',
1934 ],
1935 },
1936 },
John Budorick27d2d44e2019-05-20 20:26:091937 },
Kenneth Russelleb60cbd22017-12-05 07:54:281938 'content_unittests': {
1939 'modifications': {
Erik Staabd468a802022-06-28 23:38:031940 'Linux ASan LSan Low Symbols FYI Tests (1)': {
1941 # These are slow on the ASAN trybot for some reason.
1942 # crbug.com/1257927
1943 'swarming': {
1944 'shards': 2,
1945 },
1946 },
John Budorick5052d552017-12-13 02:59:341947 'Linux ASan LSan Tests (1)': {
1948 # These are slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:441949 # crbug.com/1257927
John Budorick5052d552017-12-13 02:59:341950 'swarming': {
1951 'shards': 2,
1952 },
1953 },
Takuto Ikuta54671d972018-07-19 19:06:351954 'Linux ChromiumOS MSan Tests': {
1955 # These are very slow on the Chrome OS MSAN trybot for some reason.
1956 # crbug.com/865455
1957 'swarming': {
1958 'shards': 2,
1959 },
1960 },
Chong Gu52481452021-04-02 17:52:411961 'fuchsia-code-coverage': {
1962 'swarming': {
1963 'shards': 12,
1964 },
1965 },
Chong Gua10cd302022-01-14 19:22:191966 'fuchsia-fyi-x64-asan': {
1967 'args': [
1968 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.lsan.content_unittests.filter',
1969 ],
1970 },
Kenneth Russelleb60cbd22017-12-05 07:54:281971 },
1972 },
Jonah Ryan-Davis832c8462020-06-09 03:45:031973 'context_lost_validating_tests': {
Brian Sheedye285c9b2019-07-15 21:42:461974 # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2)
1975 # exception once there is enough capacity to run these tests.
1976 'remove_from': [
Brian Sheedye285c9b2019-07-15 21:42:461977 'Android FYI Release (Pixel 2)',
1978 ],
Kenneth Russellc1a09302018-07-10 01:12:541979 },
Kenneth Russellfbda3c532017-12-08 23:57:241980 'crashpad_tests': {
1981 'remove_from': [
Nico Weber15a00d62018-05-16 17:11:481982 'linux-win_cross-rel', # https://crbug.com/762167
Vlad Tsyrklevich06a9a44f2019-07-24 19:14:391983 # https://crbug.com/crashpad/304
1984 'Linux TSan Tests',
1985 'ToTLinuxTSan',
1986 # https://crbug.com/crashpad/306
1987 'Linux CFI',
Michael Savigny0a956032021-10-27 19:18:021988 'Linux CFI (reclient shadow)',
Vlad Tsyrklevich06a9a44f2019-07-24 19:14:391989 'CFI Linux ToT',
Kenneth Russellfbda3c532017-12-08 23:57:241990 ],
Haiyang Panc7c009e2021-03-18 19:31:231991 'modifications': {
Avi Drissmanc6318122022-03-29 17:07:421992 # TODO(crbug.com/1254975): dyld was rebuilt for macOS 12, which breaks
1993 # the tests. Run this experimentally on all the macOS bots >= 12 and
1994 # remove this exception once fixed.
1995 'Mac Builder Next': {
1996 'experiment_percentage': 100,
1997 },
Haiyang Pan9d68ca02021-08-04 21:30:471998 'android-11-x86-rel': {
Haiyang Panc7c009e2021-03-18 19:31:231999 'args': [
2000 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.crashpad_tests.filter',
2001 ],
2002 },
Haiyang Pan2a55a452022-03-03 08:18:332003 'android-12-x64-rel': {
Haiyang Pan07d9e262021-10-20 21:50:032004 'args': [
2005 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.crashpad_tests.filter',
2006 ],
2007 },
Avi Drissmanc6318122022-03-29 17:07:422008 # TODO(crbug.com/1254975): dyld was rebuilt for macOS 12, which breaks
2009 # the tests. Run this experimentally on all the macOS bots >= 12 and
2010 # remove this exception once fixed.
Lindsay Pasricha60535a22021-12-13 16:50:242011 'mac-osxbeta-rel': {
2012 'experiment_percentage': 100,
2013 },
Haiyang Panc7c009e2021-03-18 19:31:232014 },
Kenneth Russellfbda3c532017-12-08 23:57:242015 },
Austin Eng414af1612022-04-08 02:15:362016 'dawn_perf_tests': {
2017 'remove_from': [
2018 'Dawn Win10 x86 DEPS Release (Intel HD 630)',
2019 'Dawn Win10 x86 Release (Intel HD 630)',
2020 ],
2021 },
Haiyang Pan1c813ca2021-11-24 18:52:162022 'device_unittests': {
2023 'modifications': {
Haiyang Pan2a55a452022-03-03 08:18:332024 'android-12-x64-rel': {
Haiyang Pan1c813ca2021-11-24 18:52:162025 'args': [
2026 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.device_unittests.filter',
2027 ],
2028 },
2029 },
2030 },
Ben Pastene61ad637c2020-05-08 22:24:412031 'disk_usage_tast_test': {
2032 # TODO(crbug.com/1077659): Add the test back after it's fixed.
2033 'remove_from': [
2034 'chromeos-kevin-rel',
2035 ],
2036 },
Struan Shrimpton57c594e42022-01-25 17:59:132037 'exo_unittests': {
2038 'modifications': {
2039 'linux-chromeos-rel': {
2040 'swarming': {
2041 'quickrun_shards': 2,
2042 }
2043 },
2044 },
2045 },
Joe Downing41486042018-10-18 22:44:442046 'extensions_browsertests': {
Brad Halla36886c2019-02-26 16:52:292047 'remove_from': [
Brad Halla36886c2019-02-26 16:52:292048 'CrWinAsan(dll)', # https://crbug.com/935598
2049 ],
Joe Downing41486042018-10-18 22:44:442050 'modifications': {
2051 'Win10 Tests x64 (dbg)': {
2052 'experiment_percentage': 100, # https://crbug.com/876615
2053 },
Sven Zhengbc822262022-09-20 20:47:352054 # https://crbug.com/1111979
2055 'linux-lacros-asan-lsan-rel': {
2056 'args': [
2057 '--gtest_filter=-BluetoothShellApiTest.ApiSanityCheck:BluetoothSocketApiTest.Listen:BluetoothSocketApiTest.PermissionDenied',
2058 ],
2059 },
Sven Zheng5c9d3e342020-08-11 21:39:432060 # https://crbug.com/1111979,
Junhua Chen39dd2dba2021-05-05 17:51:542061 'linux-lacros-code-coverage': {
2062 'args': [
2063 '--gtest_filter=-BluetoothShellApiTest.ApiSanityCheck:BluetoothSocketApiTest.Listen:BluetoothSocketApiTest.PermissionDenied',
2064 ],
2065 },
Yuke Liaoa0db4742021-08-09 18:28:332066 'linux-lacros-dbg-tests-fyi': {
2067 'args': [
2068 '--gtest_filter=-BluetoothShellApiTest.ApiSanityCheck:BluetoothSocketApiTest.Listen:BluetoothSocketApiTest.PermissionDenied',
2069 ],
2070 },
Sven Zheng5c9d3e342020-08-11 21:39:432071 'linux-lacros-tester-rel': {
Sven Zheng5c9d3e342020-08-11 21:39:432072 'args': [
2073 '--gtest_filter=-BluetoothShellApiTest.ApiSanityCheck:BluetoothSocketApiTest.Listen:BluetoothSocketApiTest.PermissionDenied',
2074 ],
2075 },
Joe Downing41486042018-10-18 22:44:442076 },
2077 },
Sven Zheng577fe5ff2020-08-03 22:06:442078 'extensions_unittests': {
Sven Zheng80734f12020-08-06 06:50:392079 'modifications': {
Chong Gud034fe52022-01-20 21:48:042080 'fuchsia-fyi-x64-asan': {
2081 'args': [
Chong Gu1155d872022-02-10 17:55:272082 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.lsan.extensions_unittests.filter',
Chong Gud034fe52022-01-20 21:48:042083 ],
2084 },
Sven Zhengbc822262022-09-20 20:47:352085 # https://crbug.com/1111979
2086 'linux-lacros-asan-lsan-rel': {
2087 'args': [
2088 '--gtest_filter=-NativeExtensionBindingsSystemUnittest*:'
2089 'BluetoothSocketApiUnittest.CreateThenClose:'
2090 'FeatureProviderTest.PermissionFeatureAvailability',
2091 ],
2092 },
Sven Zheng5c9d3e342020-08-11 21:39:432093 # https://crbug.com/1111979,
Junhua Chen39dd2dba2021-05-05 17:51:542094 'linux-lacros-code-coverage': {
2095 'args': [
Yuke Liaoa0db4742021-08-09 18:28:332096 '--gtest_filter=-BluetoothSocketApiUnittest.CreateThenClose:'
2097 'NativeExtensionBindingsSystemUnittest.*',
2098 ],
2099 },
2100 'linux-lacros-dbg-tests-fyi': {
2101 'args': [
Junhua Chen39dd2dba2021-05-05 17:51:542102 '--gtest_filter=-NativeExtensionBindingsSystemUnittest*:'
2103 'BluetoothSocketApiUnittest.CreateThenClose:'
2104 'FeatureProviderTest.PermissionFeatureAvailability',
2105 ],
2106 },
Sven Zheng5c9d3e342020-08-11 21:39:432107 'linux-lacros-tester-rel': {
Sven Zheng5c9d3e342020-08-11 21:39:432108 'args': [
Yuke Liaobb8308322020-08-12 20:20:472109 '--gtest_filter=-NativeExtensionBindingsSystemUnittest*:'
2110 'BluetoothSocketApiUnittest.CreateThenClose:'
2111 'FeatureProviderTest.PermissionFeatureAvailability',
Sven Zheng5c9d3e342020-08-11 21:39:432112 ],
2113 },
Sven Zheng80734f12020-08-06 06:50:392114 },
Sven Zheng577fe5ff2020-08-03 22:06:442115 },
Chong Gu76046412021-09-22 17:49:212116 'gfx_unittests': {
Chong Gudf7fbe92021-02-24 02:55:582117 'modifications': {
2118 'fuchsia-code-coverage': {
2119 'swarming': {
2120 'shards': 2,
2121 },
2122 },
2123 },
2124 },
Kenneth Russelleb60cbd22017-12-05 07:54:282125 'gin_unittests': {
2126 'remove_from': [
Nico Weber1394523f2018-06-06 15:58:472127 'ToTLinuxASan', # https://crbug.com/831667
Erik Staabd468a802022-06-28 23:38:032128 'Linux ASan LSan Low Symbols FYI Tests (1)', # https://crbug.com/831667
Nico Weberd36959682018-04-12 03:33:462129 'Linux ASan LSan Tests (1)', # https://crbug.com/831667
Nico Weber1394523f2018-06-06 15:58:472130 'Linux Chromium OS ASan LSan Tests (1)', # https://crbug.com/831667
Kenneth Russelleb60cbd22017-12-05 07:54:282131 ],
Chong Gua10cd302022-01-14 19:22:192132 'modifications': {
2133 'fuchsia-fyi-x64-asan': {
2134 'args': [
2135 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.lsan.gin_unittests.filter',
2136 ],
2137 },
2138 },
Kenneth Russelleb60cbd22017-12-05 07:54:282139 },
Jonah Ryan-Davisdeeffeaf2020-06-18 17:56:002140 'gl_tests_passthrough': {
2141 'remove_from': [
2142 'CFI Linux ToT',
2143 # Can't run on MSAN because gl_tests uses the hardware driver,
2144 # which isn't instrumented.
2145 'Linux MSan Tests',
Ben Pastene7636bb62022-04-22 18:55:252146 'Linux MSan Focal',
Jonah Ryan-Davisdeeffeaf2020-06-18 17:56:002147 ],
2148 'modifications': {
2149 # TODO(kbr): figure out a better way to specify blocks of
2150 # arguments like this for tests on multiple machines.
Erik Staabd468a802022-06-28 23:38:032151 'Linux ASan LSan Low Symbols FYI Tests (1)': {
2152 'args': [
2153 '--use-gpu-in-tests',
2154 '--no-xvfb',
2155 ],
2156 'swarming': {
2157 'dimension_sets': [
2158 {
2159 'gpu': '10de:2184',
2160 'os': 'Ubuntu',
2161 'pool': 'chromium.tests.gpu',
2162 },
2163 ],
2164 },
2165 },
Garrett Beatya491ec72020-07-25 12:36:122166 'Linux ASan LSan Tests (1)': {
2167 'args': [
2168 '--use-gpu-in-tests',
2169 '--no-xvfb',
2170 ],
2171 'swarming': {
2172 'dimension_sets': [
2173 {
Yuly Novikovaa06f172022-02-12 00:38:572174 'gpu': '10de:2184',
Garrett Beatya491ec72020-07-25 12:36:122175 'os': 'Ubuntu',
2176 'pool': 'chromium.tests.gpu',
2177 },
2178 ],
2179 },
2180 },
2181 'Linux CFI': {
2182 'args': [
2183 '--use-gpu-in-tests',
2184 '--no-xvfb',
2185 ],
2186 'swarming': {
2187 'dimension_sets': [
2188 {
Yuly Novikovaa06f172022-02-12 00:38:572189 'gpu': '10de:2184',
Garrett Beatya491ec72020-07-25 12:36:122190 'os': 'Ubuntu',
2191 'pool': 'chromium.tests.gpu',
2192 },
2193 ],
2194 },
2195 },
Michael Savigny64f8ba32022-01-12 15:50:572196 'Linux CFI (reclient shadow)': {
2197 'args': [
2198 '--use-gpu-in-tests',
2199 '--no-xvfb',
2200 ],
2201 'swarming': {
2202 'dimension_sets': [
2203 {
Yuly Novikovaa06f172022-02-12 00:38:572204 'gpu': '10de:2184',
Michael Savigny64f8ba32022-01-12 15:50:572205 'os': 'Ubuntu',
2206 'pool': 'chromium.tests.gpu',
2207 },
2208 ],
2209 },
2210 },
Garrett Beatya491ec72020-07-25 12:36:122211 'Linux TSan Tests': {
2212 'args': [
2213 '--use-gpu-in-tests',
2214 '--no-xvfb',
2215 ],
2216 'swarming': {
2217 'dimension_sets': [
2218 {
Yuly Novikovaa06f172022-02-12 00:38:572219 'gpu': '10de:2184',
Garrett Beatya491ec72020-07-25 12:36:122220 'os': 'Ubuntu',
2221 'pool': 'chromium.tests.gpu',
2222 },
2223 ],
2224 },
2225 },
Jonah Ryan-Davisdeeffeaf2020-06-18 17:56:002226 },
2227 },
Jonah Ryan-Davise25a89f2020-05-29 20:18:242228 'gl_tests_validating': {
Jonah Ryan-Davisb9f03ac2021-03-18 23:53:022229 'remove_from': [
Kenneth Russell8a386d42018-06-02 09:48:012230 'Android FYI Release (Nexus 5X)',
John Budorickca14c76f62017-12-09 14:19:182231 ],
Kenneth Russelleb60cbd22017-12-05 07:54:282232 'modifications': {
Sunny Sachanandanib5c6c082022-09-29 00:26:142233 'Android FYI Release (Samsung A23)': {
2234 'args': [
2235 '--test-launcher-filter-file=../../testing/buildbot/filters/android.samsung_a23.gl_tests.filter',
2236 ],
2237 },
Haiyang Pan9d68ca02021-08-04 21:30:472238 'android-11-x86-rel': {
Haiyang Pancf765862021-03-18 20:39:152239 'args': [
2240 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.gl_tests.filter',
2241 ],
2242 },
Haiyang Pan2a55a452022-03-03 08:18:332243 'android-12-x64-rel': {
Haiyang Pan382008922021-11-19 21:15:092244 'args': [
2245 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.gl_tests.filter',
2246 ],
2247 },
Haiyang Panb991f562021-08-10 17:46:462248 'android-marshmallow-x86-rel': {
John Budorick79ec9012020-01-08 21:56:312249 'args': [
2250 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.gl_tests.filter',
2251 ],
2252 },
James Shenc47f7b12022-07-07 23:42:412253 'android-nougat-x86-rel': {
2254 'args': [
2255 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_n.gl_tests.filter',
2256 ],
2257 },
Andrew Luo38b311f2019-10-04 03:42:092258 'android-pie-arm64-rel': {
John Budorick79ec9012020-01-08 21:56:312259 'args': [
Andrew Luobe83fd82019-12-19 03:07:582260 '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_arm64_rel.gl_tests.filter', # https://crbug.com/1034007
2261 ],
Andrew Luo38b311f2019-10-04 03:42:092262 },
Haiyang Pan08d09dc2020-04-01 16:11:212263 'android-pie-x86-rel': {
John Budorick79ec9012020-01-08 21:56:312264 'args': [
2265 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.gl_tests.filter',
2266 ],
2267 },
Kenneth Russelleb60cbd22017-12-05 07:54:282268 },
2269 },
Takuto Ikutaf5333252019-11-06 16:07:082270 'gl_unittests': {
2271 'remove_from': [
Takuto Ikutaf5333252019-11-06 16:07:082272 # On Android, these are already run on the main waterfall.
2273 # Run them on the one-off Android FYI bots, though.
2274 'Android FYI Release (Nexus 5X)',
Yuly Novikov37e04342020-05-29 00:52:042275 # Can't run on MSAN because gl_unittests uses the hardware driver,
2276 # which isn't instrumented.
2277 'Linux MSan Tests',
Ben Pastene7636bb62022-04-22 18:55:252278 'Linux MSan Focal',
Takuto Ikutaf5333252019-11-06 16:07:082279 ],
Haiyang Pan505fcd5a2021-12-13 19:46:232280 'modifications': {
Haiyang Pan2a55a452022-03-03 08:18:332281 'android-12-x64-rel': {
Haiyang Pan505fcd5a2021-12-13 19:46:232282 'args': [
2283 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.gl_unittests.filter',
2284 ],
2285 },
2286 },
Takuto Ikutaf5333252019-11-06 16:07:082287 },
2288 'gl_unittests_ozone': {
2289 'remove_from': [
2290 # Can't run on MSAN because gl_unittests_ozone uses the hardware driver,
2291 # which isn't instrumented.
2292 'Linux ChromiumOS MSan Tests',
Ben Pastene7636bb62022-04-22 18:55:252293 'Linux ChromiumOS MSan Focal',
Takuto Ikutaf5333252019-11-06 16:07:082294 ],
2295 },
Brian Sheedy0bf7f822022-07-21 17:44:432296 'gold_common_pytype': {
2297 'remove_from': [
2298 'linux-code-coverage',
2299 ],
2300 },
Takuto Ikutaf5333252019-11-06 16:07:082301 'gpu_process_launch_tests': {
2302 # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2)
2303 # exception once there is enough capacity to run these tests.
2304 'remove_from': [
Takuto Ikutaf5333252019-11-06 16:07:082305 'Android FYI Release (Pixel 2)',
2306 ],
2307 },
Brian Sheedy053d88cf2022-05-24 23:40:052308 'gpu_pytype': {
2309 'remove_from': [
2310 'linux-code-coverage',
2311 ],
2312 },
Chong Gu76046412021-09-22 17:49:212313 'gpu_unittests': {
Chong Gudf7fbe92021-02-24 02:55:582314 'modifications': {
2315 'fuchsia-code-coverage': {
2316 'swarming': {
2317 'shards': 5,
2318 },
2319 },
2320 },
2321 },
Kevin McNeed21a6c522021-06-14 21:27:252322 'grit_python_unittests': {
2323 'remove_from': [
2324 # These tests require node, which is not supported in Win7.
2325 # (https://crbug.com/1218989)
2326 'Win 7 Tests x64 (1)',
2327 'Win7 Tests (1)',
Titouan Rigoudy9e860832021-11-08 15:34:452328 # TODO(https://crbug.com/1267125): Re-enable.
2329 'mac11-arm64-rel-tests',
Zhaoyang Li5d3713d2022-06-13 18:01:172330 # TODO(https://crbug.com/1267125): Re-enable.
2331 'mac12-arm64-rel-tests',
Kevin McNeed21a6c522021-06-14 21:27:252332 ],
2333 },
Brian Sheedye285c9b2019-07-15 21:42:462334 'hardware_accelerated_feature_tests': {
2335 # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2)
2336 # exception once there is enough capacity to run these tests.
2337 'remove_from': [
Brian Sheedye285c9b2019-07-15 21:42:462338 'Android FYI Release (Pixel 2)',
2339 ],
2340 },
Brad Halla36886c2019-02-26 16:52:292341 'headless_browsertests': {
Chong Gud08d1232021-09-11 08:53:592342 'remove_from': [
2343 'CrWinAsan(dll)', # https://crbug.com/935598
Maksim Sisovc81d284c2021-10-05 17:54:352344 # Wayland bot doesn't support headless mode.
2345 'Linux Tests (Wayland)',
Chong Gud08d1232021-09-11 08:53:592346 ],
Chong Gud1a5c5992021-04-09 04:08:322347 'modifications': {
2348 'fuchsia-code-coverage': {
2349 'swarming': {
Chong Gu115ce152021-04-15 23:57:162350 'shards': 6,
Chong Gud1a5c5992021-04-09 04:08:322351 },
2352 },
2353 },
Brad Halla36886c2019-02-26 16:52:292354 },
Kenneth Russell8a386d42018-06-02 09:48:012355 'info_collection_tests': {
2356 'remove_from': [
Kenneth Russell8a386d42018-06-02 09:48:012357 'Android V8 FYI Release (Nexus 5X)',
2358 'Linux V8 FYI Release (NVIDIA)',
Michael Achenbach5fdfc67b2018-12-13 13:26:352359 'Linux V8 FYI Release - pointer compression (NVIDIA)',
Kenneth Russell8a386d42018-06-02 09:48:012360 'Mac V8 FYI Release (Intel)',
2361 'Win V8 FYI Release (NVIDIA)',
2362 ],
Brian Sheedyfe61cdac2020-02-12 01:25:592363 'modifications': {
Brian Sheedyb18cb762020-06-30 00:09:292364 'ChromeOS FYI Release (amd64-generic)': {
Brian Sheedy65be3052020-06-26 19:26:512365 'args': [
Brian Sheedyb18cb762020-06-30 00:09:292366 # Swarming does not report a GPU since tests are run in a VM, but
2367 # the VM does report that a GPU is present.
2368 '--expected-device-id', '1050',
Brian Sheedydf2672f2020-05-07 20:44:362369 ],
2370 },
Chong Gu3065cdc2022-02-28 21:03:032371 'fuchsia-fyi-x64-rel': {
2372 'args': [
2373 # Swarming does not report a GPU since tests are run in a VM, but
2374 # the VM does report that a GPU is present.
2375 '--expected-device-id', 'c0de',
2376 ],
2377 },
2378 'fuchsia-fyi-x64-wst': {
2379 'args': [
2380 # Swarming does not report a GPU since tests are run in a VM, but
2381 # the VM does report that a GPU is present.
2382 '--expected-device-id', 'c0de',
2383 ],
2384 },
Brian Sheedyfe61cdac2020-02-12 01:25:592385 },
Brian Sheedy32eeeb52020-05-22 01:49:372386 'replacements': {
2387 'ChromeOS FYI Release (amd64-generic)': {
2388 'args': {
2389 # Swarming does not report a GPU since tests are run in a VM, but
2390 # the VM does report that a GPU is present.
2391 '--expected-vendor-id': '1af4',
Brian Sheedyb18cb762020-06-30 00:09:292392 # Magic substitution happens after regular replacement, so remove it
2393 # now since we are manually applying the expected device ID above.
2394 '$$MAGIC_SUBSTITUTION_GPUExpectedDeviceId': None,
Brian Sheedy32eeeb52020-05-22 01:49:372395 },
Brian Sheedyff6d1442020-09-19 00:46:312396 },
Brian Sheedye9c7afe52022-06-13 21:19:372397 'Mac FYI Experimental Release (Apple M1)': {
2398 'args': {
2399 # The GPU information is not yet exposed in swarming, so we can't
2400 # explicitly request it and have the JSON generation handle this
2401 # automatically.
2402 '--expected-vendor-id': '106b',
2403 },
2404 },
Brian Sheedy177addbf2021-09-24 19:06:512405 'Mac FYI Release (Apple M1)': {
2406 'args': {
2407 # The GPU information is not yet exposed in swarming, so we can't
2408 # explicitly request it and have the JSON generation handle this
2409 # automatically.
2410 '--expected-vendor-id': '106b',
2411 },
2412 },
Chong Gu3065cdc2022-02-28 21:03:032413 'fuchsia-fyi-x64-rel': {
2414 'args': {
2415 # The GPU information is not exposed in swarming since Fuchsia
2416 # launches an emulator on the GCE machine.
2417 '--expected-vendor-id': '1ae0',
2418 '$$MAGIC_SUBSTITUTION_GPUExpectedDeviceId': None,
2419 },
2420 },
2421 'fuchsia-fyi-x64-wst': {
2422 'args': {
2423 # The GPU information is not exposed in swarming since Fuchsia
2424 # launches an emulator on the GCE machine.
2425 '--expected-vendor-id': '1ae0',
2426 '$$MAGIC_SUBSTITUTION_GPUExpectedDeviceId': None,
2427 },
2428 },
Brian Sheedy32eeeb52020-05-22 01:49:372429 },
Kenneth Russell8a386d42018-06-02 09:48:012430 },
Kenneth Russelleb60cbd22017-12-05 07:54:282431 'interactive_ui_tests': {
Brad Halla36886c2019-02-26 16:52:292432 'remove_from': [
Brad Halla36886c2019-02-26 16:52:292433 'CrWinAsan(dll)', # https://crbug.com/935598
2434 ],
Kenneth Russelleb60cbd22017-12-05 07:54:282435 'modifications': {
Stephen Martinis1384ff92020-01-07 19:52:152436 'Linux - Future (dbg)': { # client.v8.chromium
Nico Weberdae13cd92018-12-14 13:56:262437 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:152438 'shards': 3,
Nico Weberdae13cd92018-12-14 13:56:262439 },
2440 },
Erik Staabd468a802022-06-28 23:38:032441 'Linux ASan LSan Low Symbols FYI Tests (1)': {
2442 # These are slow on the ASan trybot for some reason, crbug.com/1257927
2443 'swarming': {
2444 'shards': 6,
2445 'quickrun_shards': 12,
2446 },
2447 },
John Budorickca14c76f62017-12-09 14:19:182448 'Linux ASan LSan Tests (1)': {
Ben Pastened2c01af2022-01-31 23:06:442449 # These are slow on the ASan trybot for some reason, crbug.com/1257927
Nico Weber96a75a6942018-06-20 04:53:172450 'swarming': {
2451 'shards': 6,
Struan Shrimptone772d72f2021-12-15 07:50:092452 'quickrun_shards': 12,
Nico Weber96a75a6942018-06-20 04:53:172453 },
2454 },
Pavol Marko05b6bb92022-03-21 12:33:292455 'Linux Chromium OS ASan LSan Tests (1)': {
2456 # These are slow on the ASan trybot for some reason, crbug.com/1257927
2457 'swarming': {
2458 'shards': 6,
2459 'quickrun_shards': 12,
2460 },
2461 },
Ben Pastene7636bb62022-04-22 18:55:252462 'Linux ChromiumOS MSan Focal': {
2463 # These are very slow on the Chrome OS MSAN trybot for some reason.
2464 # crbug.com/865455
2465 'swarming': {
2466 'shards': 5,
2467 },
2468 },
Takuto Ikuta54671d972018-07-19 19:06:352469 'Linux ChromiumOS MSan Tests': {
2470 # These are very slow on the Chrome OS MSAN trybot for some reason.
2471 # crbug.com/865455
2472 'swarming': {
2473 'shards': 5,
2474 },
2475 },
Stephen Martinis1384ff92020-01-07 19:52:152476 'Linux TSan Tests': {
Ben Pastened2c01af2022-01-31 23:06:442477 # These are slow on the TSan bots for some reason, crbug.com/1257927
Dirk Pranke8fd63c12017-12-10 18:06:272478 'swarming': {
Stephen Martinisad6cb7af2021-02-24 01:12:002479 'shards': 32, # Adjusted for testing, see https://crbug.com/1179567
Dirk Pranke8fd63c12017-12-10 18:06:272480 },
2481 },
Maksim Sisovc81d284c2021-10-05 17:54:352482 # https://crbug.com/1192997
2483 'Linux Tests (Wayland)': {
2484 'args': [
2485 '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.interactive_ui_tests_wayland.filter',
2486 ],
2487 },
Lindsay Pasrichab3f72db2021-09-22 22:05:462488 'Mac ASan 64 Tests (1)': { # https://crbug.com/1251656
2489 'experiment_percentage': 100,
2490 },
Struan Shrimptone772d72f2021-12-15 07:50:092491 'Mac11 Tests': {
2492 'swarming': {
2493 'quickrun_shards': 6,
2494 },
2495 },
Yue She0cad2922022-06-24 15:06:072496 'Mac12 Tests': {
2497 'swarming': {
2498 'quickrun_shards': 6,
2499 },
2500 },
Cameron Higgins7558b162022-06-10 18:53:072501 'Mac12 Tests (dbg)': { # https://crbug.com/1265051
Zhaoyang Li9357e1e12021-12-07 18:53:172502 'experiment_percentage': 100,
2503 },
Stephen Martinis1384ff92020-01-07 19:52:152504 'ToTLinuxTSan': {
Ben Pastened2c01af2022-01-31 23:06:442505 # These are slow on the TSan bots for some reason, crbug.com/1257927
Stephen Martinis1384ff92020-01-07 19:52:152506 'swarming': {
2507 'shards': 6,
2508 },
2509 },
Struan Shrimptona1ab7672022-01-13 18:02:512510 'Win10 Tests x64': {
2511 'swarming': {
Struan Shrimptonf5b2b552022-01-20 20:37:392512 'quickrun_shards': 8,
Struan Shrimptona1ab7672022-01-13 18:02:512513 },
2514 },
Stephen Martinis1384ff92020-01-07 19:52:152515 # temporary, https://crbug.com/818832
Greg Thompson3eb7e6522018-05-25 09:04:032516 'Win10 Tests x64 (dbg)': {
2517 'experiment_percentage': 100,
2518 },
Jacob Kopczynski3a555bd32020-12-10 01:41:162519 # TODO(crbug.com/970649): Remove these filters.
Ben Pastene8ef125e2019-12-10 01:46:292520 'linux-chromeos-chrome': {
Ben Pastene8ef125e2019-12-10 01:46:292521 'args': [
2522 '--gtest_filter=-SadTabViewInteractiveUITest.ReloadMultipleSadTabs',
2523 ],
2524 },
Stephen Martinis1384ff92020-01-07 19:52:152525 'linux-chromeos-code-coverage': {
Yuke Liao79424e42020-01-06 21:00:112526 'swarming': {
2527 'shards': 10,
2528 },
2529 },
Pavol Marko582a15d2022-04-01 12:47:202530 'linux-chromeos-dbg': {
2531 'swarming': {
2532 'shards': 6,
2533 },
2534 },
Stephen Martinis1384ff92020-01-07 19:52:152535 'linux-code-coverage': {
Yuke Liao79424e42020-01-06 21:00:112536 'swarming': {
2537 'shards': 10,
2538 },
2539 },
Kuan Huang235b0142021-10-19 18:59:282540 'mac-code-coverage': {
2541 'args': [
2542 '--coverage-continuous-mode=1',
2543 ],
2544 },
Lindsay Pasricha60535a22021-12-13 16:50:242545 # TODO (crbug.com/1278617) Re-enable once fixed
2546 'mac-osxbeta-rel': {
2547 'experiment_percentage': 100,
2548 },
Kenneth Russelleb60cbd22017-12-05 07:54:282549 },
2550 },
Sven Zhengef0d0872022-04-04 22:13:292551 'interactive_ui_tests amd64-generic': {
Yuke Liaob6beaeca2021-04-29 23:41:512552 'remove_from': [
2553 # TODO(crbug.com/1204231): Re-enable.
2554 'lacros-amd64-generic-rel',
Yuke Liao859819d2022-02-24 08:23:492555 'lacros-amd64-generic-rel-fyi',
Yuke Liaob6beaeca2021-04-29 23:41:512556 ]
2557 },
Sven Zhengef0d0872022-04-04 22:13:292558 'interactive_ui_tests eve': {
Yuke Liao79a8cf52021-06-11 18:14:342559 'remove_from': [
2560 # TODO(crbug.com/1204231): Re-enable.
2561 'lacros-amd64-generic-rel',
Yuke Liao859819d2022-02-24 08:23:492562 'lacros-amd64-generic-rel-fyi',
Yuke Liao79a8cf52021-06-11 18:14:342563 ]
2564 },
John Budorickf00e5ff2019-06-11 21:21:062565 'ipc_tests': {
2566 'modifications': {
Ken Rockot83999b62022-05-20 21:37:052567 'Linux ChromiumOS MSan Tests': {
2568 'swarming': {
2569 'dimension_sets': [
2570 {
2571 'cpu': 'x86-64',
2572 'os': 'Ubuntu-18.04',
2573 },
2574 ],
2575 },
2576 },
2577 'Linux MSan Tests': {
2578 'swarming': {
2579 'dimension_sets': [
2580 {
2581 'cpu': 'x86-64',
2582 'os': 'Ubuntu-18.04',
2583 },
2584 ],
2585 },
2586 },
John Budorickf00e5ff2019-06-11 21:21:062587 'android-asan': {
2588 'swarming': {
2589 'shards': 2,
2590 },
2591 },
2592 },
2593 },
Jieting Yange63d9cf2022-09-20 21:57:502594 'lacros_all_tast_tests jacuzzi': {
2595 'modifications': {
2596 'lacros-arm-generic-chrome': {
2597 'experiment_percentage': 100,
2598 },
2599 },
2600 },
Jonah Ryan-Davis832c8462020-06-09 03:45:032601 'maps_pixel_passthrough_test': {
Brian Sheedyc0c142c2021-06-01 21:18:052602 'modifications': {
2603 'Android FYI Release (Pixel 4)': {
2604 'args': [
2605 # Pixel 4s are weird in that they can output in different color spaces
2606 # simultaneously. The readback code for capturing a screenshot assumes
2607 # only one color space, so disable wide color gamut for the test to
2608 # work around the issue. See https://crbug.com/1166379 for more
2609 # information.
2610 '--extra-browser-args=--disable-wcg-for-test',
2611 ],
2612 },
Ben Pastene63f13302022-05-12 21:04:052613 'android_optional_gpu_tests_rel': {
2614 'args': [
2615 # See above.
2616 '--extra-browser-args=--disable-wcg-for-test',
2617 ],
2618 },
Brian Sheedyc0c142c2021-06-01 21:18:052619 },
Jonah Ryan-Davis832c8462020-06-09 03:45:032620 'replacements': {
2621 # The V8 builders pass the V8 revision for ${got_revision}, so instead
2622 # use ${got_cr_revision}, which is only set on the V8 bots.
2623 'Linux V8 FYI Release (NVIDIA)': {
2624 'args': {
2625 '--git-revision': '${got_cr_revision}',
2626 },
2627 },
2628 'Linux V8 FYI Release - pointer compression (NVIDIA)': {
2629 'args': {
2630 '--git-revision': '${got_cr_revision}',
2631 },
2632 },
Jonah Ryan-Davisdeeffeaf2020-06-18 17:56:002633 'Mac V8 FYI Release (Intel)': {
2634 'args': {
2635 '--git-revision': '${got_cr_revision}',
2636 },
2637 },
Jonah Ryan-Davis832c8462020-06-09 03:45:032638 'Win V8 FYI Release (NVIDIA)': {
2639 'args': {
2640 '--git-revision': '${got_cr_revision}',
2641 },
2642 },
2643 },
2644 },
2645 'maps_pixel_validating_test': {
Brian Sheedy0566f2cb2021-02-12 22:12:502646 'modifications': {
2647 'Android FYI Release (Pixel 4)': {
2648 'args': [
2649 # Pixel 4s are weird in that they can output in different color spaces
2650 # simultaneously. The readback code for capturing a screenshot assumes
2651 # only one color space, so disable wide color gamut for the test to
2652 # work around the issue. See https://crbug.com/1166379 for more
2653 # information.
2654 '--extra-browser-args=--disable-wcg-for-test',
2655 ],
2656 },
Ben Pastene63f13302022-05-12 21:04:052657 'android_optional_gpu_tests_rel': {
2658 'args': [
2659 # See above.
2660 '--extra-browser-args=--disable-wcg-for-test',
2661 ],
2662 },
Brian Sheedy0566f2cb2021-02-12 22:12:502663 },
Brian Sheedye285c9b2019-07-15 21:42:462664 # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2)
2665 # exception once there is enough capacity to run these tests.
2666 'remove_from': [
Brian Sheedye285c9b2019-07-15 21:42:462667 'Android FYI Release (Pixel 2)',
2668 ],
Brian Sheedy44fd891b2019-10-03 20:07:542669 'replacements': {
Brian Sheedy44fd891b2019-10-03 20:07:542670 # The V8 builders pass the V8 revision for ${got_revision}, so instead
2671 # use ${got_cr_revision}, which is only set on the V8 bots.
2672 'Android V8 FYI Release (Nexus 5X)': {
2673 'args': {
Brian Sheedy4d335deb2020-04-01 20:47:322674 '--git-revision': '${got_cr_revision}',
Brian Sheedy44fd891b2019-10-03 20:07:542675 },
2676 },
Brian Sheedy44fd891b2019-10-03 20:07:542677 },
Brian Sheedye285c9b2019-07-15 21:42:462678 },
Andrew Luo38b311f2019-10-04 03:42:092679 'media_unittests': {
2680 'modifications': {
Haiyang Pan9d68ca02021-08-04 21:30:472681 'android-11-x86-rel': {
Haiyang Pancf765862021-03-18 20:39:152682 'args': [
Haiyang Pan80b0d412021-11-23 00:06:422683 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11_12.media_unittests.filter',
2684 ],
2685 },
Haiyang Pan2a55a452022-03-03 08:18:332686 'android-12-x64-rel': {
Haiyang Pan80b0d412021-11-23 00:06:422687 'args': [
2688 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11_12.media_unittests.filter',
Haiyang Pancf765862021-03-18 20:39:152689 ],
2690 },
Haiyang Pan2486dcb2020-09-18 17:53:062691 'android-marshmallow-x86-rel-non-cq': {
John Budorickb5185112020-01-08 22:40:212692 'args': [
Haiyang Pan569659f02020-05-30 00:48:452693 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_m.media_unittests.filter',
John Budorickb5185112020-01-08 22:40:212694 ],
2695 },
Andrew Luo38b311f2019-10-04 03:42:092696 'android-pie-arm64-rel': {
Andrew Luobe83fd82019-12-19 03:07:582697 'args': [
2698 '--gtest_filter=-AAudio/AudioOutputTest.Play200HzTone/0', # https://crbug.com/1034009
2699 ],
Andrew Luo38b311f2019-10-04 03:42:092700 },
Chong Gudf7fbe92021-02-24 02:55:582701 'fuchsia-code-coverage': {
2702 'swarming': {
2703 'shards': 3,
2704 },
2705 },
Chong Gub2446462021-08-19 18:44:082706 'fuchsia-fyi-arm64-dbg': {
2707 'args': [
2708 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.debug.media_unittests.filter',
2709 ],
2710 },
Andrew Luo38b311f2019-10-04 03:42:092711 },
2712 },
Chong Gu4eca1ce2021-05-17 08:49:572713 'mediapipe_validating_tests': {
Chong Guabe5adec02022-03-24 17:41:302714 'modifications': { # TODO(crbug.com/1201887): Remove once tests are stable.
2715 'fuchsia-fyi-x64-rel': {
2716 'experiment_percentage': 100,
2717 },
2718 },
Chong Gu4eca1ce2021-05-17 08:49:572719 'remove_from': [
2720 # TODO(crbug.com/1201887): Remove once tests are stable.
2721 'Fuchsia x64',
David Dorwin49b2ddb2022-09-08 20:49:432722 'fuchsia-x64-cast-receiver-rel',
2723 'fuchsia-x64-rel',
Chong Gu4eca1ce2021-05-17 08:49:572724 ],
2725 },
Ben Joyce02dc8092021-03-04 21:48:192726 'mojo_test_apk': {
2727 'remove_from': [
2728 'android-code-coverage-native', # Does not generate profraw data.
Ben Joyce46ca6012021-03-31 19:19:252729 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data.
Ben Joyce02dc8092021-03-04 21:48:192730 ],
2731 },
John Budorickf00e5ff2019-06-11 21:21:062732 'mojo_unittests': {
2733 'modifications': {
2734 'android-asan': {
2735 'swarming': {
John Budorick5a29d7542019-10-11 20:56:442736 'shards': 5,
John Budorickf00e5ff2019-06-11 21:21:062737 },
2738 },
Chong Gudf7fbe92021-02-24 02:55:582739 'fuchsia-code-coverage': {
2740 'swarming': {
2741 'shards': 2,
2742 },
2743 },
John Budorickf00e5ff2019-06-11 21:21:062744 },
2745 },
bsheedye9469572019-01-23 17:31:332746 'monochrome_public_test_ar_apk': {
2747 'modifications': {
Brian Sheedy12169aa2019-10-16 23:38:032748 'Nougat Phone Tester': {
2749 'args': [
2750 # ArCore is not installed as a system app on N, so we can install it
2751 # normally instead of replacing the system version.
2752 '--additional-apk=//third_party/arcore-android-sdk/test-apks/arcore/arcore_current.apk'
2753 ],
2754 },
bsheedye9469572019-01-23 17:31:332755 # We need to match the Playstore version as well because AR tests fail on
2756 # old versions of the Playstore.
2757 'Oreo Phone Tester': {
Brian Sheedy2bcd16b2019-04-22 22:47:082758 'args': [
2759 # ArCore is not installed as a system app on O, so we can install it
2760 # normally instead of replacing the system version.
2761 '--additional-apk=//third_party/arcore-android-sdk/test-apks/arcore/arcore_current.apk'
2762 ],
bsheedye9469572019-01-23 17:31:332763 'swarming': {
2764 'dimension_sets': [
2765 {
2766 'device_os': 'OPR3.170623.008',
bsheedye9469572019-01-23 17:31:332767 'device_type': 'marlin',
2768 'os': 'Android',
2769 },
2770 ],
2771 },
2772 },
Haiyang Pan57159eba2020-05-07 23:14:132773 'android-10-arm64-rel': {
2774 'args': [
Brian Sheedy4dc4a6f2020-09-17 22:18:502775 '--remove-system-package=com.google.ar.core',
2776 '--additional-apk=//third_party/arcore-android-sdk/test-apks/arcore/arcore_current.apk',
Haiyang Pan57159eba2020-05-07 23:14:132777 ]
2778 },
Brian Sheedy2bcd16b2019-04-22 22:47:082779 'android-pie-arm64-dbg': {
2780 'args': [
Brian Sheedy4dc4a6f2020-09-17 22:18:502781 '--remove-system-package=com.google.ar.core',
2782 '--additional-apk=//third_party/arcore-android-sdk/test-apks/arcore/arcore_current.apk',
Brian Sheedy2bcd16b2019-04-22 22:47:082783 ]
2784 }
bsheedye9469572019-01-23 17:31:332785 },
2786 },
Kenneth Russellfbda3c532017-12-08 23:57:242787 'nacl_loader_unittests': {
2788 'remove_from': [
Nico Weber48f187142018-06-01 15:16:352789 'ToTMacASan', # The mac asan tot bot sets enable_nacl=false
Nico Weber3611ee802018-06-07 13:34:512790 'linux-win_cross-rel', # Sets enable_nacl=false, https://crbug.com/774186
Nico Webera8fc38f72018-04-10 02:20:112791 'Linux TSan Tests', # The TSan bot sets enable_nacl=false
Nico Weber05d3e642018-05-31 16:59:482792 'Mac ASan 64 Tests (1)', # The mac asan bot sets enable_nacl=false
Kenneth Russellfbda3c532017-12-08 23:57:242793 ],
2794 },
Kenneth Russelleb60cbd22017-12-05 07:54:282795 'net_unittests': {
2796 'modifications': {
Nico Weber33b9b7a2020-06-12 19:23:272797 'CrWinAsan': {
Ben Pastened2c01af2022-01-31 23:06:442798 # TODO(crbug.com/1257927): net_unittests is slow under ASan.
Nico Weber33b9b7a2020-06-12 19:23:272799 'swarming': {
2800 'shards': 16,
2801 },
2802 },
2803 'CrWinAsan(dll)': {
Ben Pastened2c01af2022-01-31 23:06:442804 # TODO(crbug.com/1257927): net_unittests is slow under ASan.
Nico Weber33b9b7a2020-06-12 19:23:272805 'swarming': {
2806 'shards': 16,
2807 },
2808 },
Erik Staabd468a802022-06-28 23:38:032809 'Linux ASan LSan Low Symbols FYI Tests (1)': {
2810 # These are very slow on the ASAN trybot for some reason.
2811 # crbug.com/1257927
2812 'swarming': {
2813 'shards': 16,
2814 },
2815 },
John Budorickca14c76f62017-12-09 14:19:182816 'Linux ASan LSan Tests (1)': {
John Budorick5052d552017-12-13 02:59:342817 # These are very slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:442818 # crbug.com/1257927
John Budorickca14c76f62017-12-09 14:19:182819 'swarming': {
John Budorick5052d552017-12-13 02:59:342820 'shards': 16,
John Budorickca14c76f62017-12-09 14:19:182821 },
2822 },
2823 'Linux Chromium OS ASan LSan Tests (1)': {
Takuto Ikuta54671d972018-07-19 19:06:352824 # These are very slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:442825 # crbug.com/1257927
John Budorickca14c76f62017-12-09 14:19:182826 'swarming': {
Sergey Berezinda3255c2018-03-16 00:34:022827 'shards': 8,
John Budorickca14c76f62017-12-09 14:19:182828 }
2829 },
Takuto Ikuta54671d972018-07-19 19:06:352830 'Linux ChromiumOS MSan Tests': {
2831 # These are very slow on the Chrome OS MSAN trybot for some reason.
2832 # crbug.com/865455
2833 'swarming': {
2834 'shards': 2,
2835 },
2836 },
John Budorickca14c76f62017-12-09 14:19:182837 'Linux TSan Tests': {
2838 'swarming': {
2839 'shards': 4,
2840 }
2841 },
Ben Pastene8bf205b2018-06-13 04:00:332842 # The suite runs signficantly slower on linux dbg, so increase shards.
2843 'Linux Tests (dbg)(1)': {
2844 'swarming': {
2845 'shards': 2,
2846 },
2847 },
Stephen Martinis1384ff92020-01-07 19:52:152848 'ToTLinuxASan': {
Ben Pastened2c01af2022-01-31 23:06:442849 # TODO(crbug.com/1257927): net_unittests is slow under ASan.
Stephen Martinis1384ff92020-01-07 19:52:152850 'swarming': {
2851 'shards': 16,
2852 },
2853 },
2854 'ToTLinuxTSan': {
2855 'swarming': {
2856 'shards': 4,
2857 }
2858 },
Stefano Duof44278b2021-08-02 16:29:382859 'android-cronet-x86-dbg-10-tests': {
2860 'args': [
2861 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_10.net_unittests.filter',
2862 ],
2863 },
Chidera Olibie262e33e2022-03-02 11:45:282864 'android-cronet-x86-dbg-lollipop-tests': {
2865 'args': [
2866 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_l.net_unittests.filter',
2867 ],
2868 },
Chidera Olibieef99a55ca2021-10-01 21:42:002869 'android-cronet-x86-dbg-oreo-tests': {
2870 'args': [
2871 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.net_unittests.filter',
2872 ],
2873 },
Chidera Olibie509fd732021-09-30 20:17:172874 'android-cronet-x86-dbg-pie-tests': {
2875 # crbug.com/1046060
2876 'args': [
2877 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.net_unittests.filter',
2878 ],
2879 },
Chidera Olibie5c0ec912022-03-23 10:44:512880 'android-cronet-x86-rel-kitkat-tests': {
2881 'args': [
2882 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_k.net_unittests.filter',
2883 ],
2884 },
Haiyang Pan2486dcb2020-09-18 17:53:062885 'android-marshmallow-x86-rel-non-cq': {
John Budorick7fde6b492020-01-29 17:43:502886 # crbug.com/1046060
2887 'args': [
2888 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.net_unittests.filter',
2889 ],
2890 },
Haiyang Pan08d09dc2020-04-01 16:11:212891 'android-pie-x86-rel': {
John Budorick7fde6b492020-01-29 17:43:502892 # crbug.com/1046060
2893 'args': [
2894 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.net_unittests.filter',
2895 ],
2896 },
Struan Shrimpton4b7abc02021-12-16 01:36:592897 'chromeos-amd64-generic-rel': {
2898 'swarming': {
2899 'quickrun_shards': 6,
2900 },
2901 },
Chong Gu76046412021-09-22 17:49:212902 'fuchsia-code-coverage': {
2903 'swarming': {
2904 'shards': 14,
2905 },
2906 },
Ben Pastene8bf205b2018-06-13 04:00:332907 'linux-chromeos-dbg': {
2908 'swarming': {
2909 'shards': 2,
2910 },
2911 },
Lindsay Pasricha60535a22021-12-13 16:50:242912 # TODO (crbug.com/1278618) Re-enable once fixed
2913 'mac-osxbeta-rel': {
2914 'experiment_percentage': 0,
2915 },
Nico Weber33b9b7a2020-06-12 19:23:272916 'win-asan': {
Ben Pastened2c01af2022-01-31 23:06:442917 # TODO(crbug.com/1257927): net_unittests is slow under ASan.
Nico Weber33b9b7a2020-06-12 19:23:272918 'swarming': {
2919 'shards': 16,
2920 },
2921 },
Kenneth Russelleb60cbd22017-12-05 07:54:282922 },
2923 },
John Chenaab16fc02020-03-03 06:35:452924 'not_site_per_process_blink_web_tests': {
Lukasz Anforowicz04bc6302018-11-19 19:04:282925 'remove_from': [
Lukasz Anforowicz04bc6302018-11-19 19:04:282926 # TODO(dpranke): Should we be running this step on Linux Tests (dbg)(1)?
2927 'Linux Tests (dbg)(1)',
Lukasz Anforowicz04bc6302018-11-19 19:04:282928 ],
Yuke Liaobc9ff982019-04-30 06:56:162929 'modifications': {
Stephen Martinis1384ff92020-01-07 19:52:152930 'Linux Tests': {
2931 "args": [
2932 "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw",
Stephen Martinis1384ff92020-01-07 19:52:152933 ],
Struan Shrimpton57c594e42022-01-25 17:59:132934 'swarming': {
2935 'quickrun_shards': 18,
2936 },
Stephen Martinis1384ff92020-01-07 19:52:152937 },
Yuke Liaoea70f472019-12-19 06:03:362938 'linux-code-coverage': {
2939 'args': [
2940 '--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw',
Yuke Liaoea70f472019-12-19 06:03:362941 ],
2942 'swarming': {
2943 'shards': 20,
2944 },
2945 },
Yuke Liaobc9ff982019-04-30 06:56:162946 },
Lukasz Anforowicz04bc6302018-11-19 19:04:282947 },
Xi Cheng34ca4042018-02-23 00:10:122948 'notification_helper_unittests': {
2949 'remove_from': [
Hans Wennborg252643a2018-05-22 14:41:122950 # The test uses WinRT, which only exists in Windows 8 or above.
2951 # (https://crbug.com/813553)
Xi Cheng34ca4042018-02-23 00:10:122952 'Win 7 Tests x64 (1)',
Xi Cheng34ca4042018-02-23 00:10:122953 'Win7 Tests (1)',
Stephen Martinis1384ff92020-01-07 19:52:152954 # all these bots run Windows 7.
Xi Cheng34ca4042018-02-23 00:10:122955 'ToTWin',
2956 'ToTWin(dbg)',
2957 'ToTWin(dll)',
inglorionb8e7a3ed2019-04-12 09:49:032958 'ToTWinOfficial',
Arthur Eubanks0c24b822021-06-15 18:51:342959 'ToTWinOfficial64',
Xi Cheng34ca4042018-02-23 00:10:122960 'ToTWin64',
2961 'ToTWin64(dbg)',
2962 'ToTWin64(dll)',
Xi Cheng34ca4042018-02-23 00:10:122963 ],
2964 },
James Shenf4199bfd2022-08-13 00:44:272965 'oop_network_service_content_browsertests': {
2966 'modifications': {
2967 'android-12-x64-fyi-rel': {
2968 'args': [
2969 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.oop_network_service_content_browsertests.filter',
2970 ],
2971 },
2972 },
2973 },
Peter McNeeley3cfc0ec82021-12-08 20:36:242974 'overlay_prioritization_viz_unittests': {
2975 'remove_from': [
2976 # Reduce CQ load
2977 'Linux Tests (Wayland)',
2978 ],
2979 },
Ben Pastenee723b2f2019-05-31 19:10:272980 'ozone_unittests': {
2981 'modifications': {
Ben Pastene8ef125e2019-12-10 01:46:292982 'chromeos-betty-pi-arc-chrome': {
2983 'args': [
2984 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter',
2985 ],
2986 },
Ben Pastene500cc1d12021-01-22 18:10:472987 'chromeos-betty-pi-arc-chrome-dchecks': {
2988 'args': [
2989 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter',
2990 ],
2991 },
Ben Pastene8ef125e2019-12-10 01:46:292992 'linux-chromeos-chrome': {
2993 'args': [
2994 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter',
2995 ],
2996 },
Ben Pastenee723b2f2019-05-31 19:10:272997 },
2998 },
Maksim Sisovc81d284c2021-10-05 17:54:352999 'ozone_x11_unittests': {
3000 # Wayland bot uses chromium_linux_gtests that includes some x11 only
3001 # test targets. To avoid maintaining a list of tests, remove them here.
3002 'remove_from': [
3003 'Linux Tests (Wayland)',
3004 ],
3005 },
Karen Qian385d2ca2019-03-19 21:49:583006 'perfetto_unittests': {
Haiyang Pan0e27adbeb2021-12-14 22:44:303007 'modifications': {
Haiyang Pan2a55a452022-03-03 08:18:333008 'android-12-x64-rel': {
Haiyang Pan0e27adbeb2021-12-14 22:44:303009 'args': [
3010 # TODO(crbug.com/1260440): Fix the failed test
3011 '--gtest_filter=-ScopedDirTest.CloseOutOfScope',
3012 ],
3013 },
James Shen274775eb2022-07-06 22:54:433014 'android-nougat-x86-rel': {
3015 'args': [
3016 # TODO(crbug.com/1260440): Fix the failed test
3017 '--gtest_filter=-ScopedDirTest.CloseOutOfScope',
3018 ],
3019 },
Chong Gua10cd302022-01-14 19:22:193020 'fuchsia-fyi-x64-asan': {
3021 'args': [
Kevin Marshall847bf0332022-05-31 20:12:543022 # TODO(crbug.com/1199334): Error messages only show up in klog.
3023 '--gtest_filter=-PagedMemoryTest.AccessUncommittedMemoryTriggersASAN'
Chong Gua10cd302022-01-14 19:22:193024 ],
3025 },
Haiyang Pan0e27adbeb2021-12-14 22:44:303026 },
Karen Qian385d2ca2019-03-19 21:49:583027 'remove_from': [
Haiyang Pan363c59a2020-07-23 05:47:043028 # TODO(crbug.com/931138): Fix permission issue when creating tmp files
John Budorickd3fa5992019-12-13 17:22:413029 'android-arm64-proguard-rel',
John Budorickf2283d72019-06-25 01:09:093030 'android-asan',
Yun Liu022f4512019-06-10 23:14:043031 'android-code-coverage',
Yun Liu7cfd28a2019-10-30 01:57:123032 'android-code-coverage-native',
Karen Qian385d2ca2019-03-19 21:49:583033 'android-marshmallow-arm64-rel',
Haiyang Pan2486dcb2020-09-18 17:53:063034 'android-marshmallow-x86-rel-non-cq',
Ben Joyce46ca6012021-03-31 19:19:253035 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data.
Andrew Luo38b311f2019-10-04 03:42:093036 'android-pie-arm64-rel',
James Shenfddea932022-08-18 07:19:543037 'android-pie-x86-fyi-rel-reviver',
Haiyang Pan08d09dc2020-04-01 16:11:213038 'android-pie-x86-rel',
Haiyang Pan9d68ca02021-08-04 21:30:473039 'android-11-x86-rel',
Karen Qian385d2ca2019-03-19 21:49:583040 'Marshmallow 64 bit Tester',
3041 'Marshmallow Tablet Tester',
3042 'Nougat Phone Tester',
Arthur Eubanksc8f86ee2021-05-10 20:14:243043 'ToTAndroid'
Karen Qian385d2ca2019-03-19 21:49:583044 ]
3045 },
Stephen Martinis54d64ad2018-09-21 22:16:203046 'performance_test_suite': {
3047 'modifications': {
Cameron Higgins7558b162022-06-10 18:53:073048 'Mac12 Tests (dbg)': {
Zhaoyang Li9357e1e12021-12-07 18:53:173049 'args': [
3050 '--browser=debug',
3051 ],
3052 },
Stephen Martinis54d64ad2018-09-21 22:16:203053 'Win10 Tests x64 (dbg)': {
3054 'args': [
Takuto Ikutab28b582e2021-02-10 01:41:213055 '--browser=debug_x64',
Stephen Martinis54d64ad2018-09-21 22:16:203056 ],
3057 'experiment_percentage': 100,
3058 },
Stephen Martinis54d64ad2018-09-21 22:16:203059 },
3060 },
Jonah Ryan-Davis832c8462020-06-09 03:45:033061 'pixel_skia_gold_passthrough_test': {
Brian Sheedyc0c142c2021-06-01 21:18:053062 'modifications': {
3063 'Android FYI Release (Pixel 4)': {
3064 'args': [
3065 # Pixel 4s are weird in that they can output in different color spaces
3066 # simultaneously. The readback code for capturing a screenshot assumes
3067 # only one color space, so disable wide color gamut for the test to
3068 # work around the issue. See https://crbug.com/1166379 for more
3069 # information.
3070 '--extra-browser-args=--disable-wcg-for-test',
3071 ],
3072 },
Struan Shrimptone772d72f2021-12-15 07:50:093073 'Mac Retina Release (AMD)': {
3074 'swarming': {
3075 'quickrun_shards': 2,
3076 },
3077 },
Struan Shrimpton4b7abc02021-12-16 01:36:593078 'Win10 x64 Release (NVIDIA)': {
3079 'swarming': {
3080 'quickrun_shards': 2,
3081 },
3082 },
Ben Pastene63f13302022-05-12 21:04:053083 'android_optional_gpu_tests_rel': {
3084 'args': [
3085 # See above.
3086 '--extra-browser-args=--disable-wcg-for-test',
3087 ],
3088 },
Brian Sheedyc0c142c2021-06-01 21:18:053089 },
Jonah Ryan-Davis832c8462020-06-09 03:45:033090 'replacements': {
3091 # The V8 builders pass the V8 revision for ${got_revision}, so instead
3092 # use ${got_cr_revision}, which is only set on the V8 bots.
3093 'Linux V8 FYI Release (NVIDIA)': {
3094 'args': {
3095 '--git-revision': '${got_cr_revision}',
3096 },
3097 },
3098 'Linux V8 FYI Release - pointer compression (NVIDIA)': {
3099 'args': {
3100 '--git-revision': '${got_cr_revision}',
3101 },
3102 },
Jonah Ryan-Davisdeeffeaf2020-06-18 17:56:003103 'Mac V8 FYI Release (Intel)': {
3104 'args': {
3105 '--git-revision': '${got_cr_revision}',
3106 },
3107 },
Jonah Ryan-Davis832c8462020-06-09 03:45:033108 'Win V8 FYI Release (NVIDIA)': {
3109 'args': {
3110 '--git-revision': '${got_cr_revision}',
3111 },
3112 },
3113 },
3114 },
3115 'pixel_skia_gold_validating_test': {
Brian Sheedy0566f2cb2021-02-12 22:12:503116 'modifications': {
3117 'Android FYI Release (Pixel 4)': {
3118 'args': [
3119 # Pixel 4s are weird in that they can output in different color spaces
3120 # simultaneously. The readback code for capturing a screenshot assumes
3121 # only one color space, so disable wide color gamut for the test to
3122 # work around the issue. See https://crbug.com/1166379 for more
3123 # information.
3124 '--extra-browser-args=--disable-wcg-for-test',
3125 ],
3126 },
Ben Pastene63f13302022-05-12 21:04:053127 'android_optional_gpu_tests_rel': {
3128 'args': [
3129 # See above.
3130 '--extra-browser-args=--disable-wcg-for-test',
3131 ],
3132 },
Chong Guabe5adec02022-03-24 17:41:303133 'fuchsia-fyi-x64-rel': { # https://crbug.com/1302427
3134 'experiment_percentage': 100,
3135 },
Brian Sheedy0566f2cb2021-02-12 22:12:503136 },
Chong Gu0aa929e62022-03-03 15:34:133137 'remove_from': [
David Dorwin49b2ddb2022-09-08 20:49:433138 # TODO(https://crbug.com/1302427): Remove once tests pass.
3139 'Fuchsia x64',
3140 'fuchsia-x64-cast-receiver-rel',
3141 'fuchsia-x64-rel',
Chong Gu0aa929e62022-03-03 15:34:133142 ],
Brian Sheedye6ea0ee2019-07-11 02:54:373143 'replacements': {
Brian Sheedye6ea0ee2019-07-11 02:54:373144 # The V8 builders pass the V8 revision for ${got_revision}, so instead
3145 # use ${got_cr_revision}, which is only set on the V8 bots.
3146 'Android V8 FYI Release (Nexus 5X)': {
3147 'args': {
Brian Sheedy4d335deb2020-04-01 20:47:323148 '--git-revision': '${got_cr_revision}',
Brian Sheedye6ea0ee2019-07-11 02:54:373149 },
3150 },
Brian Sheedye6ea0ee2019-07-11 02:54:373151 },
3152 },
3153 'pixel_test':{
Takuto Ikuta35c85522019-06-04 16:55:463154 'modifications': {
3155 'Android Release (Nexus 5X)': {
3156 'swarming': {
3157 'shards': 2,
3158 },
3159 },
3160 },
Nico Weber128fd382018-06-14 23:29:273161 },
Henrique Nakashima87b6d8b2022-07-13 13:59:043162 'sandbox_linux_unittests': {
John Budorickdce9d462019-03-23 00:25:383163 'modifications': {
Haiyang Pan2a55a452022-03-03 08:18:333164 'android-12-x64-rel': {
Haiyang Pan4d49f5d2021-11-24 02:06:133165 'args': [
Henrique Nakashima87b6d8b2022-07-13 13:59:043166 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.sandbox_linux_unittests.filter',
Haiyang Pan4d49f5d2021-11-24 02:06:133167 ]
3168 },
Haiyang Pan6b8e4cf2021-08-02 21:38:283169 'android-marshmallow-x86-rel': {
John Budorick6e8e595b2020-01-27 18:15:583170 'args': [
Henrique Nakashima87b6d8b2022-07-13 13:59:043171 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.sandbox_linux_unittests.filter',
John Budorick6e8e595b2020-01-27 18:15:583172 ]
3173 },
James Shenca34ad02022-06-29 22:38:513174 'android-nougat-x86-rel': {
3175 'args': [
3176 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.sandbox_linux_unittests.filter',
3177 ]
3178 },
Haiyang Pan08d09dc2020-04-01 16:11:213179 'android-pie-x86-rel': {
John Budorick191adfcd2020-01-29 18:19:043180 'args': [
Henrique Nakashima87b6d8b2022-07-13 13:59:043181 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.sandbox_linux_unittests.filter',
John Budorick191adfcd2020-01-29 18:19:043182 ]
3183 },
John Budorickdce9d462019-03-23 00:25:383184 },
John Budorick3ebfdf852019-05-13 22:28:163185 'remove_from': [
John Budorick3ebfdf852019-05-13 22:28:163186 'android-asan', # https://crbug.com/962650
3187 ],
John Budorickdce9d462019-03-23 00:25:383188 },
Brian Sheedyc0c142c2021-06-01 21:18:053189 'screenshot_sync_passthrough_tests': {
3190 'modifications': {
3191 'Android FYI Release (Pixel 4)': {
3192 'args': [
3193 # Pixel 4s are weird in that they can output in different color spaces
3194 # simultaneously. The readback code for capturing a screenshot assumes
3195 # only one color space, so disable wide color gamut for the test to
3196 # work around the issue. See https://crbug.com/1166379 for more
3197 # information.
3198 '--extra-browser-args=--disable-wcg-for-test',
3199 ],
3200 },
Ben Pastene63f13302022-05-12 21:04:053201 'android_optional_gpu_tests_rel': {
3202 'args': [
3203 # See above.
3204 '--extra-browser-args=--disable-wcg-for-test',
3205 ],
3206 },
Brian Sheedyc0c142c2021-06-01 21:18:053207 },
3208 },
Brian Sheedy0566f2cb2021-02-12 22:12:503209 'screenshot_sync_validating_tests': {
3210 'modifications': {
3211 'Android FYI Release (Pixel 4)': {
3212 'args': [
3213 # Pixel 4s are weird in that they can output in different color spaces
3214 # simultaneously. The readback code for capturing a screenshot assumes
3215 # only one color space, so disable wide color gamut for the test to
3216 # work around the issue. See https://crbug.com/1166379 for more
3217 # information.
3218 '--extra-browser-args=--disable-wcg-for-test',
3219 ],
3220 },
Ben Pastene63f13302022-05-12 21:04:053221 'android_optional_gpu_tests_rel': {
3222 'args': [
3223 # See above.
3224 '--extra-browser-args=--disable-wcg-for-test',
3225 ],
3226 },
Brian Sheedy0566f2cb2021-02-12 22:12:503227 },
Chong Gu0aa929e62022-03-03 15:34:133228 'remove_from': [
David Dorwin49b2ddb2022-09-08 20:49:433229 # TODO(https://crbug.com/1302427): Remove once tests pass.
3230 'Fuchsia x64',
3231 'fuchsia-x64-cast-receiver-rel',
3232 'fuchsia-x64-rel',
Chong Gu0aa929e62022-03-03 15:34:133233 ],
Brian Sheedy0566f2cb2021-02-12 22:12:503234 },
Kenneth Russelleb60cbd22017-12-05 07:54:283235 'services_unittests': {
3236 'remove_from': [
Nico Weber15a00d62018-05-16 17:11:483237 'ToTLinuxMSan', # https://crbug.com/831676
Kenneth Russell8a386d42018-06-02 09:48:013238 # The face and barcode detection tests fail on the Mac Pros.
3239 'Mac Pro FYI Release (AMD)',
Nico Weberd36959682018-04-12 03:33:463240 'Linux ChromiumOS MSan Tests', # https://crbug.com/831676
Ben Pastene7636bb62022-04-22 18:55:253241 'Linux ChromiumOS MSan Focal',
Nico Weberd36959682018-04-12 03:33:463242 'Linux MSan Tests', # https://crbug.com/831676
Ben Pastene7636bb62022-04-22 18:55:253243 'Linux MSan Focal', # https://crbug.com/831676
Kenneth Russelleb60cbd22017-12-05 07:54:283244 ],
Brian Sheedyb6c58792020-05-07 18:37:333245 'replacements': {
3246 # TODO(crbug.com/1078982): Remove once the test is fixed on 10.15.4.
3247 'Mac FYI Experimental Release (Intel)': {
3248 'args': {
3249 '--gtest_filter': '*Detection*:-FaceDetectionImplMacTest.ScanOneFace*',
3250 },
3251 },
3252 },
Haiyang Pan363c59a2020-07-23 05:47:043253 'modifications': {
Erik Staabd468a802022-06-28 23:38:033254 'Linux ASan LSan Low Symbols FYI Tests (1)': {
3255 'swarming': {
3256 'quickrun_shards': 2,
3257 },
3258 },
Struan Shrimptone772d72f2021-12-15 07:50:093259 'Linux ASan LSan Tests (1)': {
3260 'swarming': {
3261 'quickrun_shards': 2,
3262 },
3263 },
Haiyang Pan9d68ca02021-08-04 21:30:473264 'android-11-x86-rel': {
Haiyang Pan10f029c2021-07-30 23:17:563265 'args': [
Haiyang Pan2877f062021-11-18 01:06:063266 # TODO(crbug.com/1264654): Fix the failed tests
3267 '--gtest_filter=-PacLibraryTest.ActualPacMyIpAddress*'
3268 ],
3269 },
Haiyang Pan2a55a452022-03-03 08:18:333270 'android-12-x64-rel': {
Haiyang Pan2877f062021-11-18 01:06:063271 'args': [
3272 # TODO(crbug.com/1264654): Fix the failed tests
Haiyang Pan10f029c2021-07-30 23:17:563273 '--gtest_filter=-PacLibraryTest.ActualPacMyIpAddress*'
3274 ],
3275 },
James Shenb3549802022-06-30 18:32:513276 'android-nougat-x86-rel': {
3277 'args': [
3278 # TODO(crbug.com/1264654): Fix the failed tests
3279 '--gtest_filter=-PacLibraryTest.ActualPacMyIpAddress*'
3280 ],
3281 },
Chong Gu52481452021-04-02 17:52:413282 'fuchsia-code-coverage': {
3283 'swarming': {
3284 'shards': 7,
3285 },
3286 },
3287 }
Chong Gudf7fbe92021-02-24 02:55:583288 },
Chong Gu76046412021-09-22 17:49:213289 'snapshot_unittests': {
Chong Gub2446462021-08-19 18:44:083290 'modifications': {
3291 'fuchsia-fyi-arm64-dbg': {
3292 'args': [
3293 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.debug.snapshot_unittests.filter',
3294 ],
3295 },
3296 },
3297 },
Kenneth Russelleb60cbd22017-12-05 07:54:283298 'sync_integration_tests': {
Brad Halla36886c2019-02-26 16:52:293299 'remove_from': [
Brad Halla36886c2019-02-26 16:52:293300 'CrWinAsan(dll)', # https://crbug.com/935598
3301 ],
Kenneth Russelleb60cbd22017-12-05 07:54:283302 'modifications': {
Erik Staabd468a802022-06-28 23:38:033303 'Linux ASan LSan Low Symbols FYI Tests (1)': {
3304 'swarming': {
3305 'shards': 4,
3306 },
3307 },
Erik Chene84bc1c2019-11-25 23:23:523308 'Linux ASan LSan Tests (1)': {
3309 'swarming': {
3310 'shards': 4,
3311 },
3312 },
Nico Weber8fbc2832018-12-14 16:00:573313 'Linux TSan Tests': {
3314 'swarming': {
3315 'shards': 6,
3316 },
3317 },
Chris Cunninghama1239c8b2022-05-03 00:32:213318 'Mac ASan 64 Tests (1)': {
3319 'swarming': {
3320 'shards': 3,
Lindsay Pasricha2cfaec212022-05-11 19:00:393321 },
3322 },
3323 'Mac11 Tests': {
3324 'swarming': {
3325 'shards': 4,
Chris Cunninghama1239c8b2022-05-03 00:32:213326 },
3327 },
Yue She0cad2922022-06-24 15:06:073328 'Mac12 Tests': {
3329 'swarming': {
3330 'shards': 4,
3331 },
3332 },
Stephen Martinis1384ff92020-01-07 19:52:153333 'ToTLinuxTSan': {
Kenneth Russelleb60cbd22017-12-05 07:54:283334 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:153335 'shards': 6,
Kenneth Russelleb60cbd22017-12-05 07:54:283336 },
3337 },
Struan Shrimptona1ab7672022-01-13 18:02:513338 'Win10 Tests x64': {
3339 'swarming': {
3340 'quickrun_shards': 3,
3341 },
3342 },
Stephen Martinis75ab55d2018-08-30 02:27:123343 'Win10 Tests x64 (dbg)': {
3344 'experiment_percentage': 100, # https://crbug.com/840369
3345 },
Stephen Martinis1384ff92020-01-07 19:52:153346 'linux-chromeos-code-coverage': {
Yuke Liao79424e42020-01-06 21:00:113347 'swarming': {
3348 'shards': 4,
3349 },
3350 },
Stephen Martinis1384ff92020-01-07 19:52:153351 'linux-code-coverage': {
Yuke Liao79424e42020-01-06 21:00:113352 'swarming': {
3353 'shards': 4,
3354 },
3355 },
Kuan Huang235b0142021-10-19 18:59:283356 'mac-code-coverage': {
3357 'args': [
3358 '--coverage-continuous-mode=1',
3359 ],
3360 },
Kenneth Russelleb60cbd22017-12-05 07:54:283361 },
3362 },
James Shen6020a7e72022-07-11 21:43:003363 'system_webview_shell_layout_test_apk': {
3364 'remove_from': [
3365 'android-nougat-x86-rel', # crbug.com/1343548
3366 ],
3367 },
Weizhong Xia613fda42021-04-21 20:11:523368 'system_webview_wpt': {
3369 'modifications': {
3370 'android-webview-pie-x86-wpt-fyi-rel': {
Weizhong Xia7dd41362021-09-30 16:05:383371 'args': [
3372 '--log-wptreport',
Nihar Damarasingu8def1a22022-08-18 21:15:543373 '--use-upstream-wpt',
Weizhong Xia7dd41362021-09-30 16:05:383374 ],
Weizhong Xia613fda42021-04-21 20:11:523375 },
3376 },
3377 },
Kenneth Russell8a386d42018-06-02 09:48:013378 'tab_capture_end2end_tests': {
Nico Webere89a3c92018-07-01 01:30:523379 # Run these only on Release bots.
Kenneth Russell8a386d42018-06-02 09:48:013380 'remove_from': [
Kenneth Russell8a386d42018-06-02 09:48:013381 'Linux Debug (NVIDIA)',
3382 'Mac Debug (Intel)',
3383 'Mac Retina Debug (AMD)',
Yuly Novikovbc1ccff2019-08-03 00:05:493384 'Win10 FYI x64 Debug (NVIDIA)',
Yuly Novikovf28f1eca2019-07-04 22:43:393385 # Disabled due to dbus crashes crbug.com/927465
Yuly Novikov86d61c42022-07-22 19:40:143386 'Linux FYI Release (Intel UHD 630)',
Yuly Novikov5865ff72019-07-09 21:38:053387 'Linux FYI Release (NVIDIA)',
Yuly Novikov5865ff72019-07-09 21:38:053388 'Linux Release (NVIDIA)',
Kenneth Russell8a386d42018-06-02 09:48:013389 ],
Emily Hanleyb64ac7c2018-05-25 13:36:553390 },
Haiyang Pan8c201b92020-06-04 01:25:073391 'telemetry_chromium_minidump_unittests': {
James Shen969655a2022-09-28 02:27:073392 'modifications': {
3393 'android-nougat-x86-rel': {
3394 'ci_only': True,
3395 },
3396 },
Haiyang Pan8c201b92020-06-04 01:25:073397 'remove_from': [
Haiyang Pan2486dcb2020-09-18 17:53:063398 'android-marshmallow-x86-rel-non-cq', # crbug.com/1084352
Haiyang Pan8c201b92020-06-04 01:25:073399 ],
3400 },
Brian Sheedyc117f6d2020-05-06 02:23:273401 'telemetry_monochrome_minidump_unittests': {
James Shen969655a2022-09-28 02:27:073402 'modifications': {
3403 'android-nougat-x86-rel': {
3404 'ci_only': True,
3405 },
3406 },
Brian Sheedyc117f6d2020-05-06 02:23:273407 'remove_from': [
3408 # Monochrome isn't supported on M.
3409 'android-marshmallow-arm64-rel',
Haiyang Pan2486dcb2020-09-18 17:53:063410 'android-marshmallow-x86-rel-non-cq',
Brian Sheedyc117f6d2020-05-06 02:23:273411 ],
3412 },
Kenneth Russelleb60cbd22017-12-05 07:54:283413 'telemetry_perf_unittests': {
3414 'modifications': {
Kenneth Russelleb60cbd22017-12-05 07:54:283415 'Linux Tests': {
3416 'args': [
3417 '--xvfb',
Ned Nguyene6e26042018-01-17 20:42:483418 '--jobs=1',
Kenneth Russelleb60cbd22017-12-05 07:54:283419 ],
3420 },
Juan Antonio Navarro Perez4899edf2019-03-14 13:05:353421 'Linux Tests (dbg)(1)': {
3422 'args': [
3423 '--xvfb',
3424 '--jobs=1',
3425 ],
3426 },
John Chen9fd22fcf2021-12-10 02:24:123427 'Mac11 Tests': {
3428 'ci_only': True,
3429 },
Yue She0cad2922022-06-24 15:06:073430 'Mac12 Tests': {
3431 'ci_only': True,
3432 },
Brian Sheedy172ab8932022-07-27 20:39:283433 'android-nougat-x86-rel': {
3434 'args': [
3435 # For whatever reason, automatic browser selection on this bot chooses
3436 # webview instead of the full browser, so explicitly specify it here.
3437 '--browser=android-chromium',
3438 ],
James Shen969655a2022-09-28 02:27:073439 'ci_only': True,
Brian Sheedy172ab8932022-07-27 20:39:283440 },
Struan Shrimptona1ab7672022-01-13 18:02:513441 'chromeos-amd64-generic-rel': {
3442 'swarming': {
3443 'quickrun_shards': 24,
3444 },
3445 },
Ben Pastene69400eb2021-03-25 19:27:163446 'chromeos-eve-chrome': {
3447 'args': [
3448 # TODO(crbug.com/1191132): Re-enable.
3449 '--skip=benchmarks.benchmark_smoke_unittest.BenchmarkSmokeTest.wasmpspdfkit',
3450 ],
3451 },
Ben Pastene2b4b15f2021-03-04 00:39:243452 'chromeos-kevin-chrome': {
3453 # TODO(crbug.com/1182948): Remove the experiment.
Ben Pastenebe91e462021-07-27 23:47:263454 # TODO(b/188822176): Restore to 100% when we have additional capacity.
3455 'experiment_percentage': 0,
Ben Pastene2b4b15f2021-03-04 00:39:243456 },
Ben Pasteneebad8fc2022-08-12 23:34:283457 'linux-rel-no-external-ip': {
3458 'args': [
3459 '--xvfb',
3460 '--jobs=1',
3461 ],
3462 },
Kenneth Russelleb60cbd22017-12-05 07:54:283463 },
3464 'remove_from': [
Haiyang Pan2486dcb2020-09-18 17:53:063465 'android-marshmallow-x86-rel-non-cq', # crbug.com/1084352
Haiyang Pan0e39edf42020-04-28 19:29:013466 # There's no need to run telemetry_perf_unittests on both lollipop and
Erik Chen96894722019-11-21 20:03:393467 # marshmallow on the CQ. https://crbug.com/1026487.
Ben Joyce3e043862021-10-20 23:57:243468 # TODO(crbug/1260494): Test suite isn't running on android.
Erik Chen96894722019-11-21 20:03:393469 'android-marshmallow-arm64-rel',
Andrew Luobe83fd82019-12-19 03:07:583470 'android-pie-arm64-rel',
Garrett Beatyeef031a2019-02-28 01:55:413471 # crbug.com/936540
Shenghua Zhangbd6f1b22018-03-03 02:59:143472 'Mac10.13 Tests',
Zhaoyang Li69e2e002021-02-19 21:57:353473 'Mac10.15 Tests',
Lindsay Pasricha21bb93d72021-12-07 05:48:393474 # TODO crbug.com/1277277
Cameron Higgins7558b162022-06-10 18:53:073475 'Mac12 Tests (dbg)',
Stephen Martinis1384ff92020-01-07 19:52:153476 'Linux - Future (dbg)', # client.v8.chromium
Takuto Ikuta9aa015d2019-04-15 23:33:293477 'Win10 Tests x64',
Stephen Martinise701f5a2018-05-04 01:25:113478 'Win10 Tests x64 (dbg)',
Kuan Huanga89737d2022-01-07 19:42:113479 'Win11 Tests x64',
Ben Pasteneebad8fc2022-08-12 23:34:283480 'win10-rel-no-external-ip',
Kenneth Russelleb60cbd22017-12-05 07:54:283481 ],
3482 },
Stephen Martinis54d64ad2018-09-21 22:16:203483 'telemetry_unittests': {
3484 'modifications': {
3485 'Win10 Tests x64 (dbg)': {
3486 'experiment_percentage': 100, # crbug.com/870673
Ben Pastene9383fe12020-10-20 21:32:403487 },
Struan Shrimptona1ab7672022-01-13 18:02:513488 'chromeos-amd64-generic-rel': {
3489 'swarming': {
3490 'quickrun_shards': 60,
3491 },
3492 },
John Budorickc498fd3c2019-03-14 01:16:263493 },
3494 'remove_from': [
Ben Pastene9ef2ced52021-07-28 18:04:343495 # TODO(crbug.com/1141234): Restore when there's more DUTs
Ben Pastene7f1ded3a42022-06-08 17:01:593496 'chromeos-eve-chrome',
Ben Pastene9ef2ced52021-07-28 18:04:343497 'chromeos-kevin-chrome',
3498 'chromeos-kevin-rel',
Ben Pastene619317752020-12-03 00:04:143499
Takuto Ikuta9aa015d2019-04-15 23:33:293500 'Win10 Tests x64',
Kuan Huanga89737d2022-01-07 19:42:113501 'Win11 Tests x64',
Ben Pasteneebad8fc2022-08-12 23:34:283502 'win10-rel-no-external-ip',
Titouan Rigoudye122ec32021-11-08 16:36:163503
3504 # TODO(https://crbug.com/1267161): Re-enable when platform is supported.
3505 'mac11-arm64-rel-tests',
Zhaoyang Li5d3713d2022-06-13 18:01:173506 # TODO(https://crbug.com/1267161): Re-enable when platform is supported.
3507 'mac12-arm64-rel-tests',
John Budorickc498fd3c2019-03-14 01:16:263508 ],
Stephen Martinis54d64ad2018-09-21 22:16:203509 },
Ben Pastene8e7eb2652022-04-29 19:44:313510 'test_buildbucket_api_gpu_use_cases GTX 1660': {
3511 'remove_from': [
3512 'linux_optional_gpu_tests_rel', # crbug.com/1080749
Brian Sheedyf3b48d62020-05-08 23:03:123513 ],
3514 },
Chong Guabe5adec02022-03-24 17:41:303515 'trace_test': {
Brian Sheedyd1a6d412022-09-12 19:59:203516 'remove_from': [
3517 # Trace tests currently don't work on non-rooted devices due to a private
3518 # directory being used for storing the trace config file.
3519 # TODO(crbug.com/1358240): Enable this test on these bots once tracing is
3520 # updated to work properly without root.
3521 'Android FYI Release (Samsung A13)',
3522 'Android FYI Release (Samsung A23)',
3523 ],
Chong Guabe5adec02022-03-24 17:41:303524 'modifications': {
3525 'fuchsia-fyi-x64-rel': { # https://crbug.com/1269976
3526 'experiment_percentage': 100,
3527 },
3528 },
3529 },
Brian Sheedy739eb6a2022-06-10 06:01:343530 'unexpected_passes_common_pytype': {
3531 'remove_from': [
3532 'linux-code-coverage',
3533 ],
3534 },
Kenneth Russelleb60cbd22017-12-05 07:54:283535 'unit_tests': {
Yun Liu3e759dbb2019-11-01 19:25:523536 'remove_from': [
Ben Pastene3e32ffe2020-08-07 03:37:073537 'android-pie-arm64-rel', # https://crbug.com/1010211
Yun Liu3e759dbb2019-11-01 19:25:523538 ],
Kenneth Russelleb60cbd22017-12-05 07:54:283539 'modifications': {
Erik Staabd468a802022-06-28 23:38:033540 'Linux ASan LSan Low Symbols FYI Tests (1)': {
3541 # These are slow on the ASAN trybot for some reason.
3542 # crbug.com/1257927
3543 'swarming': {
3544 'shards': 4,
3545 },
3546 },
John Budorickca14c76f62017-12-09 14:19:183547 'Linux ASan LSan Tests (1)': {
John Budorick5052d552017-12-13 02:59:343548 # These are slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:443549 # crbug.com/1257927
John Budorickca14c76f62017-12-09 14:19:183550 'swarming': {
John Budorick5052d552017-12-13 02:59:343551 'shards': 4,
John Budorickca14c76f62017-12-09 14:19:183552 },
3553 },
Stephen Martinis1384ff92020-01-07 19:52:153554 'Linux Chromium OS ASan LSan Tests (1)': {
3555 # These are slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:443556 # crbug.com/1257927
John Budorickca14c76f62017-12-09 14:19:183557 'swarming': {
3558 'shards': 2,
3559 },
3560 },
Takuto Ikuta54671d972018-07-19 19:06:353561 'Linux ChromiumOS MSan Tests': {
3562 # These are very slow on the Chrome OS MSAN trybot for some reason.
3563 # crbug.com/865455
3564 'swarming': {
3565 'shards': 2,
3566 },
3567 },
Stephen Martinis1384ff92020-01-07 19:52:153568 'Linux TSan Tests': {
Takuto Ikuta54671d972018-07-19 19:06:353569 'swarming': {
3570 'shards': 2,
3571 },
3572 },
Maksim Sisovc81d284c2021-10-05 17:54:353573 # https://crbug.com/1184127
3574 'Linux Tests (Wayland)': {
3575 'args': [
3576 '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.unit_tests_wayland.filter',
3577 ],
3578 },
Cameron Higgins7558b162022-06-10 18:53:073579 'Mac12 Tests (dbg)': {
Zhaoyang Li9357e1e12021-12-07 18:53:173580 'swarming': {
3581 'shards': 2,
3582 },
3583 },
Stephen Martinis1384ff92020-01-07 19:52:153584 'ToTLinuxASan': {
Dirk Pranke20eae9a72017-12-09 18:12:143585 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:153586 'shards': 2,
Dirk Pranke20eae9a72017-12-09 18:12:143587 },
3588 },
Stephen Martinis1384ff92020-01-07 19:52:153589 'android-asan': {
3590 'args': [
3591 '--test-launcher-filter-file=../../testing/buildbot/filters/android.asan.unit_tests.filter',
3592 ],
3593 },
Takuto Ikuta527cdff2020-01-29 08:04:273594 'android-marshmallow-arm64-rel-swarming': {
3595 'swarming': {
3596 'shards': 8,
3597 },
3598 },
Stephen Martinis1384ff92020-01-07 19:52:153599 'linux-chromeos-chrome': {
3600 'args': [
3601 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.unit_tests.filter',
3602 ],
3603 },
Ben Pasteneacd57392019-10-31 02:13:253604 'linux-chromeos-dbg': {
3605 'swarming': {
3606 'shards': 2,
3607 },
3608 },
Erik Chend063aef72019-11-18 19:13:103609 'linux-chromeos-rel': {
3610 'swarming': {
3611 'shards': 2,
3612 },
3613 },
Kenneth Russelleb60cbd22017-12-05 07:54:283614 },
3615 },
Hao Wu77dd1ab2022-04-29 21:36:203616 'variations_smoke_tests': {
3617 'modifications': {
Hao Wud38c2342022-06-09 02:03:473618 'linux-chrome': {
3619 'swarming': {
3620 'dimension_sets': [
3621 {
3622 'pool': 'chrome.tests.finch',
3623 },
3624 ],
3625 },
3626 },
Hao Wu77dd1ab2022-04-29 21:36:203627 'win-chrome': {
3628 'experiment_percentage': 100,
Hao Wud38c2342022-06-09 02:03:473629 'swarming': {
3630 'dimension_sets': [
3631 {
3632 'pool': 'chrome.tests.finch',
3633 },
3634 ],
3635 },
Hao Wu77dd1ab2022-04-29 21:36:203636 },
3637 },
3638 },
Kenneth Russell8a386d42018-06-02 09:48:013639 'video_decode_accelerator_gl_unittest': {
3640 'remove_from': [
Kenneth Russell8a386d42018-06-02 09:48:013641 # Windows Intel doesn't have the GL extensions to support this test.
Yuly Novikovbc1ccff2019-08-03 00:05:493642 'Win10 FYI x64 Release (Intel HD 630)',
Yuly Novikov5ff15502019-07-31 00:55:483643 'Win10 FYI x64 Exp Release (Intel HD 630)',
Kenneth Russell8a386d42018-06-02 09:48:013644 ],
3645 },
Sven Zheng577fe5ff2020-08-03 22:06:443646 'views_unittests': {
Sven Zheng80734f12020-08-06 06:50:393647 'modifications': {
Maksim Sisovc81d284c2021-10-05 17:54:353648 'Linux Tests (Wayland)': {
3649 'args': [
3650 '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.wayland_views_unittests.filter',
3651 ],
3652 },
Chong Gu6aa22be2021-09-10 06:56:143653 'fuchsia-fyi-arm64-dbg': {
3654 'args': [
3655 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.debug.views_unittests.filter',
3656 ],
3657 },
Sven Zhengbc822262022-09-20 20:47:353658 # https://crbug.com/1111979
3659 'linux-lacros-asan-lsan-rel': {
3660 'args': [
3661 '--gtest_filter=-DesktopWidgetFocusManagerTest.AnchoredDialogInDesktopNativeWidgetAura:'
3662 'DesktopWidgetTest*:'
3663 'DesktopWindowTreeHostPlatformTest*:'
3664 'EditableComboboxTest*:'
3665 'MenuRunnerTest*:'
3666 'TextfieldTest*:'
3667 'TooltipControllerTest*:'
3668 'TooltipStateManagerTest*'
3669 ],
3670 },
Sven Zheng5c9d3e342020-08-11 21:39:433671 # https://crbug.com/1111979,
Junhua Chen39dd2dba2021-05-05 17:51:543672 'linux-lacros-code-coverage': {
3673 'args': [
3674 '--gtest_filter=-DesktopWidgetFocusManagerTest.AnchoredDialogInDesktopNativeWidgetAura:'
3675 'DesktopWidgetTest*:'
3676 'DesktopWindowTreeHostPlatformTest*:'
3677 'EditableComboboxTest*:'
3678 'MenuRunnerTest*:'
3679 'TextfieldTest*:'
3680 'TooltipControllerTest*:'
3681 'TooltipStateManagerTest*'
3682 ],
3683 },
Yuke Liaoa0db4742021-08-09 18:28:333684 'linux-lacros-dbg-tests-fyi': {
3685 'args': [
3686 '--gtest_filter=-DesktopWidgetFocusManagerTest.AnchoredDialogInDesktopNativeWidgetAura:'
3687 'TextfieldTest*:'
3688 'TooltipControllerTest*:'
3689 ],
3690 },
Sven Zheng5c9d3e342020-08-11 21:39:433691 'linux-lacros-tester-rel': {
Sven Zheng5c9d3e342020-08-11 21:39:433692 'args': [
3693 '--gtest_filter=-DesktopWidgetFocusManagerTest.AnchoredDialogInDesktopNativeWidgetAura:'
Yuke Liao34721c22020-08-14 21:41:193694 'DesktopWidgetTest*:'
3695 'DesktopWindowTreeHostPlatformTest*:'
Yuke Liaocf9db2b2020-08-13 19:42:533696 'EditableComboboxTest*:'
Sven Zhengea8903f2020-08-14 05:27:513697 'MenuRunnerTest*:'
Yuke Liaocf9db2b2020-08-13 19:42:533698 'TextfieldTest*:'
Benjamin Beaudry54b3b882021-03-12 23:55:363699 'TooltipControllerTest*:'
3700 'TooltipStateManagerTest*'
Sven Zheng5c9d3e342020-08-11 21:39:433701 ],
3702 },
Sven Zheng80734f12020-08-06 06:50:393703 },
Sven Zheng577fe5ff2020-08-03 22:06:443704 },
John Budorickd02c429de2020-01-10 19:02:213705 'viz_unittests': {
3706 'modifications': {
Chong Gub2446462021-08-19 18:44:083707 'fuchsia-fyi-arm64-dbg': {
Chong Gu6aa22be2021-09-10 06:56:143708 'args': [
3709 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.debug.viz_unittests.filter',
3710 ],
Chong Gub2446462021-08-19 18:44:083711 },
John Budorickd02c429de2020-01-10 19:02:213712 },
3713 },
John Budorick20f4fa8d2019-08-02 22:58:293714 'vr_common_unittests': {
3715 'remove_from': [
James Shenfddea932022-08-18 07:19:543716 'android-pie-x86-fyi-rel-reviver',
Haiyang Pan08d09dc2020-04-01 16:11:213717 'android-pie-x86-rel',
John Budorick20f4fa8d2019-08-02 22:58:293718 ],
3719 },
Kenneth Russellfbda3c532017-12-08 23:57:243720 'vr_pixeltests': {
3721 'remove_from': [
James Shenfddea932022-08-18 07:19:543722 'android-pie-x86-fyi-rel-reviver',
Haiyang Pan08d09dc2020-04-01 16:11:213723 'android-pie-x86-rel',
Kenneth Russell8ceeabf2017-12-11 17:53:283724 'VR Linux',
Kenneth Russellfbda3c532017-12-08 23:57:243725 ],
3726 },
Nico Webere81999ee2018-07-01 23:52:433727 'wayland_client_perftests': {
3728 'remove_from': [
3729 'linux-chromeos-dbg', # https://crbug.com/859307
3730 ],
3731 },
Chong Gu76046412021-09-22 17:49:213732 'web_engine_browsertests': {
Chong Gud1a5c5992021-04-09 04:08:323733 'modifications': {
3734 'fuchsia-code-coverage': {
3735 'swarming': {
Chong Gu7a463202021-07-19 18:43:103736 'shards': 28,
Chong Gud1a5c5992021-04-09 04:08:323737 },
3738 },
3739 },
3740 },
Greg Thompson3b616c0a2022-08-23 08:44:513741 'web_engine_integration_tests_cfv1': {
Chong Gu4c9e8f112021-06-02 18:37:263742 'modifications': {
3743 'fuchsia-code-coverage': {
3744 'swarming': {
3745 'shards': 6,
3746 },
3747 },
3748 },
3749 },
John Budorick63357462019-02-27 23:02:513750 'webdriver_tests_suite': {
3751 'remove_from': [
3752 'Linux Tests', # https://crbug.com/929689, https://crbug.com/936557
3753 ],
3754 },
Brian Sheedy5a9f6562021-08-20 03:32:543755 'webgl2_conformance_gles_passthrough_tests': {
3756 'remove_from': [
Brian Sheedyefb683c2022-01-25 21:17:363757 # Currently not enough capacity to run these tests on this config.
3758 # TODO(crbug.com/1280418): Re-enable once more of the Pixel 6 capacity
3759 # is deployed.
3760 'Android FYI Release (Pixel 6)',
Brian Sheedy43f5a6f2022-01-07 02:41:043761 # Not enough CrOS hardware capacity to run both on anything other than
3762 # VMs. See https://crbug.com/1238070.
Brian Sheedy5a9f6562021-08-20 03:32:543763 'Lacros FYI x64 Release (Intel)',
3764 ],
3765 'modifications': {
3766 # This VM configuration is known to be significantly slower than other
3767 # CrOS configurations, so increase the shards.
3768 # TODO(crbug.com/1223550): Remove this if the configuration can be sped
3769 # up.
3770 'ChromeOS FYI Release (amd64-generic)': {
3771 'swarming': {
3772 'shards': 30,
3773 },
3774 },
3775 },
3776 },
Kenneth Russell18fff67f2021-11-05 23:45:113777 'webgl2_conformance_metal_passthrough_tests': {
3778 'remove_from': [
Yuly Novikov7d00cdb2022-01-05 00:10:383779 # crbug.com/1270755
3780 'Mac FYI ASAN (Intel)',
3781 'Mac FYI Retina ASAN (AMD)',
Kenneth Russell18fff67f2021-11-05 23:45:113782 # Not enough capacity.
3783 'Mac FYI Retina Release (NVIDIA)',
3784 ],
Yuly Novikov220c14a52021-12-14 02:49:333785 'modifications': {
3786 'Mac FYI ASAN (Intel)': {
3787 'args': [
3788 '--extra-browser-args=--disable-metal-shader-cache',
Brian Sheedya111ca92022-04-18 23:37:153789 '--enable-metal-debug-layers',
3790 ],
3791 },
3792 'Mac FYI Release (Intel)': {
3793 'args': [
3794 '--enable-metal-debug-layers',
Yuly Novikov220c14a52021-12-14 02:49:333795 ],
3796 },
3797 'Mac FYI Retina ASAN (AMD)': {
3798 'args': [
3799 '--extra-browser-args=--disable-metal-shader-cache',
Brian Sheedy3fd310772022-04-20 02:15:513800 # This slows down tests and we are currently having AMD Mac capacity
3801 # issues.
3802 # '--enable-metal-debug-layers',
Brian Sheedya111ca92022-04-18 23:37:153803 ],
3804 },
3805 'Mac FYI Retina Release (AMD)': {
3806 'args': [
Brian Sheedy3fd310772022-04-20 02:15:513807 # This slows down tests and we are currently having AMD Mac capacity
3808 # issues.
3809 # '--enable-metal-debug-layers',
Yuly Novikov220c14a52021-12-14 02:49:333810 ],
3811 },
3812 },
Kenneth Russell18fff67f2021-11-05 23:45:113813 },
John Budorick82e61dfb2019-12-10 04:36:093814 'webgl2_conformance_validating_tests': {
Stephen Martinis54d64ad2018-09-21 22:16:203815 'remove_from': [
Brian Sheedyefb683c2022-01-25 21:17:363816 # Currently not enough capacity to run these tests on this config.
3817 # TODO(crbug.com/1280418): Re-enable once more of the Pixel 6 capacity
3818 # is deployed.
3819 'Android FYI Release (Pixel 6)',
Brian Sheedy43f5a6f2022-01-07 02:41:043820 # Passthrough version run on this configuration, not enough capacity for
3821 # both. See https://crbug.com/1238070.
3822 'ChromeOS FYI Release (kevin)',
Stephen Martinis54d64ad2018-09-21 22:16:203823 ],
Kenneth Russell8a386d42018-06-02 09:48:013824 'modifications': {
Brian Sheedyab0a1992021-08-13 20:57:393825 # This VM configuration is known to be significantly slower than other
3826 # CrOS configurations, so increase the shards.
3827 # TODO(crbug.com/1223550): Remove this if the configuration can be sped
3828 # up.
3829 'ChromeOS FYI Release (amd64-generic)': {
3830 'swarming': {
3831 'shards': 30,
3832 },
Brian Sheedy9bde4532021-08-20 18:11:193833 # This configuration is tested with the passthrough decoder as well,
3834 # which will be shipped in the nearish future, so any failures that
3835 # show up with the validating decoder are just an FYI.
3836 'experiment_percentage': 100,
Brian Sheedyab0a1992021-08-13 20:57:393837 },
Brian Sheedy22200312021-08-20 22:17:503838 'ChromeOS FYI Release (kevin)': {
3839 'experiment_percentage': 100,
3840 },
Kenneth Russell8a386d42018-06-02 09:48:013841 },
3842 },
Struan Shrimptona1ab7672022-01-13 18:02:513843 'webgl_conformance_d3d11_passthrough_tests': {
3844 'modifications': {
3845 'Win10 x64 Release (NVIDIA)': {
3846 'swarming': {
3847 'quickrun_shards': 4,
3848 },
3849 },
3850 },
3851 },
Brian Sheedye8723cb2022-07-21 13:37:283852 'webgl_conformance_gl_passthrough_tests 1002:6821': {
3853 'modifications': {
3854 'mac_optional_gpu_tests_rel': {
3855 'args': [
3856 # Added to debug crbug.com/1293967.
Brian Sheedyf528ce592022-07-26 22:44:463857 '--extra-browser-args=--disable-background-media-suspend --disable-renderer-backgrounding --disable-background-timer-throttling',
Brian Sheedye8723cb2022-07-21 13:37:283858 ],
3859 },
3860 },
3861 },
Kenneth Russell984f2f12020-12-15 23:23:353862 'webgl_conformance_metal_passthrough_tests': {
3863 'remove_from': [
Yuly Novikov7d00cdb2022-01-05 00:10:383864 # crbug.com/1270755
3865 'Mac FYI ASAN (Intel)',
3866 'Mac FYI Retina ASAN (AMD)',
Yuly Novikov220c14a52021-12-14 02:49:333867 # crbug.com/1158857: re-enable when switching to Metal by default.
Kenneth Russell984f2f12020-12-15 23:23:353868 'Mac FYI Retina Release (NVIDIA)',
3869 ],
Yuly Novikov220c14a52021-12-14 02:49:333870 'modifications': {
3871 'Mac FYI ASAN (Intel)': {
3872 'args': [
3873 '--extra-browser-args=--disable-metal-shader-cache',
Brian Sheedya111ca92022-04-18 23:37:153874 '--enable-metal-debug-layers',
3875 ],
3876 },
3877 'Mac FYI Release (Intel)': {
3878 'args': [
3879 '--enable-metal-debug-layers',
Yuly Novikov220c14a52021-12-14 02:49:333880 ],
3881 },
3882 'Mac FYI Retina ASAN (AMD)': {
3883 'args': [
3884 '--extra-browser-args=--disable-metal-shader-cache',
Brian Sheedy3fd310772022-04-20 02:15:513885 # This slows down tests and we are currently having AMD Mac capacity
3886 # issues.
3887 # '--enable-metal-debug-layers',
Brian Sheedya111ca92022-04-18 23:37:153888 ],
3889 },
3890 'Mac FYI Retina Release (AMD)': {
3891 'args': [
Brian Sheedy3fd310772022-04-20 02:15:513892 # This slows down tests and we are currently having AMD Mac capacity
3893 # issues.
3894 # '--enable-metal-debug-layers',
Yuly Novikov220c14a52021-12-14 02:49:333895 ],
3896 },
3897 },
Kenneth Russell984f2f12020-12-15 23:23:353898 },
Stephen Martinis54d64ad2018-09-21 22:16:203899 'webgl_conformance_tests': {
Kenneth Russelle63e41f2019-04-09 02:45:283900 'remove_from': [
3901 # Too slow on this configuration, which is severely hardware
3902 # constrained. crbug.com/950690
3903 'Mac FYI Retina Debug (NVIDIA)',
3904 ],
Struan Shrimptona1ab7672022-01-13 18:02:513905 'modifications': {
3906 'chromeos-amd64-generic-rel': {
Kenneth Russelld5558352022-07-15 18:40:453907 'args': [
3908 # Added to debug crbug.com/1293967.
Brian Sheedyf528ce592022-07-26 22:44:463909 '--extra-browser-args=--disable-features=BackgroundVideoPauseOptimization --disable-background-media-suspend --disable-renderer-backgrounding --disable-background-timer-throttling',
Kenneth Russelld5558352022-07-15 18:40:453910 ],
Struan Shrimptona1ab7672022-01-13 18:02:513911 'swarming': {
3912 'quickrun_shards': 40,
3913 },
3914 },
3915 },
Kenneth Russell8a386d42018-06-02 09:48:013916 },
Austin Enge8c0ba02021-07-19 23:55:193917 'webgpu_blink_web_tests': {
3918 'modifications': {
3919 # Increase the timeout with ASAN (crbug.com/1208253)
3920 'Dawn Win10 x64 ASAN Release': {
3921 'args': [
Weizhong Xia91b53362022-01-05 17:13:353922 '--timeout-ms=48000',
Austin Enge8c0ba02021-07-19 23:55:193923 ],
3924 },
3925 },
Brian Sheedy5796b4b2021-09-15 21:51:413926 'replacements': {
3927 'Dawn Mac x64 Experimental Release (Intel)': {
3928 'args': {
Avi Drissman5afd38bc2021-10-27 17:35:133929 '--platform': 'mac-mac11',
Brian Sheedy5796b4b2021-09-15 21:51:413930 },
3931 }
3932 },
3933 },
3934 'webgpu_blink_web_tests_with_backend_validation': {
3935 'replacements': {
3936 'Dawn Mac x64 Experimental Release (Intel)': {
3937 'args': {
Avi Drissman5afd38bc2021-10-27 17:35:133938 '--platform': 'mac-mac11',
Brian Sheedy5796b4b2021-09-15 21:51:413939 },
3940 },
3941 },
Austin Engd7a88622022-08-12 18:50:003942 # Remove from bots where capacity is constrained.
3943 'remove_from': [
3944 'Dawn Mac x64 DEPS Release (AMD)',
3945 'Dawn Mac x64 Release (AMD)',
3946 'Dawn Win10 x64 DEPS Release (Intel HD 630)',
3947 'Dawn Win10 x64 Release (Intel HD 630)',
3948 ],
3949 },
3950 'webgpu_cts_tests': {
3951 'remove_from': [
3952 # GPU hang kills the bot. https://crbug.com/dawn/1511
3953 'Dawn Mac x64 Release (AMD)',
3954 'Dawn Mac x64 DEPS Release (AMD)',
3955 ],
3956 },
3957 'webgpu_cts_with_validation_tests': {
3958 # Remove from bots where capacity is constrained.
3959 'remove_from': [
3960 'Dawn Mac x64 DEPS Release (AMD)',
3961 'Dawn Mac x64 Release (AMD)',
3962 'Dawn Win10 x64 DEPS Release (Intel HD 630)',
3963 'Dawn Win10 x64 Release (Intel HD 630)',
3964 'Dawn Win10 x86 DEPS Release (Intel HD 630)',
3965 'Dawn Win10 x86 Release (Intel HD 630)',
3966 ],
3967 'modifications': {
3968 # ci_only for bots where capacity is constrained.
3969 'Dawn Linux x64 DEPS Release (Intel UHD 630)': {
3970 'ci_only': True,
3971 },
3972 'Dawn Linux x64 Release (Intel UHD 630)': {
3973 'ci_only': True,
3974 },
3975 },
3976 },
3977 'webgpu_swiftshader_web_platform_cts_with_validation_tests': {
3978 # Remove from bots where capacity is constrained.
3979 'remove_from': [
3980 'Dawn Mac x64 DEPS Release (AMD)',
3981 'Dawn Mac x64 Release (AMD)',
3982 'Dawn Win10 x64 DEPS Release (Intel HD 630)',
3983 'Dawn Win10 x64 Release (Intel HD 630)',
3984 'Dawn Win10 x86 DEPS Release (Intel HD 630)',
3985 'Dawn Win10 x86 Release (Intel HD 630)',
3986 ],
3987 'modifications': {
3988 # ci_only for bots where capacity is constrained.
3989 'Dawn Linux x64 DEPS Release (Intel UHD 630)': {
3990 'ci_only': True,
3991 },
3992 'Dawn Linux x64 Release (Intel UHD 630)': {
3993 'ci_only': True,
3994 },
3995 },
Austin Enge8c0ba02021-07-19 23:55:193996 },
Kenneth Russelleb60cbd22017-12-05 07:54:283997 'webkit_unit_tests': {
Yun Liu16394ab32019-11-19 16:37:573998 'remove_from': [
3999 # Flakily fails on Win7. https://crbug.com/943372.
4000 'Win7 Tests (1)',
4001 'Win 7 Tests x64 (1)',
Haiyang Pan90ed7c642021-02-06 01:22:064002 # Runs on android-marshmallow-x86-rel already (crbug.com/1127110)
4003 'android-marshmallow-arm64-rel',
4004 'android-marshmallow-x86-rel-non-cq',
Yun Liu16394ab32019-11-19 16:37:574005 ],
Dirk Pranke81ff51c2017-12-09 19:24:284006 'modifications': {
Erik Staabd468a802022-06-28 23:38:034007 'Linux ASan LSan Low Symbols FYI Tests (1)': {
4008 # These are very slow on the ASAN trybot for some reason.
4009 # crbug.com/1257927
4010 'swarming': {
4011 'shards': 5,
4012 },
4013 },
John Budorick5052d552017-12-13 02:59:344014 'Linux ASan LSan Tests (1)': {
4015 # These are very slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:444016 # crbug.com/1257927
John Budorick5052d552017-12-13 02:59:344017 'swarming': {
4018 'shards': 5,
4019 },
4020 },
Erik Chen681dc0282019-11-26 22:54:494021 'Linux TSan Tests': {
4022 'swarming': {
4023 'shards': 2,
4024 },
4025 },
arthursonzogni26889d82018-05-29 17:18:164026 'Marshmallow 64 bit Tester': {
4027 # Increase timeout. See https://crbug.com/847229.
4028 'swarming': {
4029 'hard_timeout': 1200,
4030 },
4031 },
Dirk Pranke81ff51c2017-12-09 19:24:284032 },
Kenneth Russelleb60cbd22017-12-05 07:54:284033 },
James Lee56890ce2022-09-27 14:18:214034 'weblayer_browsertests': {
4035 'remove_from': [
4036 'android-pie-arm64-rel', # crbug.com/1354867
4037 ],
James Lee56890ce2022-09-27 14:18:214038 },
4039 'weblayer_bundle_test': {
4040 'remove_from': [
4041 'android-marshmallow-x86-rel-non-cq', # crbug.com/1088013
4042 'android-pie-arm64-rel', # crbug.com/1354867
4043 'android-11-x86-rel', # crbug.com/1165280
4044 ],
4045 },
4046 'weblayer_instrumentation_test_apk': {
4047 'remove_from': [
4048 'android-marshmallow-x86-rel-non-cq', # crbug.com/1088013
4049 'android-pie-arm64-rel', # crbug.com/1354867
4050 'android-11-x86-rel', # crbug.com/1165280
4051 ],
4052 'modifications': {
4053 'android-marshmallow-arm64-rel': {
4054 'swarming': {
4055 'quickrun_shards': 2,
4056 },
4057 },
4058 'android-nougat-x86-rel': {
4059 'swarming': {
4060 'dimension_sets': [
4061 {
4062 'machine_type': 'e2-standard-8', # use 8-core to shorten runtime
4063 },
4064 ],
4065 },
4066 },
4067 },
4068 },
4069 'weblayer_private_instrumentation_test_apk': {
4070 'modifications': {
4071 # TODO(crbug.com/1189403): Remove the filter once the issue is fixed.
4072 'android-11-x86-rel': {
4073 'args': [
4074 '--gtest_filter=-org.chromium.weblayer.test.MediaCaptureTest.*',
4075 ],
4076 },
4077 'android-12-x64-rel': {
4078 'args': [
4079 # crbug.com/1275200
4080 '--gtest_filter=-org.chromium.weblayer.test.BrowserControlsTest.testTopExpandedOnLoadWhenOnlyExpandAtTop',
4081 ],
4082 },
4083 },
4084 },
4085 'weblayer_shell_wpt': {
4086 'modifications': {
4087 'android-weblayer-pie-x86-wpt-smoketest': {
4088 'args': [
4089 '--default-exclude',
4090 '--include-file=../../third_party/blink/web_tests/android/WPTSmokeTestCases',
4091 ],
4092 'swarming': {
4093 'shards': 1,
4094 },
4095 },
4096 },
4097 },
Erik Staab70ca5b32021-08-07 00:38:354098 'webview_64_cts_tests': {
4099 'modifications': {
4100 'android-pie-arm64-rel': {
4101 # TODO(crbug.com/1111436): Move this back to walleye if/when additional
4102 # capacity has been deployed.
4103 'swarming': {
4104 'dimension_sets': [
4105 {
4106 'device_type': 'sailfish',
4107 },
4108 ],
4109 },
4110 },
4111 },
4112 },
Haiyang Panfbd2b482020-09-23 23:41:254113 'webview_cts_tests': {
4114 'modifications': {
James Shen39977242022-07-08 23:46:424115 'android-nougat-x86-rel': {
4116 'args': [
4117 # crbug.com/1343008
4118 '--gtest_filter=-android.assist.cts.WebViewTest#testWebView',
4119 ],
4120 },
Haiyang Panfbd2b482020-09-23 23:41:254121 'android-pie-arm64-rel': {
4122 # TODO(crbug.com/1111436): Move this back to walleye if/when additional
4123 # capacity has been deployed.
4124 'swarming': {
4125 'dimension_sets': [
4126 {
4127 'device_type': 'sailfish',
4128 },
4129 ],
4130 },
4131 },
4132 },
4133 },
Kenneth Russelleb60cbd22017-12-05 07:54:284134 'webview_instrumentation_test_apk': {
4135 'remove_from': [
Hans Wennborgeac4c36c2018-05-23 16:04:064136 # This test frequently fails on Android, https://crbug.com/824959
Stephen Martinis1384ff92020-01-07 19:52:154137 # matching android builders, the test fails on these.
Hans Wennborga0b11ebe2018-05-15 16:26:504138 'ToTAndroid',
John Budorick27d2d44e2019-05-20 20:26:094139 'android-asan', # https://crbug.com/964562
Ben Joyce02dc8092021-03-04 21:48:194140 'android-code-coverage-native', # Does not generate profraw data.
Ben Joyce46ca6012021-03-31 19:19:254141 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data.
Ben Joyce02dc8092021-03-04 21:48:194142
Dirk Pranke20eae9a72017-12-09 18:12:144143 # On chromium.swarm, this should possibly be being run (or removed
Takuto Ikuta527cdff2020-01-29 08:04:274144 # from android-marshmallow-arm64-rel-swarming).
Garrett Beaty47a2d802020-11-10 20:50:534145 # https://crbug.com/1147531 - covered on pie
4146 'android-marshmallow-arm64-rel',
Kenneth Russelleb60cbd22017-12-05 07:54:284147 ],
Ben Pastenee17a8e92018-07-12 21:55:184148 'modifications': {
4149 'Oreo Phone Tester': {
Andrew Luo93c4a1e2019-08-30 05:26:304150 # TODO(crbug.com/997362): Enable this once it's passing.
bsheedy01833462018-12-07 01:05:574151 # TODO(https://crbug.com/884413): Re-enable this once the tests are
4152 # either passing or there is more capacity.
4153 'experiment_percentage': 0,
Ben Pastenee17a8e92018-07-12 21:55:184154 },
Haiyang Pan9d68ca02021-08-04 21:30:474155 'android-11-x86-rel': {
Haiyang Pan103864812021-03-19 19:28:444156 'args': [
4157 # TODO(crbug.com/1189746) Enable this test once the issue is fixed.
4158 '--gtest_filter=-org.chromium.net.NetworkChangeNotifierTest.testNetworkChangeNotifierJavaObservers',
4159 ],
4160 },
James Shen39aa0e32022-03-22 04:44:504161 'android-marshmallow-x86-fyi-rel-reviver': {
4162 'swarming': {
4163 'shards': 9,
4164 },
4165 },
Haiyang Panb991f562021-08-10 17:46:464166 'android-marshmallow-x86-rel': {
Haiyang Panb991f562021-08-10 17:46:464167 'swarming': {
4168 'shards': 9,
4169 },
4170 },
Haiyang Pandcc3e012022-09-30 01:57:434171 'android-nougat-x86-rel': {
4172 'swarming': {
4173 'shards': 9,
4174 },
4175 },
Kuan Huang1f402c82021-06-08 17:58:184176 'android-pie-arm64-rel': {
Gregory Guterman7c7edc6342022-09-26 21:00:134177 'ci_only': True, # crbug/1368281
Kuan Huang1f402c82021-06-08 17:58:184178 'swarming': {
4179 'shards': 9,
4180 },
4181 },
James Shenfddea932022-08-18 07:19:544182 'android-pie-x86-fyi-rel-reviver': {
4183 'swarming': {
4184 'shards': 9,
4185 },
4186 },
Haiyang Pan08d09dc2020-04-01 16:11:214187 'android-pie-x86-rel': {
Haiyang Panfdd94332020-03-27 02:43:294188 'args': [
4189 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.webview_instrumentation_test_apk.filter',
4190 ],
Ben Joyce9a7eb312021-08-25 00:44:594191 'swarming': {
4192 'shards': 9,
4193 },
Haiyang Panfdd94332020-03-27 02:43:294194 },
Ben Pastenee17a8e92018-07-12 21:55:184195 },
Kenneth Russelleb60cbd22017-12-05 07:54:284196 },
Haiyang Panfed339172021-03-10 23:19:574197 'webview_ui_test_app_test_apk': {
4198 'remove_from': [
Haiyang Pan9d68ca02021-08-04 21:30:474199 'android-11-x86-rel', # crbug.com/1165280
Haiyang Panfed339172021-03-10 23:19:574200 ],
4201 },
Nihar Damarasinguaac11d862022-10-03 20:24:244202 'wpt_tests_suite': {
4203 'modifications': {
4204 'win10-wpt-content-shell-fyi-rel': {
4205 'args': [
4206 '--target',
4207 'Release_x64',
4208 ],
4209 },
4210 },
4211 },
Kenneth Russelleb60cbd22017-12-05 07:54:284212}