blob: 2ae1d7949c41f1c83c9327d854a00c1c60360c2e [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{
Ben Pastenef2ca8e22023-05-03 21:52:2526 'accessibility_unittests': {
27 'modifications': {
28 'Linux ASan LSan Tests (1)': {
29 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:2530 'dimensions': {
31 # TODO(crbug.com/1442303): Move to Jammy when it's compatible.
32 'os': 'Ubuntu-18.04',
33 },
Ben Pastenef2ca8e22023-05-03 21:52:2534 },
35 },
Ben Pastenef2ca8e22023-05-03 21:52:2536 },
37 },
Andrew Luo38b311f2019-10-04 03:42:0938 'android_browsertests': {
39 'modifications': {
Haiyang Pan9d68ca02021-08-04 21:30:4740 'android-11-x86-rel': {
Haiyang Pan0ea9b3ef2022-01-21 21:58:1441 'args': [
42 # https://crbug.com/1289764
43 '--gtest_filter=-All/ChromeBrowsingDataLifetimeManagerScheduledRemovalTest.History/*',
44 ],
Haiyang Panca7fcec2021-03-19 02:11:1045 },
Haiyang Panc1192662022-03-09 00:09:0246 'android-12-x64-rel': {
Haiyang Pan18b448d72022-12-13 21:33:4447 # TODO(crbug.com/1225851): Remove experiment and ci_only
48 # once the test suite is stable.
49 'ci_only': True,
50 'experiment_percentage': 100,
Haiyang Panc1192662022-03-09 00:09:0251 'args': [
52 # https://crbug.com/1289764
53 '--gtest_filter=-All/ChromeBrowsingDataLifetimeManagerScheduledRemovalTest.History/*',
54 ],
Haiyang Pand5524452023-04-25 01:56:4055 'swarming': {
56 'shards': 4,
57 },
Haiyang Pan1b8faa20b2023-02-10 23:44:3658 },
59 'android-12l-x64-dbg-tests': {
60 'args': [
61 # https://crbug.com/1289764
James Shen1b3b035f2023-08-01 08:20:4762 '--gtest_filter=-All/ChromeBrowsingDataLifetimeManagerScheduledRemovalTest.History/*:'
63 # https://crbug.com/1468262
64 'All/PaymentHandlerEnforceFullDelegationTest.WhenEnabled_ShowPaymentSheet_WhenDisabled_Reject/1',
Haiyang Pan1b8faa20b2023-02-10 23:44:3665 ],
Haiyang Pand5524452023-04-25 01:56:4066 'swarming': {
67 'shards': 4,
68 },
Haiyang Pan1b8faa20b2023-02-10 23:44:3669 },
Haiyang Pan42c77cd92023-05-18 01:13:0370 'android-12l-x64-fyi-dbg': {
Haiyang Panef317e4372023-05-19 01:30:0871 'args': [
72 # https://crbug.com/1289764
73 '--gtest_filter=-All/ChromeBrowsingDataLifetimeManagerScheduledRemovalTest.History/*',
74 ],
Haiyang Pan42c77cd92023-05-18 01:13:0375 'swarming': {
76 'shards': 4,
77 },
78 },
79 'android-13-x64-fyi-rel': {
Haiyang Panef317e4372023-05-19 01:30:0880 'args': [
81 # https://crbug.com/1414886
82 '--gtest_filter=-OfferNotificationControllerAndroidBrowserTestForMessagesUi.MessageShown',
Haiyang Panef317e4372023-05-19 01:30:0883 ],
Haiyang Pan42c77cd92023-05-18 01:13:0384 'swarming': {
85 'shards': 4,
86 },
87 },
Haiyang Pan1b8faa20b2023-02-10 23:44:3688 'android-13-x64-rel': {
89 'args': [
90 # https://crbug.com/1414886
91 '--gtest_filter=-OfferNotificationControllerAndroidBrowserTestForMessagesUi.MessageShown',
92 ],
Haiyang Pand5524452023-04-25 01:56:4093 'swarming': {
94 'shards': 4,
95 },
Haiyang Panc1192662022-03-09 00:09:0296 },
Mateusz Zbikowskif1418432023-08-04 18:00:3197 'android-code-coverage-native': {
98 'swarming': {
99 'shards': 3,
100 },
101 },
Prakharc60ec802023-03-06 07:49:29102 # If you change this, make similar changes in android-x86-code-coverage below
Haiyang Panb41ca5f2023-07-10 23:11:31103 'android-oreo-x86-rel': {
104 'ci_only': True,
105 'swarming': {
106 'shards': 9,
107 },
108 },
Andrew Luo38b311f2019-10-04 03:42:09109 'android-pie-arm64-rel': {
Andrew Luobe83fd82019-12-19 03:07:58110 'args': [
111 '--gtest_filter=-ImportantSitesUtilBrowserTest.DSENotConsideredImportantInRegularMode', # https://crbug.com/1034001
112 ],
Haiyang Panfbd2b482020-09-23 23:41:25113 'swarming': {
Haiyang Pan1325c56a2023-10-11 22:08:29114 'dimensions': {
115 'device_type': 'crosshatch',
116 },
James Shen55b32142023-06-22 00:27:53117 # TODO(crbug/1456515): Temporarily increase the shard by 1 for the surging number of tests.
118 # Recover to original number of shards(4) after the bug is fixed.
119 'shards': 5,
Haiyang Panfbd2b482020-09-23 23:41:25120 },
Andrew Luo38b311f2019-10-04 03:42:09121 },
Haiyang Pan08d09dc2020-04-01 16:11:21122 'android-pie-x86-rel': {
John Budorick191adfcd2020-01-29 18:19:04123 'args': [
124 '--gtest_filter=-ImportantSitesUtilBrowserTest.DSENotConsideredImportantInRegularMode', # https://crbug.com/1034001
125 ],
Haiyang Pan7cd609d2021-04-08 20:17:24126 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:25127 'dimensions': {
128 'cores': '8', # crbug.com/1292221
129 },
Mateusz Zbikowski1dd1e5c2023-11-28 23:29:33130 'shards': 3,
Haiyang Pan7cd609d2021-04-08 20:17:24131 },
John Budorick191adfcd2020-01-29 18:19:04132 },
Haiyang Pan2c4c5e922023-10-09 22:57:31133 # Keep this same as android-oreo-x86-rel above
Prakharc60ec802023-03-06 07:49:29134 'android-x86-code-coverage': {
135 'ci_only': True,
136 'swarming': {
137 'shards': 9,
138 },
139 },
Andrew Luo38b311f2019-10-04 03:42:09140 },
141 },
Hao Wu11b78fe72023-06-20 18:56:36142 'android_browsertests_no_fieldtrial': {
Hao Wu84be41c2023-06-28 23:36:04143 'modifications': {
144 'android-12-x64-rel': {
145 # TODO(crbug.com/1225851): Remove experiment and ci_only
146 # once the test suite is stable.
147 'experiment_percentage': 100,
148 'args': [
149 # https://crbug.com/1289764
150 '--gtest_filter=-All/ChromeBrowsingDataLifetimeManagerScheduledRemovalTest.History/*',
151 ],
152 }
153 },
Hao Wu11b78fe72023-06-20 18:56:36154 'remove_from': [
155 'android-12l-x64-fyi-dbg',
156 ],
157 },
Sven Zhengc60debc2020-09-10 18:40:52158 'android_sync_integration_tests': {
James Shen9e4c19e2022-04-15 17:57:50159 'modifications': {
160 'android-12-x64-rel': {
161 'swarming': {
162 'shards': 3,
163 },
164 },
Zhaoyang Lie59aa5d82023-08-31 16:57:25165 'android-code-coverage-native': {
166 'swarming': {
167 'shards': 2,
168 },
169 },
Prakharc60ec802023-03-06 07:49:29170 # If you change this, make similar changes in android-x86-code-coverage below
Haiyang Panb41ca5f2023-07-10 23:11:31171 'android-oreo-x86-rel': {
172 'ci_only': True,
173 'swarming': {
174 'shards': 2,
175 },
176 },
Haiyang Pan2c4c5e922023-10-09 22:57:31177 # Keep this same as android-oreo-x86-rel above
Prakharc60ec802023-03-06 07:49:29178 'android-x86-code-coverage': {
179 'ci_only': True,
180 'swarming': {
181 'shards': 2,
182 },
183 },
James Shen9e4c19e2022-04-15 17:57:50184 },
Sven Zhengc60debc2020-09-10 18:40:52185 },
Kenneth Russelleb60cbd22017-12-05 07:54:28186 'android_webview_unittests': {
Kenneth Russelleb60cbd22017-12-05 07:54:28187 },
Jamie Madillc9ae75d2020-10-23 19:19:48188 'angle_unittests': {
189 'remove_from': [
190 # On Android, these are already run on the main waterfall.
191 'Android FYI Release (Nexus 5X)',
Yuly Novikovc1117ae82021-01-15 22:33:36192 # Times out listing tests crbug.com/1167314
193 'android-asan',
Jamie Madillc9ae75d2020-10-23 19:19:48194 # Does not currently work on Lacros configurations.
Sven Zheng93bfaa92022-06-09 17:06:03195 'linux-lacros-asan-lsan-rel',
Junhua Chen39dd2dba2021-05-05 17:51:54196 'linux-lacros-code-coverage',
Jamie Madillc9ae75d2020-10-23 19:19:48197 'linux-lacros-tester-rel',
198 'linux-lacros-tester-fyi-rel',
Yuke Liaof27ebe52021-08-05 22:12:40199 'linux-lacros-dbg-tests-fyi',
Jamie Madillc9ae75d2020-10-23 19:19:48200 ],
Chong Gua10cd302022-01-14 19:22:19201 'modifications': {
202 # anglebug.com/6894
203 'fuchsia-fyi-x64-asan': {
204 'args': [
205 # crbug.com/
206 '--gtest_filter=-ConstructCompilerTest.DefaultParameters',
207 ],
208 },
209 },
Jamie Madillc9ae75d2020-10-23 19:19:48210 },
Eriko Kurimoto61a85332022-10-19 05:19:45211 'ash_crosapi_tests': {
212 'remove_from': [
213 # Disabling MSan tests since linux-chromeos chrome crashes on MSan build.
214 # TODO(crbug.com/1376064): Re-enable.
215 'Linux ChromiumOS MSan Tests',
216 ]
217 },
Chong Gudf7fbe92021-02-24 02:55:58218 'base_unittests': {
219 'modifications': {
Ben Joycea0319112022-11-15 23:53:12220 'ToTAndroid': {
221 'args': [
222 '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_tot.base_unittests.filter',
223 ],
224 },
Haiyang Pan2a55a452022-03-03 08:18:33225 'android-12-x64-rel': {
Haiyang Panc08d02212021-10-18 18:58:38226 'args': [
Haiyang Pan32338b72023-02-08 23:48:58227 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.base_unittests.filter',
228 ],
229 },
230 'android-12l-x64-dbg-tests': {
231 'args': [
232 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.base_unittests.filter',
233 ],
234 },
Haiyang Panef317e4372023-05-19 01:30:08235 'android-12l-x64-fyi-dbg': {
236 'args': [
237 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.base_unittests.filter',
238 ],
239 },
240 'android-13-x64-fyi-rel': {
241 'args': [
242 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.base_unittests.filter',
243 ],
244 },
Haiyang Pan32338b72023-02-08 23:48:58245 'android-13-x64-rel': {
246 'args': [
247 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.base_unittests.filter',
Haiyang Panc7c009e2021-03-18 19:31:23248 ],
249 },
Chong Gudf7fbe92021-02-24 02:55:58250 'fuchsia-code-coverage': {
251 'swarming': {
252 'shards': 5,
253 },
254 },
Chong Gua10cd302022-01-14 19:22:19255 'fuchsia-fyi-x64-asan': {
256 'args': [
257 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.lsan.base_unittests.filter',
258 ],
259 },
Chong Gudf7fbe92021-02-24 02:55:58260 },
261 },
James Shen5df9af872022-10-28 01:32:15262 'bf_cache_content_browsertests': {
263 'modifications': {
264 'android-bfcache-rel': {
265 'args': [
James Shen3c36a1d2023-08-11 22:35:18266 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_o.content_browsertests.filter',
James Shen5df9af872022-10-28 01:32:15267 ],
James Shen2c574ce02022-11-03 22:59:23268 'swarming': {
269 'shards': 15,
270 },
James Shen5df9af872022-10-28 01:32:15271 }
272 }
273 },
Haiyang Pan363c59a2020-07-23 05:47:04274 'blink_platform_unittests': {
275 'modifications': {
Haiyang Panfbd2b482020-09-23 23:41:25276 'android-pie-arm64-rel': {
277 # TODO(crbug.com/1111436): Move this back to walleye if/when additional
278 # capacity has been deployed.
279 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:25280 'dimensions': {
Haiyang Pan1325c56a2023-10-11 22:08:29281 'device_type': 'crosshatch',
Garrett Beatyade673d2023-08-04 22:00:25282 },
Haiyang Panfbd2b482020-09-23 23:41:25283 },
284 },
Chong Gu52481452021-04-02 17:52:41285 'fuchsia-code-coverage': {
286 'swarming': {
287 'shards': 5,
288 },
289 },
Haiyang Pan363c59a2020-07-23 05:47:04290 },
291 },
Brian Sheedy944d0622022-07-27 20:42:42292 'blink_pytype': {
293 'remove_from': [
294 'linux-code-coverage',
295 ],
296 },
Chong Gu76046412021-09-22 17:49:21297 'blink_unittests': {
Chong Guc2d145e2021-03-31 19:55:34298 'modifications': {
299 'fuchsia-code-coverage': {
300 'swarming': {
301 'shards': 30,
302 },
303 },
304 },
305 },
John Chenaab16fc02020-03-03 06:35:45306 'blink_web_tests': {
307 'remove_from': [
John Chenaab16fc02020-03-03 06:35:45308 'Win10 Tests x64 (dbg)',
309 ],
310 'modifications': {
John Chenaab16fc02020-03-03 06:35:45311 'Linux Tests': {
312 "args": [
313 "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw",
314 ],
Struan Shrimpton57c594e42022-01-25 17:59:13315 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51316 'shards': 8,
Struan Shrimpton57c594e42022-01-25 17:59:13317 },
John Chenaab16fc02020-03-03 06:35:45318 },
319 'Linux Tests (dbg)(1)': {
320 'args': [
321 '--debug',
322 ],
323 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51324 'shards': 12,
John Chenaab16fc02020-03-03 06:35:45325 },
326 },
Zhaoyang Li69e2e002021-02-19 21:57:35327 'Mac10.15 Tests': {
328 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:25329 'dimensions': {
330 'gpu': None,
331 },
vivianz44d8b6102023-10-27 19:28:04332 'shards': 1,
Zhaoyang Li69e2e002021-02-19 21:57:35333 },
334 },
Lindsay Pasricha8d9a0c32021-12-08 17:08:29335 'Mac11 Tests': {
336 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:25337 'dimensions': {
338 'gpu': None,
339 },
Weizhong Xia8b786422022-06-23 14:46:51340 'shards': 12,
Lindsay Pasricha8d9a0c32021-12-08 17:08:29341 },
342 },
Yue She0cad2922022-06-24 15:06:07343 'Mac12 Tests': {
Jie Sheng102288f2023-11-28 23:40:29344 # TODO(crbug.com/1479108): Remove this once the bug is fixed.
345 'args': [
346 '--driver-logging',
347 ],
Yue She0cad2922022-06-24 15:06:07348 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:25349 'dimensions': {
350 'gpu': None,
351 },
Lindsay Pasrichadf6edb62022-07-06 22:08:35352 'shards': 12,
Yue She0cad2922022-06-24 15:06:07353 },
354 },
Yue Shed8e45742023-06-01 15:18:03355 'Mac13 Tests': {
356 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:25357 'dimensions': {
358 'gpu': None,
359 },
Yue Shed8e45742023-06-01 15:18:03360 'shards': 12,
361 },
362 },
Cameron Higgins2e4b7f12023-05-31 18:29:32363 'Mac13 Tests (dbg)': {
Zhaoyang Li9357e1e12021-12-07 18:53:17364 'args': [
365 '--debug',
366 ],
367 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51368 'shards': 16,
Zhaoyang Li9357e1e12021-12-07 18:53:17369 },
370 },
Chong Gu75af969a2021-03-22 14:46:14371 'ToTFuchsia x64': {
372 'args': [
373 '--platform=fuchsia',
374 ],
375 'swarming': {
376 'shards': 1,
377 },
378 },
John Chenaab16fc02020-03-03 06:35:45379 'V8 Blink Linux Debug': {
Michael Achenbach455d39242020-06-22 13:33:45380 # This builder compiles Chromium in release mode, but V8 in debug.
381 # TODO(machenbach): Change name and out directory of this builder to
382 # something less confusing.
John Chenaab16fc02020-03-03 06:35:45383 'args': [
Michael Achenbach455d39242020-06-22 13:33:45384 '-t',
385 'Debug',
386 '--release',
John Chenaab16fc02020-03-03 06:35:45387 ],
388 },
389 'V8 Blink Linux Future': {
390 'args': [
Brian Sheedy10ddf0a2021-08-16 23:19:07391 '--flag-specific=future-js',
John Chenaab16fc02020-03-03 06:35:45392 ],
393 },
394 'WebKit Linux ASAN': {
395 'args': [
396 '--additional-expectations',
397 '../../third_party/blink/web_tests/ASANExpectations',
Weizhong Xia91b53362022-01-05 17:13:35398 '--timeout-ms',
John Chenaab16fc02020-03-03 06:35:45399 '48000',
400 '--enable-sanitizer',
401 ],
402 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51403 'shards': 8,
John Chenaab16fc02020-03-03 06:35:45404 },
405 },
406 'WebKit Linux Leak': {
407 'args': [
408 '--additional-expectations',
409 '../../third_party/blink/web_tests/LeakExpectations',
Weizhong Xia91b53362022-01-05 17:13:35410 '--timeout-ms',
John Chenaab16fc02020-03-03 06:35:45411 '48000',
412 '--enable-leak-detection',
413 ],
414 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51415 'shards': 4,
John Chenaab16fc02020-03-03 06:35:45416 },
417 },
418 'WebKit Linux MSAN': {
419 'args': [
420 '--additional-expectations',
421 '../../third_party/blink/web_tests/MSANExpectations',
Weizhong Xia91b53362022-01-05 17:13:35422 '--timeout-ms',
John Chenaab16fc02020-03-03 06:35:45423 '66000',
424 '--enable-sanitizer',
425 ],
426 'swarming': {
427 'expiration': 36000,
428 'hard_timeout': 10800,
429 'io_timeout': 3600,
Weizhong Xia8b786422022-06-23 14:46:51430 'shards': 8,
John Chenaab16fc02020-03-03 06:35:45431 },
432 },
John Chenaab16fc02020-03-03 06:35:45433 'Win10 Tests x64': {
434 'args': [
435 '--target',
Takuto Ikutab28b582e2021-02-10 01:41:21436 'Release_x64',
John Chenaab16fc02020-03-03 06:35:45437 ],
438 'swarming': {
Weizhong Xiaf0b8e6df2023-07-17 23:40:13439 # blink_web_tests has issues on non-broadwell machines.
440 # see https://crbug.com/1458859
Garrett Beatyade673d2023-08-04 22:00:25441 'dimensions': {
442 'cpu': 'x86-64-Broadwell_GCE',
443 },
Struan Shrimpton5786bfd02023-01-11 00:47:54444 "shards": 12,
John Chenaab16fc02020-03-03 06:35:45445 },
446 },
447 'Win10 Tests x64 (dbg)': {
448 'args': [
449 '--debug',
450 '--target',
Takuto Ikutab28b582e2021-02-10 01:41:21451 'Debug_x64',
John Chenaab16fc02020-03-03 06:35:45452 ],
453 },
Kuan Huanga89737d2022-01-07 19:42:11454 'Win11 Tests x64': {
455 'args': [
456 '--target',
457 'Release_x64',
458 ],
459 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51460 "shards": 12
Kuan Huanga89737d2022-01-07 19:42:11461 },
462 },
John Chenaab16fc02020-03-03 06:35:45463 # tryserver.chromium.android
464 'android_blink_rel': {
465 'args': [
466 '--release',
467 '--android',
John Chenaab16fc02020-03-03 06:35:45468 # TODO(crbug.com/875172): run on the real GPU since the
469 # software fallback, SwiftShader, isn't yet for 32-bit ARM.
470 '--additional-driver-flag=--use-gpu-in-tests',
471 ],
472 },
473 'devtools_frontend_linux_blink_light_rel': {
474 'args': [
475 'http/tests/devtools',
476 ],
477 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51478 'shards': 2,
John Chenaab16fc02020-03-03 06:35:45479 },
480 },
Takuto Ikutabace8f82022-01-26 23:47:47481 'devtools_frontend_linux_blink_light_rel_fastbuild': {
482 'args': [
483 'http/tests/devtools',
484 ],
485 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51486 'shards': 2,
Takuto Ikutabace8f82022-01-26 23:47:47487 },
488 },
David Dorwinf060a72d2022-10-05 22:09:03489 'fuchsia-x64-cast-receiver-rel': {
John Chenaab16fc02020-03-03 06:35:45490 'args': [
491 '--platform=fuchsia',
David Dorwinf060a72d2022-10-05 22:09:03492 '--jobs=1',
John Chenaab16fc02020-03-03 06:35:45493 ],
494 'swarming': {
495 'shards': 1,
496 },
497 },
David Dorwin49b2ddb2022-09-08 20:49:43498 'fuchsia-x64-rel': {
499 'args': [
500 '--platform=fuchsia',
501 '--jobs=1',
502 ],
503 'swarming': {
504 'shards': 1,
505 },
506 },
John Chenaab16fc02020-03-03 06:35:45507 'linux-blink-animation-use-time-delta': {
508 'args': [
509 '--debug',
510 ],
511 },
Jonathan Leed3ba7bf2023-01-13 21:15:16512 'linux-blink-rel': {
513 'swarming': {
514 'hard_timeout': 2400,
515 },
516 },
Daniel Libby178c9832020-10-08 20:36:14517 'linux-blink-web-tests-force-accessibility-rel': {
518 'args': [
Brian Sheedy10ddf0a2021-08-16 23:19:07519 '--flag-specific=force-renderer-accessibility',
Daniel Libby178c9832020-10-08 20:36:14520 ],
Dirk Pranke74631662023-10-12 21:31:18521 'swarming': {
522 'shards': 20,
523 },
Daniel Libby178c9832020-10-08 20:36:14524 },
W. James MacLeance9b3a62022-10-05 16:58:58525 'linux-blink-wpt-reset-rel': {
526 'args': [
527 '--additional-driver-flag=--force-browsing-instance-reset-between-tests',
528 ],
529 # The flag above will slow the tests down, and we don't want the bot to
530 # timeout, so set a higher timeout here.
531 # TODO(wjmaclean): It would be nice if we could somehow specify a delta
532 # to the default/inherited timeout instead of an absolute.
533 'swarming': {
534 'hard_timeout': 1500,
535 },
536 },
John Chenaab16fc02020-03-03 06:35:45537 'linux-code-coverage': {
538 'args': [
Prakharbe44338a2023-05-24 19:02:04539 '--additional-driver-flag=--no-sandbox',
Prakhar647debb2023-08-31 23:01:41540 '--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw',
John Chenaab16fc02020-03-03 06:35:45541 ],
542 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51543 'shards': 8,
John Chenaab16fc02020-03-03 06:35:45544 },
545 },
Aaron Gable40f79aa2020-03-21 01:21:15546 'linux-layout-tests-edit-ng': {
547 'args': [
Brian Sheedy10ddf0a2021-08-16 23:19:07548 '--flag-specific=enable-editing-ng',
Aaron Gable40f79aa2020-03-21 01:21:15549 ],
550 },
Thiago Perrotta61487462023-01-20 12:52:32551 'linux-rel-cft': {
552 "args": [
Michael Lippautz60aa8f32023-05-24 14:27:02553 '--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw',
554 '--test-launcher-filter-file=../../testing/buildbot/filters/cft.blink_web_tests.filter',
555 '--flag-specific=chrome-for-testing',
Thiago Perrotta61487462023-01-20 12:52:32556 ],
557 'swarming': {
558 'shards': 8,
559 },
560 },
SrinivasBathula90213d62023-02-27 06:12:18561 'mac-osxbeta-rel': {
562 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:25563 'dimensions': {
564 'gpu': None
565 },
SrinivasBathula90213d62023-02-27 06:12:18566 'shards': 10,
567 },
568 },
Thiago Perrottaa289bad2023-01-20 12:44:39569 'mac-rel-cft': {
Thiago Perrotta4085d56b2023-03-22 23:05:09570 "args": [
571 '--test-launcher-filter-file=../../testing/buildbot/filters/cft.blink_web_tests.filter',
572 ],
Thiago Perrottaa289bad2023-01-20 12:44:39573 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:25574 'dimensions': {
575 'gpu': None,
576 },
Thiago Perrottaa289bad2023-01-20 12:44:39577 'shards': 12,
Thiago Perrottaa289bad2023-01-20 12:44:39578 },
579 },
Riley Wong89d6dc72022-09-08 20:29:07580 'mac10.15-blink-rel': {
581 'swarming': {
vivianz44d8b6102023-10-27 19:28:04582 'shards': 1,
Weizhong Xia21063c72022-11-09 23:48:30583 'hard_timeout': 2400,
Riley Wong89d6dc72022-09-08 20:29:07584 },
585 },
Riley Wongc20ba4a2022-09-12 17:06:31586 'mac11.0-blink-rel': {
587 'swarming': {
588 'shards': 5,
Weizhong Xia21063c72022-11-09 23:48:30589 'hard_timeout': 2400,
590 },
591 },
592 'mac11.0.arm64-blink-rel': {
593 'swarming': {
594 'hard_timeout': 2400,
595 },
596 },
Jie Sheng102288f2023-11-28 23:40:29597 'mac12-arm64-rel-tests': {
598 'args': [
599 '--driver-logging',
600 ],
601 },
Weizhong Xia21063c72022-11-09 23:48:30602 'mac12.0-blink-rel': {
603 'swarming': {
604 'hard_timeout': 2400,
605 },
606 },
607 'mac12.0.arm64-blink-rel': {
608 'swarming': {
609 'hard_timeout': 2400,
Riley Wongc20ba4a2022-09-12 17:06:31610 },
611 },
Thiago Perrotta770925d42023-01-17 18:38:51612 'win-rel-cft': {
613 'args': [
614 '--target',
615 'Release_x64',
Michael Lippautz60aa8f32023-05-24 14:27:02616 '--test-launcher-filter-file=../../testing/buildbot/filters/cft.blink_web_tests.filter',
Thiago Perrotta770925d42023-01-17 18:38:51617 ],
Thiago Perrotta314f7b02023-01-19 21:30:53618 'swarming': {
619 "shards": 12,
Thiago Perrotta314f7b02023-01-19 21:30:53620 },
Thiago Perrotta770925d42023-01-17 18:38:51621 },
Ben Pasteneebad8fc2022-08-12 23:34:28622 'win10-rel-no-external-ip': {
623 'args': [
624 '--target',
625 'Release_x64',
626 ],
627 'swarming': {
628 "shards": 12
629 },
630 },
Riley Wong5feb0eb2022-08-05 15:49:26631 'win10.20h2-blink-rel': {
632 'swarming': {
633 'shards': 6,
Weizhong Xia21063c72022-11-09 23:48:30634 'hard_timeout': 2400,
Riley Wong5feb0eb2022-08-05 15:49:26635 },
636 },
Nihar Damarasinguf31a5cc2023-05-24 18:38:06637 'win11-arm64-blink-rel': {
638 'swarming': {
639 'hard_timeout': 2400,
640 },
641 'args': [
642 '--target',
643 'Release_x64',
644 ],
645 },
Weizhong Xia8b786422022-06-23 14:46:51646 'win11-blink-rel': {
647 'swarming': {
Weizhong Xia21063c72022-11-09 23:48:30648 'hard_timeout': 2400,
Weizhong Xia8b786422022-06-23 14:46:51649 },
650 'args': [
651 '--target',
652 'Release_x64',
653 ],
654 },
655 },
656 },
657 'blink_wpt_tests': {
658 'remove_from': [
Weizhong Xia8b786422022-06-23 14:46:51659 'Win10 Tests x64 (dbg)',
Weizhong Xia6d85a442022-06-23 17:17:06660 'devtools_frontend_linux_blink_light_rel',
661 'devtools_frontend_linux_blink_light_rel_fastbuild',
Thiago Perrotta4085d56b2023-03-22 23:05:09662 'linux-rel-cft',
663 'mac-rel-cft',
664 'win-rel-cft',
Weizhong Xia8b786422022-06-23 14:46:51665 ],
666 'modifications': {
Weizhong Xia8b786422022-06-23 14:46:51667 'Linux Tests': {
668 "args": [
669 "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw",
670 ],
671 'swarming': {
Weizhong Xia8b786422022-06-23 14:46:51672 'shards': 10,
673 },
674 },
675 'Linux Tests (dbg)(1)': {
676 'args': [
677 '--debug',
678 ],
679 'swarming': {
680 'shards': 18,
681 },
682 },
Weizhong Xia8b786422022-06-23 14:46:51683 'Mac10.15 Tests': {
684 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:25685 'dimensions': {
686 'gpu': None,
687 },
vivianz44d8b6102023-10-27 19:28:04688 'shards': 1,
Weizhong Xia8b786422022-06-23 14:46:51689 },
690 },
691 'Mac11 Tests': {
692 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:25693 'dimensions': {
694 'gpu': None,
695 },
Weizhong Xia8b786422022-06-23 14:46:51696 'shards': 18,
Weizhong Xia8b786422022-06-23 14:46:51697 },
698 },
Lindsay Pasrichadf6edb62022-07-06 22:08:35699 'Mac12 Tests': {
Jie Sheng102288f2023-11-28 23:40:29700 'args': [
701 '--driver-logging',
702 ],
Lindsay Pasrichadf6edb62022-07-06 22:08:35703 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:25704 'dimensions': {
705 'gpu': None,
706 },
Lindsay Pasrichadf6edb62022-07-06 22:08:35707 'shards': 18,
Lindsay Pasrichadf6edb62022-07-06 22:08:35708 },
709 },
Yue Shed8e45742023-06-01 15:18:03710 'Mac13 Tests': {
711 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:25712 'dimensions': {
713 'gpu': None,
714 },
Yue Shed8e45742023-06-01 15:18:03715 'shards': 18,
716 },
717 },
Cameron Higgins2e4b7f12023-05-31 18:29:32718 'Mac13 Tests (dbg)': {
Weizhong Xia8b786422022-06-23 14:46:51719 'args': [
720 '--debug',
721 ],
722 'swarming': {
723 'shards': 24,
724 },
725 },
726 'ToTFuchsia x64': {
727 'args': [
728 '--platform=fuchsia',
729 ],
730 'swarming': {
731 'shards': 1,
732 },
733 },
734 'V8 Blink Linux Debug': {
735 # This builder compiles Chromium in release mode, but V8 in debug.
736 # TODO(machenbach): Change name and out directory of this builder to
737 # something less confusing.
738 'args': [
739 '-t',
740 'Debug',
741 '--release',
742 ],
743 },
744 'V8 Blink Linux Future': {
745 'args': [
746 '--flag-specific=future-js',
747 ],
748 },
749 'WebKit Linux ASAN': {
750 'args': [
751 '--additional-expectations',
752 '../../third_party/blink/web_tests/ASANExpectations',
753 '--timeout-ms',
754 '48000',
755 '--enable-sanitizer',
756 ],
757 'swarming': {
758 'shards': 12,
759 },
760 },
761 'WebKit Linux Leak': {
762 'args': [
763 '--additional-expectations',
764 '../../third_party/blink/web_tests/LeakExpectations',
765 '--timeout-ms',
766 '48000',
767 '--enable-leak-detection',
768 ],
769 'swarming': {
770 'shards': 6,
771 },
772 },
773 'WebKit Linux MSAN': {
774 'args': [
775 '--additional-expectations',
776 '../../third_party/blink/web_tests/MSANExpectations',
777 '--timeout-ms',
778 '66000',
779 '--enable-sanitizer',
780 ],
781 'swarming': {
782 'expiration': 36000,
783 'hard_timeout': 10800,
784 'io_timeout': 3600,
785 'shards': 12,
786 },
787 },
788 'Win10 Tests x64': {
789 'args': [
790 '--target',
791 'Release_x64',
792 ],
793 'swarming': {
Struan Shrimpton5786bfd02023-01-11 00:47:54794 "shards": 18,
Weizhong Xia8b786422022-06-23 14:46:51795 },
796 },
797 'Win10 Tests x64 (dbg)': {
798 'args': [
799 '--debug',
800 '--target',
801 'Debug_x64',
802 ],
803 },
804 'Win11 Tests x64': {
805 'args': [
806 '--target',
807 'Release_x64',
808 ],
809 'swarming': {
810 "shards": 18
811 },
812 },
813 # tryserver.chromium.android
814 'android_blink_rel': {
815 'args': [
816 '--release',
817 '--android',
Weizhong Xia8b786422022-06-23 14:46:51818 # TODO(crbug.com/875172): run on the real GPU since the
819 # software fallback, SwiftShader, isn't yet for 32-bit ARM.
820 '--additional-driver-flag=--use-gpu-in-tests',
821 ],
822 },
David Dorwinf060a72d2022-10-05 22:09:03823 'fuchsia-x64-cast-receiver-rel': {
Weizhong Xia8b786422022-06-23 14:46:51824 'args': [
825 '--platform=fuchsia',
David Dorwinf060a72d2022-10-05 22:09:03826 '--jobs=1',
Weizhong Xia8b786422022-06-23 14:46:51827 ],
828 'swarming': {
829 'shards': 1,
830 },
831 },
David Dorwin49b2ddb2022-09-08 20:49:43832 'fuchsia-x64-rel': {
833 'args': [
834 '--platform=fuchsia',
835 '--jobs=1',
836 ],
837 'swarming': {
838 'shards': 1,
839 },
840 },
Weizhong Xia8b786422022-06-23 14:46:51841 'linux-bfcache-rel': {
842 'args': [
Weizhong Xia8b786422022-06-23 14:46:51843 # TODO(crbug.com/1255537): Re-enable the test.
844 '--ignore-tests=external/wpt/html/browsers/browsing-the-web/back-forward-cache/events.html',
845 ],
846 },
847 'linux-blink-animation-use-time-delta': {
848 'args': [
849 '--debug',
850 ],
851 },
Jonathan Leed3ba7bf2023-01-13 21:15:16852 'linux-blink-rel': {
853 'swarming': {
854 'hard_timeout': 2400,
855 },
856 },
Weizhong Xia8b786422022-06-23 14:46:51857 'linux-blink-web-tests-force-accessibility-rel': {
858 'args': [
859 '--flag-specific=force-renderer-accessibility',
860 ],
861 },
W. James MacLeance9b3a62022-10-05 16:58:58862 'linux-blink-wpt-reset-rel': {
863 'args': [
864 '--additional-driver-flag=--force-browsing-instance-reset-between-tests',
865 ],
866 },
Weizhong Xia8b786422022-06-23 14:46:51867 'linux-code-coverage': {
868 'args': [
Prakharbe44338a2023-05-24 19:02:04869 '--additional-driver-flag=--no-sandbox',
Prakhar647debb2023-08-31 23:01:41870 '--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw',
Weizhong Xia8b786422022-06-23 14:46:51871 ],
Weizhong Xia8b786422022-06-23 14:46:51872 },
873 'linux-layout-tests-edit-ng': {
874 'args': [
875 '--flag-specific=enable-editing-ng',
876 ],
877 },
Thiago Perrotta61487462023-01-20 12:52:32878 'linux-rel-cft': {
879 "args": [
880 "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw",
Michael Lippautz8f4016b2023-06-13 16:18:33881 '--flag-specific=chrome-for-testing',
Thiago Perrotta61487462023-01-20 12:52:32882 ],
883 'swarming': {
884 'shards': 10,
885 },
886 },
SrinivasBathula90213d62023-02-27 06:12:18887 'mac-osxbeta-rel': {
888 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:25889 'dimensions': {
890 'gpu': None
891 },
SrinivasBathula90213d62023-02-27 06:12:18892 'shards': 7,
893 },
894 },
Thiago Perrottaa289bad2023-01-20 12:44:39895 'mac-rel-cft': {
896 'args': [
897 '--driver-logging',
898 ],
899 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:25900 'dimensions': {
901 'gpu': None,
902 },
Thiago Perrottaa289bad2023-01-20 12:44:39903 'shards': 18,
Thiago Perrottaa289bad2023-01-20 12:44:39904 },
905 },
Riley Wong89d6dc72022-09-08 20:29:07906 'mac10.15-blink-rel': {
907 'swarming': {
Jonathan Leec20a7458a2023-11-06 18:22:56908 'shards': 1,
Weizhong Xia21063c72022-11-09 23:48:30909 'hard_timeout': 2400,
Riley Wong89d6dc72022-09-08 20:29:07910 },
911 },
Riley Wongc20ba4a2022-09-12 17:06:31912 'mac11.0-blink-rel': {
913 'swarming': {
914 'shards': 7,
Weizhong Xia21063c72022-11-09 23:48:30915 'hard_timeout': 2400,
916 },
917 },
918 'mac11.0.arm64-blink-rel': {
919 'swarming': {
920 'hard_timeout': 2400,
921 },
922 },
Jie Sheng102288f2023-11-28 23:40:29923 'mac12-arm64-rel-tests': {
924 'args': [
925 '--driver-logging',
926 ],
927 },
Weizhong Xia21063c72022-11-09 23:48:30928 'mac12.0-blink-rel': {
929 'swarming': {
930 'hard_timeout': 2400,
931 },
932 },
933 'mac12.0.arm64-blink-rel': {
934 'swarming': {
935 'hard_timeout': 2400,
Riley Wongc20ba4a2022-09-12 17:06:31936 },
937 },
Thiago Perrotta770925d42023-01-17 18:38:51938 'win-rel-cft': {
939 'args': [
940 '--target',
941 'Release_x64',
942 ],
Thiago Perrotta314f7b02023-01-19 21:30:53943 'swarming': {
944 "shards": 18,
Thiago Perrotta314f7b02023-01-19 21:30:53945 },
Thiago Perrotta770925d42023-01-17 18:38:51946 },
Ben Pasteneebad8fc2022-08-12 23:34:28947 'win10-rel-no-external-ip': {
948 'args': [
949 '--target',
950 'Release_x64',
951 ],
952 'swarming': {
953 "shards": 18
954 },
955 },
Riley Wong5feb0eb2022-08-05 15:49:26956 'win10.20h2-blink-rel': {
957 'swarming': {
958 'shards': 9,
Weizhong Xia21063c72022-11-09 23:48:30959 'hard_timeout': 2400,
Riley Wong5feb0eb2022-08-05 15:49:26960 },
961 },
Nihar Damarasinguf31a5cc2023-05-24 18:38:06962 'win11-arm64-blink-rel': {
963 'swarming': {
964 'hard_timeout': 2400,
965 },
966 'args': [
967 '--target',
968 'Release_x64',
969 ],
970 },
Riley Wong5fc22762022-06-15 20:25:07971 'win11-blink-rel': {
972 'swarming': {
Weizhong Xia21063c72022-11-09 23:48:30973 'hard_timeout': 2400,
Riley Wong5fc22762022-06-15 20:25:07974 },
975 'args': [
976 '--target',
977 'Release_x64',
978 ],
Thiago Perrotta770925d42023-01-17 18:38:51979 },
John Chenaab16fc02020-03-03 06:35:45980 },
981 },
Kenneth Russelleb60cbd22017-12-05 07:54:28982 'browser_tests': {
Kenneth Russellfbda3c532017-12-08 23:57:24983 'remove_from': [
Brad Halla36886c2019-02-26 16:52:29984 'CrWinAsan(dll)', # https://crbug.com/935598
Nico Weber3af4da72018-02-27 01:59:41985 'linux-win_cross-rel',
Nico Weberdae13cd92018-12-14 13:56:26986 'ToTLinuxTSan', # https://crbug.com/368525
Lindsay Pasrichab3f72db2021-09-22 22:05:46987 # TODO(crbug.com/1171053): Enable the suite in 'Mac10.15 Tests' once it's
Zhaoyang Li69e2e002021-02-19 21:57:35988 # off CQ.
Cameron Higgins2e4b7f12023-05-31 18:29:32989 'Mac13 Tests (dbg)', # https://crbug.com/1201386
Lindsay Pasricha8155d052021-04-22 00:06:43990 'mac-code-coverage', # https://crbug.com/1201386
Lindsay Pasricha23227912023-01-11 22:36:34991 'mac11-arm64-rel-tests', # https://crbug.com/1406364
992 'mac12-arm64-rel-tests', # https://crbug.com/1406364
Will Yeagera090e6a2023-06-09 14:59:41993 'mac13-arm64-rel-tests', # https://crbug.com/1406364
Nico Weberd36959682018-04-12 03:33:46994 'Linux TSan Tests', # https://crbug.com/368525
Ian Struiksma2e23f962023-05-26 22:37:20995 'linux-exp-tsan-fyi-rel', # https://crbug.com/368525
Stephen Martinise701f5a2018-05-04 01:25:11996 'Win10 Tests x64 (dbg)',
Kenneth Russellfbda3c532017-12-08 23:57:24997 ],
Kenneth Russelleb60cbd22017-12-05 07:54:28998 'modifications': {
Nico Weber3f919792020-06-12 23:34:52999 'CrWinAsan': {
1000 # These are very slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:441001 # crbug.com/1257927
Nico Weber3f919792020-06-12 23:34:521002 'swarming': {
1003 'shards': 40,
1004 },
1005 },
1006 'CrWinAsan(dll)': {
1007 # These are very slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:441008 # crbug.com/1257927
Nico Weber3f919792020-06-12 23:34:521009 'swarming': {
1010 'shards': 40,
1011 },
1012 },
Stephen Martinis1384ff92020-01-07 19:52:151013 'Linux - Future (dbg)': { # client.v8.chromium
Yuke Liaoea70f472019-12-19 06:03:361014 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:151015 'shards': 10,
Yuke Liaoea70f472019-12-19 06:03:361016 },
1017 },
Stephen Martinis1384ff92020-01-07 19:52:151018 'Linux ASan LSan Tests (1)': {
Gregory Gutermanb6f9a972022-09-27 20:17:581019 'ci_only': True,
Stephen Martinis1384ff92020-01-07 19:52:151020 # These are very slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:441021 # crbug.com/1257927
Roberto Carrillo2c9ec972019-03-20 03:11:191022 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:151023 'shards': 40,
Roberto Carrillo2c9ec972019-03-20 03:11:191024 },
1025 },
Titouan Rigoudy3fbe2742022-09-09 17:10:141026 'Linux CFI': {
1027 'swarming': {
1028 'shards': 20, # https://crbug.com/1361973
1029 },
1030 },
Stephen Martinis1384ff92020-01-07 19:52:151031 'Linux Chromium OS ASan LSan Tests (1)': {
1032 # These are very slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:441033 # crbug.com/1257927
Ben Pastene4260f6a2023-10-31 00:48:251034 # And even more slow on linux-chromeos: crbug.com/1491533.
Roberto Carrillo5a5c98dc2019-10-30 22:33:511035 'swarming': {
Ben Pastene4260f6a2023-10-31 00:48:251036 'shards': 140,
1037 'hard_timeout': 7200,
Roberto Carrillo5a5c98dc2019-10-30 22:33:511038 },
1039 },
Stephen Martinis1384ff92020-01-07 19:52:151040 'Linux ChromiumOS MSan Tests': {
Alexis Hetua804f7412022-05-13 17:04:201041 # These are very slow on the Chrome OS MSAN trybot, most likely because browser_tests on cros has ~40% more tests. Also, these tests
1042 # 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:151043 # crbug.com/865455
Kenneth Russell56a3e862017-12-08 03:11:341044 'swarming': {
Tom Anderson1e776fcd2023-01-06 19:53:291045 'shards': 64,
Kenneth Russell56a3e862017-12-08 03:11:341046 },
Ben Pastene44221d32020-05-21 23:38:361047 'args': [
1048 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.msan.browser_tests.oobe_negative.filter',
1049 ],
Kenneth Russell56a3e862017-12-08 03:11:341050 },
Struan Shrimptona9b1d512022-09-13 16:09:421051 'Linux MSan Tests': {
1052 'swarming': {
Joshua Pawlicki7fc1edd2023-03-21 16:56:591053 'shards': 23,
Struan Shrimptona9b1d512022-09-13 16:09:421054 },
1055 },
Struan Shrimptonf5b2b552022-01-20 20:37:391056 'Linux Tests': {
Stephanie Kim3df2d0c82023-11-07 18:16:261057 # Only retry the individual failed tests instead of rerunning entire
1058 # shards.
1059 # crbug.com/1473501
1060 'retry_only_failed_tests': True,
Struan Shrimptonf5b2b552022-01-20 20:37:391061 'swarming': {
Stephanie Kim8332c7dd2022-11-07 20:03:491062 'shards': 20,
Struan Shrimptonf5b2b552022-01-20 20:37:391063 },
1064 },
Maksim Sisovc81d284c2021-10-05 17:54:351065 # https://crbug.com/1084469
1066 'Linux Tests (Wayland)': {
1067 'args': [
1068 '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.wayland_browser_tests.filter',
1069 ],
Stephanie Kim3df2d0c82023-11-07 18:16:261070 # Only retry the individual failed tests instead of rerunning entire
1071 # shards.
1072 # crbug.com/1473501
1073 'retry_only_failed_tests': True,
Struan Shrimptone772d72f2021-12-15 07:50:091074 'swarming': {
Stephanie Kim8332c7dd2022-11-07 20:03:491075 'shards': 20,
Struan Shrimptone772d72f2021-12-15 07:50:091076 },
Maksim Sisovc81d284c2021-10-05 17:54:351077 },
John Budorick614f91a2020-03-30 20:34:551078 'Linux Tests (dbg)(1)': {
1079 # crbug.com/1066161
Joshua Pawlicki2be547a2023-06-30 18:27:491080 # crbug.com/1459645
Pavol Marko86a60e92023-12-08 21:12:321081 # crbug.com/1508286
John Budorick614f91a2020-03-30 20:34:551082 'swarming': {
Pavol Marko86a60e92023-12-08 21:12:321083 'shards': 32,
John Budorick614f91a2020-03-30 20:34:551084 },
1085 },
Stephen Martinis1384ff92020-01-07 19:52:151086 'Mac ASan 64 Tests (1)': {
Kenneth Russellfbda3c532017-12-08 23:57:241087 'swarming': {
Stephen Martiniscd3c3832020-11-19 22:01:241088 'shards': 30,
Kenneth Russellfbda3c532017-12-08 23:57:241089 },
Lindsay Pasricha8155d052021-04-22 00:06:431090 # crbug.com/1196416
1091 'args': [
1092 '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac-rel.browser_tests.filter',
1093 ],
Lindsay Pasrichab3f72db2021-09-22 22:05:461094 'experiment_percentage': 100, # https://crbug.com/1251657
Kenneth Russellfbda3c532017-12-08 23:57:241095 },
Lindsay Pasricha727ede92023-02-27 16:27:331096 'Mac Builder Next': {
1097 'swarming': {
1098 'shards': 20, # crbug.com/1419045
1099 },
1100 },
Lindsay Pasricha76f44d22021-04-07 16:16:261101 'Mac10.15 Tests': {
1102 # crbug.com/1042757
1103 'swarming': {
Lindsay Pasricha7400da152023-06-16 23:37:031104 'shards': 30,
Lindsay Pasricha76f44d22021-04-07 16:16:261105 },
Lindsay Pasricha7400da152023-06-16 23:37:031106 'experiment_percentage': 100,
Lindsay Pasricha76f44d22021-04-07 16:16:261107 },
Lindsay Pasrichaf8762592021-12-02 23:43:091108 'Mac11 Tests': {
1109 'ci_only': True,
Lindsay Pasrichaee30f252022-10-11 22:02:481110 'swarming': {
1111 'shards': 20, # crbug.com/1366016
1112 },
Lindsay Pasrichaf8762592021-12-02 23:43:091113 },
Yue She0cad2922022-06-24 15:06:071114 'Mac12 Tests': {
1115 'ci_only': True,
Titouan Rigoudycd0e6dd72022-09-09 13:18:201116 'swarming': {
1117 'shards': 20, # crbug.com/1361887
1118 },
Yue She0cad2922022-06-24 15:06:071119 },
Yue Shed8e45742023-06-01 15:18:031120 'Mac13 Tests': {
1121 'ci_only': True,
1122 'swarming': {
1123 'shards': 20, # crbug.com/1361887
1124 },
1125 },
Cameron Higgins2e4b7f12023-05-31 18:29:321126 'Mac13 Tests (dbg)': {
Zhaoyang Li9357e1e12021-12-07 18:53:171127 # crbug.com/1042757
1128 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:251129 'dimensions': {
1130 # These shards are liable to time out when running on macmini7,1.
1131 'cores': '8|12',
1132 },
Zhaoyang Li9357e1e12021-12-07 18:53:171133 },
1134 # crbug.com/1196416
1135 'args': [
1136 '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac-rel.browser_tests.filter',
1137 ],
1138 },
Tom Anderson482eab12023-01-10 00:05:371139 'ToTLinuxMSan': {
1140 'swarming': {
1141 'shards': 24,
1142 },
1143 },
Stephen Martinis1384ff92020-01-07 19:52:151144 'ToTWin(dbg)': {
Kenneth Russelleb60cbd22017-12-05 07:54:281145 'swarming': {
John Budorickca14c76f62017-12-09 14:19:181146 'shards': 20,
Kenneth Russelleb60cbd22017-12-05 07:54:281147 },
1148 },
Stephen Martinis1384ff92020-01-07 19:52:151149 'ToTWin64(dbg)': {
Kenneth Russell8ceeabf2017-12-11 17:53:281150 'swarming': {
1151 'shards': 20,
1152 },
1153 },
Kenneth Russell6c83d212018-07-27 20:52:591154 'Win10 Tests x64': {
1155 # crbug.com/868082
1156 'args': [
1157 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
1158 ],
Stephanie Kim3df2d0c82023-11-07 18:16:261159 # Only retry the individual failed tests instead of rerunning entire
1160 # shards.
1161 # crbug.com/1473501
1162 'retry_only_failed_tests': True,
Takuto Ikutac9c269a2019-01-10 22:40:251163 'swarming': {
1164 # This is for slow test execution that often becomes a critical path of
1165 # swarming jobs. crbug.com/868114
Stephanie Kima57b46a2022-10-27 22:09:031166 'shards': 55,
Takuto Ikutac9c269a2019-01-10 22:40:251167 }
Kenneth Russell6c83d212018-07-27 20:52:591168 },
Kuan Huanga89737d2022-01-07 19:42:111169 'Win11 Tests x64': {
1170 # crbug.com/868082
1171 'args': [
1172 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
1173 ],
1174 'swarming': {
1175 # This is for slow test execution that often becomes a critical path of
1176 # swarming jobs. crbug.com/868114
1177 'shards': 15,
Kuan Huanga89737d2022-01-07 19:42:111178 }
1179 },
Stephen Martinis1384ff92020-01-07 19:52:151180 'linux-chromeos-chrome': {
1181 # TODO(https://crbug.com/932269): Promote out of experiment when the
1182 # tests are green.
1183 'args': [
1184 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.browser_tests.filter',
1185 ],
Ben Pastene37473092022-08-02 19:16:461186 'swarming': {
1187 'shards': 20,
1188 },
Stephen Martinis1384ff92020-01-07 19:52:151189 },
1190 'linux-chromeos-code-coverage': {
Nico Weber0c2861b2018-12-14 18:05:161191 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:151192 'shards': 50,
1193 },
1194 },
1195 'linux-chromeos-dbg': {
1196 'swarming': {
Jonathan Fancb78198d2023-11-16 23:20:521197 'shards': 110,
Stephen Martinis1384ff92020-01-07 19:52:151198 },
1199 },
1200 'linux-chromeos-rel': {
Stephanie Kim7d6675e2023-09-07 18:05:081201 # Only retry the individual failed tests instead of rerunning entire
1202 # shards.
1203 # crbug.com/1473501
1204 'retry_only_failed_tests': True,
Stephen Martinis1384ff92020-01-07 19:52:151205 'swarming': {
Stephanie Kimc932b4c2022-11-01 21:29:381206 'shards': 60,
Garrett Beatyade673d2023-08-04 22:00:251207 'dimensions': {
1208 'kvm': '1',
1209 },
Stephen Martinis1384ff92020-01-07 19:52:151210 },
1211 },
1212 'linux-code-coverage': {
Yuke Liao58e1d202020-03-20 23:02:011213 'args': [
1214 '--no-sandbox',
1215 ],
Stephen Martinis1384ff92020-01-07 19:52:151216 'swarming': {
1217 'shards': 50,
1218 },
1219 },
Ian Struiksmab0412a22023-06-06 23:02:481220 'linux-exp-msan-fyi-rel': {
1221 'swarming': {
1222 'shards': 23,
1223 },
1224 },
Sven Zheng49ffa5c2022-09-06 18:48:261225 # asan tests is slower.
1226 'linux-lacros-asan-lsan-rel': {
1227 'swarming': {
Sven Zhenge110ae02023-11-08 20:11:261228 'shards': 30,
Sven Zheng49ffa5c2022-09-06 18:48:261229 },
Sven Zhenge8b0d9a62023-01-31 23:09:191230 # TODO(crbug.com/1324240): Enable tests.
1231 'args': [
1232 '--gtest_filter=-All/MultiActionAPITest.SessionStorageDoesNotPersistBetweenOpenings/*:All/MultiActionAPITest.PopupCreation/*'
1233 ],
Sven Zheng49ffa5c2022-09-06 18:48:261234 },
Sven Zheng80734f12020-08-06 06:50:391235 'linux-lacros-tester-rel': {
Stephanie Kim3df2d0c82023-11-07 18:16:261236 # Only retry the individual failed tests instead of rerunning entire
1237 # shards.
1238 # crbug.com/1473501
1239 'retry_only_failed_tests': True,
Struan Shrimptone772d72f2021-12-15 07:50:091240 'swarming': {
Stephanie Kim8332c7dd2022-11-07 20:03:491241 'shards': 20,
Struan Shrimptone772d72f2021-12-15 07:50:091242 },
Sven Zheng80734f12020-08-06 06:50:391243 },
Thiago Perrotta099ea612022-12-14 17:59:401244 'linux-rel-cft': {
1245 'args': [
Thiago Perrottad12c7872023-01-12 17:30:561246 '--test-launcher-filter-file=../../testing/buildbot/filters/linux.linux-rel-cft.browser_tests.filter',
Thiago Perrotta099ea612022-12-14 17:59:401247 ],
Thiago Perrotta61487462023-01-20 12:52:321248 'swarming': {
1249 'shards': 20,
1250 },
Thiago Perrotta099ea612022-12-14 17:59:401251 },
Ian Struiksma448f4132023-10-11 16:21:171252 'linux-ubsan-fyi-rel': {
1253 'swarming': {
1254 'shards': 20,
1255 }
1256 },
Kuan Huang235b0142021-10-19 18:59:281257 'mac-code-coverage': {
1258 'args': [
1259 '--coverage-continuous-mode=1',
1260 ],
1261 },
Lindsay Pasricha8bbc3382022-01-31 22:54:541262 'mac-osxbeta-rel': {
1263 'swarming': {
Lindsay Pasricha79b250d2023-05-04 16:55:221264 'shards': 30,
Lindsay Pasricha8bbc3382022-01-31 22:54:541265 },
1266 },
Thiago Perrotta099ea612022-12-14 17:59:401267 'mac-rel-cft': {
1268 'args': [
Thiago Perrottad12c7872023-01-12 17:30:561269 '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac-rel-cft.browser_tests.filter',
Thiago Perrotta099ea612022-12-14 17:59:401270 ],
Thiago Perrottaa289bad2023-01-20 12:44:391271 'ci_only': True,
Thiago Perrotta28efe812023-01-17 19:31:271272 'swarming': {
1273 'shards': 20, # crbug.com/1361887
1274 },
Thiago Perrotta099ea612022-12-14 17:59:401275 },
David Bienvenu284cc4d2023-03-20 16:44:541276 'win-arm64-rel': {
1277 # Surface Pros aren't using 100% scaling, which some browser tests
David Bienvenu519e14802023-05-02 23:34:491278 # rely on. They also have touch enabled, which we need to disable.
David Bienvenu284cc4d2023-03-20 16:44:541279 'args': [
David Bienvenu982fcee2023-03-20 22:57:481280 '--force-device-scale-factor=1',
David Bienvenu519e14802023-05-02 23:34:491281 '--top-chrome-touch-ui=disabled',
David Bienvenu284cc4d2023-03-20 16:44:541282 ],
1283 },
Stephen Martinis1384ff92020-01-07 19:52:151284 'win-asan': {
Kuan Huang1b52d442023-02-07 20:35:341285 # Tests shows tests run faster with fewer retries by using fewer jobs crbug.com/1411912
1286 'args': [
1287 '--test-launcher-jobs=3',
1288 ],
Nico Weber3f919792020-06-12 23:34:521289 # These are very slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:441290 # crbug.com/1257927
Stephen Martinis1384ff92020-01-07 19:52:151291 'swarming': {
Kuan Huang1b52d442023-02-07 20:35:341292 'shards': 60,
Nico Weber0c2861b2018-12-14 18:05:161293 },
1294 },
Thiago Perrotta099ea612022-12-14 17:59:401295 'win-rel-cft': {
1296 'args': [
Thiago Perrotta770925d42023-01-17 18:38:511297 # crbug.com/868082
1298 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
Thiago Perrottad12c7872023-01-12 17:30:561299 '--test-launcher-filter-file=../../testing/buildbot/filters/win.win-rel-cft.browser_tests.filter',
Thiago Perrotta099ea612022-12-14 17:59:401300 ],
Thiago Perrotta314f7b02023-01-19 21:30:531301 'swarming': {
1302 # This is for slow test execution that often becomes a critical path of
1303 # swarming jobs. crbug.com/868114
1304 'shards': 15,
1305 }
Thiago Perrotta099ea612022-12-14 17:59:401306 },
Prakhar37a94b52023-07-14 19:46:071307 'win10-code-coverage': {
1308 'swarming': {
1309 'shards': 40,
Garrett Beatyade673d2023-08-04 22:00:251310 'dimensions': {
Prakhar37a94b52023-07-14 19:46:071311 'pool': 'chromium.tests.coverage',
1312 'ssd': '1',
Garrett Beatyade673d2023-08-04 22:00:251313 },
Prakhar37a94b52023-07-14 19:46:071314 }
1315 },
Ben Pasteneebad8fc2022-08-12 23:34:281316 'win10-rel-no-external-ip': {
1317 # crbug.com/868082
1318 'args': [
1319 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
1320 ],
1321 'swarming': {
1322 'shards': 15,
1323 }
1324 },
Kenneth Russelleb60cbd22017-12-05 07:54:281325 },
1326 },
Hao Wubfdb23562023-06-17 20:16:511327 'browser_tests_no_field_trial': {
1328 'remove_from': [
1329 'win10-rel-no-external-ip',
1330 'win-arm64-rel',
1331 'win-rel-cft',
1332 'Win11 Tests x64',
1333 ],
1334 },
Ben Pastenec26cd082023-06-21 16:26:051335 'capture_unittests': {
1336 'modifications': {
1337 'WebRTC Chromium Linux Tester': {
1338 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:251339 'dimensions': {
1340 'os': 'Ubuntu-22.04|Ubuntu-18.04',
1341 },
Ben Pastenec26cd082023-06-21 16:26:051342 },
1343 },
1344 },
1345 },
Erik Chen681dc0282019-11-26 22:54:491346 'cc_unittests': {
1347 'modifications': {
1348 'Linux TSan Tests': {
1349 'swarming': {
1350 'shards': 3,
1351 },
1352 },
Haiyang Pan9d68ca02021-08-04 21:30:471353 'android-11-x86-rel': {
Haiyang Pancf765862021-03-18 20:39:151354 # https://crbug.com/1039860
1355 'args': [
Haiyang Pan11d8bd52021-11-19 21:22:541356 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11_12.cc_unittests.filter',
1357 ],
1358 },
Haiyang Pan2a55a452022-03-03 08:18:331359 'android-12-x64-rel': {
Haiyang Pan11d8bd52021-11-19 21:22:541360 # https://crbug.com/1039860
1361 'args': [
1362 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11_12.cc_unittests.filter',
Haiyang Pancf765862021-03-18 20:39:151363 ],
1364 },
Haiyang Pan08d09dc2020-04-01 16:11:211365 'android-pie-x86-rel': {
John Budorickfa8f1da92020-01-15 18:11:381366 # https://crbug.com/1039860
1367 'args': [
1368 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.cc_unittests.filter',
1369 ],
1370 },
Chong Gudf7fbe92021-02-24 02:55:581371 'fuchsia-code-coverage': {
1372 'swarming': {
1373 'shards': 4,
1374 },
1375 },
Chong Gub2446462021-08-19 18:44:081376 'fuchsia-fyi-arm64-dbg': {
1377 'args': [
1378 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.debug.cc_unittests.filter',
1379 ],
1380 },
Ian Struiksma2e23f962023-05-26 22:37:201381 'linux-exp-tsan-fyi-rel': {
1382 'swarming': {
1383 'shards': 3,
1384 },
1385 },
Stephanie Kim0a1310f2023-12-11 23:51:351386 'linux-lacros-tester-rel': {
1387 'ci_only': True, # https://crbug.com/1509554
1388 },
Erik Chen681dc0282019-11-26 22:54:491389 },
1390 },
Prakhar94f444a2020-10-08 07:30:081391 'check_static_initializers': {
1392 'modifications': {
1393 'Mac Builder': {
1394 'args': [
1395 '--allow-coverage-initializer',
1396 ],
1397 },
Thiago Perrottaa289bad2023-01-20 12:44:391398 'mac-rel-cft': {
1399 'args': [
1400 '--allow-coverage-initializer',
1401 ],
1402 },
Prakhar94f444a2020-10-08 07:30:081403 },
1404 },
Ben Pastene7a05a8f2020-11-12 17:25:511405 'chrome_all_tast_tests': {
1406 'modifications': {
Sven Zhengf3c34f62023-10-25 22:10:171407 'chromeos-amd64-generic-rel-renamed': {
Struan Shrimpton4b7abc02021-12-16 01:36:591408 'swarming': {
Ben Pastene8fdb0ea92022-06-23 18:46:581409 'shards': 7,
Struan Shrimpton4b7abc02021-12-16 01:36:591410 },
Ben Pastenef3c910a72023-01-26 20:23:411411 'args': [
1412 '--tast-shard-method=hash',
1413 ],
Struan Shrimpton4b7abc02021-12-16 01:36:591414 },
Ben Pastene7a05a8f2020-11-12 17:25:511415 'chromeos-betty-pi-arc-cfi-thin-lto-chrome': {
1416 'args': [
1417 # This bot sets symbol_level=2, which doesn't fit inside a normal VM.
1418 '--strip-chrome',
Jonathan Fan6f033832023-06-23 23:23:591419 '--tast-shard-method=hash',
Ben Pastene7a05a8f2020-11-12 17:25:511420 ],
1421 },
Ben Pastenefb70e5f2022-11-08 04:16:421422 'chromeos-betty-pi-arc-chrome': {
1423 'swarming': {
1424 'shards': 15,
1425 },
Catherine Zhang5c54ed362023-11-24 04:49:301426 'args': [
1427 '--tast-shard-method=hash',
1428 ],
Ben Pastenefb70e5f2022-11-08 04:16:421429 },
Alvin Jia47a28032022-11-07 23:09:151430 'chromeos-eve-chrome': {
1431 'swarming': {
Alvin Jia65de2132023-07-23 22:27:121432 # Increased timeout to 4 hours due to shard timeout.
1433 'hard_timeout': 14400,
Alvin Jia47a28032022-11-07 23:09:151434 }
1435 },
Ben Pastenef85543f2022-06-24 17:50:021436 # TODO(crbug.com/1141234): Move out of experimental if/when the bots are
1437 # stable.
1438 'chromeos-jacuzzi-chrome': {
1439 'experiment_percentage': 100,
1440 },
Alvin Jiadb3f7cd2023-06-08 19:00:001441 'chromeos-reven-chrome': {
1442 'args': [
1443 '--tast-shard-method=hash',
1444 ],
1445 },
Ben Pastene7a05a8f2020-11-12 17:25:511446 },
1447 },
Yun Liu7cfd28a2019-10-30 01:57:121448 'chrome_public_smoke_test': {
1449 'remove_from': [
Ben Joyce02dc8092021-03-04 21:48:191450 'android-code-coverage-native', # Does not generate profraw data.
Yun Liu7cfd28a2019-10-30 01:57:121451 ],
1452 },
Kenneth Russelleb60cbd22017-12-05 07:54:281453 'chrome_public_test_apk': {
John Budorick27d2d44e2019-05-20 20:26:091454 'remove_from': [
1455 'android-asan', # https://crbug.com/964562
Zhaoyang Li4616b952023-08-15 17:30:421456 'android-code-coverage-native', # Does not generate profraw data.
John Budorick27d2d44e2019-05-20 20:26:091457 ],
Kenneth Russelleb60cbd22017-12-05 07:54:281458 'modifications': {
Ben Pastenec73e96e92018-07-12 01:40:351459 'Oreo Phone Tester': {
bsheedy01833462018-12-07 01:05:571460 # TODO(https://crbug.com/884413): Re-enable this once the tests are
1461 # either passing or there is more capacity.
1462 'experiment_percentage': 0,
Ben Pastenec73e96e92018-07-12 01:40:351463 },
Haiyang Pan9d68ca02021-08-04 21:30:471464 'android-11-x86-rel': {
Haiyang Panb80557c2021-03-13 03:01:441465 'args': [
1466 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.chrome_public_test_apk.filter',
Haiyang Pan1d5ca2862021-04-01 22:21:091467 '--timeout-scale=2.0',
Haiyang Panb80557c2021-03-13 03:01:441468 ],
Haiyang Panc82c3fa2022-02-01 01:26:061469 # TODO(https://crbug.com/1285975) Remove experiment and enable on
1470 # trybot once the device offline issue is resolved.
1471 'ci_only': True,
1472 'experiment_percentage': 100,
Haiyang Pan68a39c02021-11-11 21:12:211473 },
Haiyang Pan2a55a452022-03-03 08:18:331474 'android-12-x64-rel': {
Haiyang Pan68a39c02021-11-11 21:12:211475 'args': [
Haiyang Pan629f4e42022-02-09 22:11:231476 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.chrome_public_test_apk.filter',
Haiyang Pan68a39c02021-11-11 21:12:211477 '--timeout-scale=2.0',
1478 ],
Haiyang Pan2a55a452022-03-03 08:18:331479 # TODO(crbug.com/1225851): Remove experiment and ci_only
1480 # once the test suite is stable.
1481 'ci_only': True,
1482 'experiment_percentage': 100,
Haiyang Panb80557c2021-03-13 03:01:441483 },
Haiyang Panfed31272023-03-27 19:24:001484 'android-12l-x64-dbg-tests': {
1485 'args': [
1486 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12l.chrome_public_test_apk.filter',
1487 ],
Kuan Huangdc0afb52023-06-09 19:12:581488 # TODO(crbug.com/1439624): Remove experiment and ci_only
1489 # once the test suite is stable.
Neil Coronado98b35312023-11-04 00:38:431490 'ci_only': True,
Kuan Huangdc0afb52023-06-09 19:12:581491 'experiment_percentage': 100,
Haiyang Panfed31272023-03-27 19:24:001492 },
Haiyang Panef317e4372023-05-19 01:30:081493 'android-12l-x64-fyi-dbg': {
1494 'args': [
1495 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12l.chrome_public_test_apk.filter',
1496 ],
1497 },
1498 'android-13-x64-fyi-rel': {
1499 'args': [
1500 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_13.chrome_public_test_apk.filter',
Haiyang Panef317e4372023-05-19 01:30:081501 ],
1502 },
Haiyang Pane03016f2023-04-24 17:40:491503 'android-13-x64-rel': {
1504 'args': [
1505 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_13.chrome_public_test_apk.filter',
1506 ],
1507 },
Stephen Martinis1384ff92020-01-07 19:52:151508 'android-arm64-proguard-rel': {
1509 'swarming': {
1510 'shards': 25,
1511 },
1512 },
Prakharc60ec802023-03-06 07:49:291513 # If you change this, make similar changes in android-x86-code-coverage below
Haiyang Panb41ca5f2023-07-10 23:11:311514 'android-oreo-x86-rel': {
Ben Joyce5850e492023-07-17 22:02:071515 'args': [
1516 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_o.chrome_public_test_apk.filter',
1517 ],
Haiyang Panb41ca5f2023-07-10 23:11:311518 'swarming': {
1519 'shards': 75,
Garrett Beatyade673d2023-08-04 22:00:251520 'dimensions': {
1521 # use 8-core to shorten runtime
1522 'cores': '8',
1523 },
Haiyang Panb41ca5f2023-07-10 23:11:311524 },
1525 },
Stephen Martinis1384ff92020-01-07 19:52:151526 'android-pie-arm64-rel': {
1527 'args': [
1528 '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_arm64_rel.chrome_public_test_apk.filter', # https://crbug.com/1010211
Ben Joyceb5321412022-10-26 21:05:151529 '--use-persistent-shell',
Stephen Martinis1384ff92020-01-07 19:52:151530 ],
Stephen Martinisd05530d2021-07-27 22:50:221531 'ci_only': True, # https://crbug.com/1233700
Haiyang Pan43640ee2020-02-13 01:38:001532 },
Ben Pasteneac465d422023-03-23 21:54:291533 'android-pie-arm64-rel-dev': {
Ben Joyce6d63a582022-12-09 18:34:551534 'swarming': {
1535 'service_account': '[email protected]'
1536 },
1537 },
Haiyang Pan08d09dc2020-04-01 16:11:211538 'android-pie-x86-rel': {
Haiyang Pan43640ee2020-02-13 01:38:001539 'args': [
Haiyang Pan71373072020-03-02 19:57:491540 # https://crbug.com/1046059
Haiyang Pan23f64f52020-06-04 01:23:321541 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_p.chrome_public_test_apk.filter',
Haiyang Pan43640ee2020-02-13 01:38:001542 ],
Haiyang Pan71373072020-03-02 19:57:491543 'swarming': {
Haiyang Pan58a6db22021-07-30 01:08:261544 # See https://crbug.com/1230192, runs of 40-60 minutes at 20 shards.
1545 'shards': 30,
1546 },
1547 },
Haiyang Pan2c4c5e922023-10-09 22:57:311548 # Keep this same as android-oreo-x86-rel above
Prakharc60ec802023-03-06 07:49:291549 'android-x86-code-coverage': {
1550 'args': [
Haiyang Pan2c4c5e922023-10-09 22:57:311551 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_o.chrome_public_test_apk.filter',
Prakharc60ec802023-03-06 07:49:291552 ],
1553 'swarming': {
1554 'shards': 75,
Garrett Beatyade673d2023-08-04 22:00:251555 'dimensions': {
1556 # use 8-core to shorten runtime
1557 'cores': '8',
1558 },
Prakharc60ec802023-03-06 07:49:291559 },
1560 },
Haiyang Pan58a6db22021-07-30 01:08:261561 },
1562 },
Kenneth Russelleb60cbd22017-12-05 07:54:281563 'chrome_public_test_vr_apk': {
Nico Weberb0b3f5862018-07-13 18:45:151564 'remove_from': [
Andrew Luo38b311f2019-10-04 03:42:091565 'android-pie-arm64-rel', # https://crbug.com/1010211
bsheedydf58b4e2018-11-01 19:42:161566 'ToTAndroid',
John Budorick27d2d44e2019-05-20 20:26:091567 'android-asan', # https://crbug.com/964562
Ben Joyce02dc8092021-03-04 21:48:191568 'android-code-coverage-native', # Does not generate profraw data.
bsheedy410dd7c2018-06-15 22:42:091569 ],
Kenneth Russelleb60cbd22017-12-05 07:54:281570 },
bsheedy75a4dd52018-11-27 23:24:301571 'chrome_public_test_vr_apk-vega': {
1572 'modifications': {
bsheedy75a4dd52018-11-27 23:24:301573 'Oreo Phone Tester': {
1574 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:251575 'dimensions': {
1576 'device_os': 'OVR1.180808.003',
1577 'device_type': 'vega',
1578 'os': 'Android',
1579 },
bsheedy75a4dd52018-11-27 23:24:301580 },
1581 }
1582 }
1583 },
Henrique Nakashimad99462ab2022-06-08 19:52:421584 'chrome_public_unit_test_apk': {
Henrique Nakashima4b24b55a2022-11-02 22:25:321585 'remove_from': [
1586 'android-asan', # https://crbug.com/964562
1587 'android-code-coverage-native', # Does not generate profraw data.
Henrique Nakashima4b24b55a2022-11-02 22:25:321588 ],
Henrique Nakashimad99462ab2022-06-08 19:52:421589 'modifications': {
1590 'android-12-x64-rel': {
James Shen7d0646a2023-02-28 22:47:041591 'ci_only': True,
Henrique Nakashimad99462ab2022-06-08 19:52:421592 'args': [
1593 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.chrome_public_unit_test_apk.filter',
1594 ],
1595 },
Haiyang Pan0fb3ee42023-02-14 21:04:341596 'android-12l-x64-dbg-tests': {
1597 'args': [
1598 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12l.chrome_public_unit_test_apk.filter',
1599 ],
1600 },
Haiyang Panef317e4372023-05-19 01:30:081601 'android-12l-x64-fyi-dbg': {
1602 'args': [
1603 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12l.chrome_public_unit_test_apk.filter',
1604 ],
1605 },
1606 'android-13-x64-fyi-rel': {
1607 'args': [
1608 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_13.chrome_public_unit_test_apk.filter',
1609 ],
1610 },
Haiyang Pan0fb3ee42023-02-14 21:04:341611 'android-13-x64-rel': {
1612 'args': [
1613 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_13.chrome_public_unit_test_apk.filter',
1614 ],
1615 },
Haiyang Pan2c4c5e922023-10-09 22:57:311616 # If you change this, make similar changes in android-x86-code-coverage below
James Shen2c2bcdb2023-07-18 00:36:161617 'android-oreo-x86-rel': {
1618 'args': [
1619 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_o.chrome_public_unit_test_apk.filter',
1620 ],
1621 },
Ho Cheung573d82b2023-09-03 17:10:051622 'android-pie-arm64-rel': {
1623 'swarming': {
Haiyang Panb906178c2023-10-17 00:37:561624 'dimensions': {
1625 'device_type': 'crosshatch',
1626 },
James Shen1f916b42023-10-17 19:05:071627 # TODO(crbug.com/1462745): Temporarily increase the shard to 5 for the network issue.
1628 'shards': 5,
Ho Cheung573d82b2023-09-03 17:10:051629 },
1630 },
Haiyang Pan2c4c5e922023-10-09 22:57:311631 # Keep this same as android-oreo-x86-rel above
1632 'android-x86-code-coverage': {
1633 'args': [
1634 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_o.chrome_public_unit_test_apk.filter',
1635 ],
1636 },
Henrique Nakashimad99462ab2022-06-08 19:52:421637 },
1638 },
Nihar Damarasingu8def1a22022-08-18 21:15:541639 'chrome_public_wpt': {
1640 'modifications': {
An Sunge7a6bca2023-09-05 19:13:281641 'android-chrome-pie-x86-wpt-android-specific': {
1642 'args': [
1643 '--test-list',
An Sung9cede132023-10-18 18:55:381644 '../../third_party/blink/web_tests/TestLists/android.filter'
An Sunge7a6bca2023-09-05 19:13:281645 ]
1646 },
Nihar Damarasingu8def1a22022-08-18 21:15:541647 'android-chrome-pie-x86-wpt-fyi-rel': {
1648 'args': [
1649 '--use-upstream-wpt',
1650 ],
1651 },
1652 },
1653 },
Ian Struiksmaeb285db02020-10-20 22:19:341654 'chrome_sizes': {
1655 'modifications': {
Sven Zheng0b608c212023-02-23 18:18:561656 'lacros-amd64-generic-chrome-skylab': {
1657 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:251658 'dimensions': {
1659 'cpu': 'x86-64',
1660 'os': 'Ubuntu-18.04',
1661 },
Sven Zheng0b608c212023-02-23 18:18:561662 },
1663 },
Sven Zheng0b608c212023-02-23 18:18:561664 'lacros-arm-generic-chrome-skylab': {
1665 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:251666 'dimensions': {
1667 'cpu': 'x86-64',
1668 'os': 'Ubuntu-18.04',
1669 },
Sven Zheng0b608c212023-02-23 18:18:561670 },
1671 },
1672 'lacros-arm64-generic-chrome-skylab': {
1673 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:251674 'dimensions': {
1675 'cpu': 'x86-64',
1676 'os': 'Ubuntu-18.04',
1677 },
Sven Zheng0b608c212023-02-23 18:18:561678 },
1679 },
Ian Struiksmaeb285db02020-10-20 22:19:341680 },
1681 },
Takuto Ikuta1b749b902019-04-11 18:05:531682 'chromedriver_py_tests': {
Ben Pastene1b1aa972022-09-28 17:51:011683 'modifications': {
1684 'Win10 Tests x64': {
1685 # TODO(crbug.com/1369158): Fix & re-enable.
1686 'isolate_profile_data': False,
1687 },
Thiago Perrotta314f7b02023-01-19 21:30:531688 'win-rel-cft': {
1689 # TODO(crbug.com/1369158): Fix & re-enable.
1690 'isolate_profile_data': False,
1691 },
Ben Pastene1b1aa972022-09-28 17:51:011692 },
Takuto Ikuta1b749b902019-04-11 18:05:531693 'remove_from': [
1694 # Timeout happens sometimes (crbug.com/951799).
Takuto Ikuta1b749b902019-04-11 18:05:531695 'Win10 Tests x64 (dbg)',
1696 ],
1697 },
Haiyang Panfed339172021-03-10 23:19:571698 'components_browsertests': {
1699 'modifications': {
Stephanie Kim6b4abfd32022-11-15 20:33:371700 'Linux TSan Tests': {
1701 'swarming': {
1702 'shards': 2,
1703 },
1704 },
Haiyang Pan9d68ca02021-08-04 21:30:471705 'android-11-x86-rel': {
Haiyang Panfed339172021-03-10 23:19:571706 'swarming': {
1707 'shards': 2,
1708 },
1709 },
André Kempef30fe9d22022-02-03 10:44:291710 'android-asan': {
1711 'swarming': {
1712 'shards': 3,
1713 },
1714 },
Prakharc60ec802023-03-06 07:49:291715 # If you change this, make similar changes in android-x86-code-coverage below
Haiyang Panb41ca5f2023-07-10 23:11:311716 'android-oreo-x86-rel': {
1717 'swarming': {
1718 'shards': 4,
1719 },
1720 },
Haiyang Pan2c4c5e922023-10-09 22:57:311721 # Keep this same as android-oreo-x86-rel above
Prakharc60ec802023-03-06 07:49:291722 'android-x86-code-coverage': {
1723 'swarming': {
1724 'shards': 4,
1725 },
1726 },
Zijie He073e2232023-08-04 18:14:591727 'fuchsia-code-coverage': {
1728 'swarming': {
1729 'shards': 4,
1730 },
1731 },
Ian Struiksma2e23f962023-05-26 22:37:201732 'linux-exp-tsan-fyi-rel': {
1733 'swarming': {
1734 'shards': 2,
1735 },
1736 },
Haiyang Panfed339172021-03-10 23:19:571737 },
1738 },
Hao Wubfdb23562023-06-17 20:16:511739 'components_browsertests_no_field_trial': {
1740 'remove_from': [
1741 'win10-rel-no-external-ip',
1742 'win-arm64-rel',
1743 'win-rel-cft',
1744 'Win11 Tests x64',
1745 ],
1746 },
Kenneth Russelleb60cbd22017-12-05 07:54:281747 'components_unittests': {
Kenneth Russelleb60cbd22017-12-05 07:54:281748 'modifications': {
John Budorick5052d552017-12-13 02:59:341749 'Linux ASan LSan Tests (1)': {
1750 # These are very slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:441751 # crbug.com/1257927
John Budorick5052d552017-12-13 02:59:341752 'swarming': {
1753 'shards': 5,
1754 },
1755 },
Takuto Ikuta54671d972018-07-19 19:06:351756 'Linux Chromium OS ASan LSan Tests (1)': {
1757 # These are very slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:441758 # crbug.com/1257927
Takuto Ikuta54671d972018-07-19 19:06:351759 'swarming': {
1760 'shards': 5,
1761 },
1762 },
Erik Chen681dc0282019-11-26 22:54:491763 'Linux TSan Tests': {
1764 'swarming': {
1765 'shards': 2,
1766 },
1767 },
Haiyang Pan9d68ca02021-08-04 21:30:471768 'android-11-x86-rel': {
Haiyang Pan799282f2021-03-25 19:38:311769 'args': [
Haiyang Pane521cf692021-11-30 00:35:231770 # TODO(crbug.com/1192348): Fix the test failure
1771 '--gtest_filter=-FieldFormatterTest.DifferentLocales',
Haiyang Pan799282f2021-03-25 19:38:311772 ],
1773 },
Haiyang Pan2a55a452022-03-03 08:18:331774 'android-12-x64-rel': {
Haiyang Pan2877f062021-11-18 01:06:061775 'args': [
1776 # TODO(crbug.com/1192348): Fix the test failure
1777 '--gtest_filter=-FieldFormatterTest.DifferentLocales',
1778 ],
1779 },
Ian Struiksma2e23f962023-05-26 22:37:201780 'linux-exp-tsan-fyi-rel': {
1781 'swarming': {
1782 'shards': 2,
1783 },
1784 },
Scott Violet17087cd2022-11-15 22:29:441785 'win-asan': {
1786 # With a single shard seems to hit time limit.
1787 'swarming': {
1788 'shards': 2,
1789 },
1790 },
Prakharf80880f2023-04-25 01:09:371791 'win10-code-coverage': {
1792 'swarming': {
Prakharbb64f48b2023-04-26 23:47:521793 'shards': 6,
Prakharf80880f2023-04-25 01:09:371794 },
1795 },
Sven Zheng80734f12020-08-06 06:50:391796 },
Sven Zheng577fe5ff2020-08-03 22:06:441797 },
Chong Gu76046412021-09-22 17:49:211798 'compositor_unittests': {
Chong Gub2446462021-08-19 18:44:081799 'modifications': {
1800 'fuchsia-fyi-arm64-dbg': {
1801 'args': [
1802 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.debug.compositor_unittests.filter',
1803 ],
1804 },
1805 },
1806 },
Kenneth Russelleb60cbd22017-12-05 07:54:281807 'content_browsertests': {
Brad Halla36886c2019-02-26 16:52:291808 'remove_from': [
James Shen286d10a2023-06-09 20:19:051809 # TODO(crbug.com/1431581): Temporarily remove it from android-12L builder due to infra flakiness.
1810 'android-12l-x64-dbg-tests',
Brad Halla36886c2019-02-26 16:52:291811 'CrWinAsan(dll)', # https://crbug.com/935598
Rohan Pavonedf728bee22022-11-09 21:32:551812 # TODO(crbug.com/1371630): Enable on Fuchsia dbg/asan/clang builders.
1813 'fuchsia-fyi-arm64-dbg',
1814 'fuchsia-fyi-x64-asan',
1815 'fuchsia-fyi-x64-dbg',
1816 'ToTFuchsia x64',
1817 'ToTFuchsiaOfficial arm64',
Brad Halla36886c2019-02-26 16:52:291818 ],
Kenneth Russelleb60cbd22017-12-05 07:54:281819 'modifications': {
Kenneth Russellfbda3c532017-12-08 23:57:241820 'Cast Audio Linux': {
1821 'args': [
Nico Weber02f30392018-07-16 18:39:431822 '--test-launcher-filter-file=../../testing/buildbot/filters/cast-linux.content_browsertests.filter',
Kenneth Russellfbda3c532017-12-08 23:57:241823 ],
Kenneth Russellfbda3c532017-12-08 23:57:241824 },
1825 'Cast Linux': {
1826 'args': [
Nico Weber02f30392018-07-16 18:39:431827 '--test-launcher-filter-file=../../testing/buildbot/filters/cast-linux.content_browsertests.filter',
Kenneth Russellfbda3c532017-12-08 23:57:241828 ],
Stephanie Kima735d442023-09-11 16:26:091829 # Only retry the individual failed tests instead of rerunning entire
1830 # shards.
1831 # crbug.com/1475852
1832 'retry_only_failed_tests': True,
Kenneth Russellfbda3c532017-12-08 23:57:241833 },
Erik Chenb681c8c2019-11-25 22:52:521834 'Linux ASan LSan Tests (1)': {
1835 'swarming': {
Stephanie Kim75e95f62022-11-04 16:06:131836 'shards': 24,
Erik Chenb681c8c2019-11-25 22:52:521837 },
1838 },
Stephanie Kim867435f2023-08-15 17:29:321839 'Linux Chromium OS ASan LSan Tests (1)': {
1840 'swarming': {
1841 'shards': 10, # https://crbug.com/1471857
1842 },
1843 },
Ian Struiksmaeb2cfc612023-11-03 23:28:181844 'Linux MSan Tests': {
1845 'swarming': {
1846 'shards': 10, # https://crbug.com/1497706
1847 },
1848 },
Erik Chen681dc0282019-11-26 22:54:491849 'Linux TSan Tests': {
Gary Tong46fdc492023-11-01 16:25:011850 'ci_only': True, # https://crbug.com/1498240
Erik Chen681dc0282019-11-26 22:54:491851 'swarming': {
Stephanie Kim6b4abfd32022-11-15 20:33:371852 'shards': 30,
Erik Chen681dc0282019-11-26 22:54:491853 },
1854 },
Stephanie Kima735d442023-09-11 16:26:091855 'Linux Tests': {
1856 # Only retry the individual failed tests instead of rerunning entire
1857 # shards.
1858 # crbug.com/1475852
1859 'retry_only_failed_tests': True,
1860 },
1861 'Linux Tests (Wayland)': {
1862 # Only retry the individual failed tests instead of rerunning entire
1863 # shards.
1864 # crbug.com/1475852
1865 'retry_only_failed_tests': True,
1866 },
Lindsay Pasrichab3f72db2021-09-22 22:05:461867 'Mac ASan 64 Tests (1)': { # https://crbug.com/1200640
1868 'experiment_percentage': 100,
1869 },
Struan Shrimpton57c594e42022-01-25 17:59:131870 'Mac11 Tests': {
1871 'swarming': {
Lindsay Pasricha0b5beaf2022-03-04 08:15:271872 'shards': 12,
Struan Shrimpton57c594e42022-01-25 17:59:131873 },
1874 },
Yue She0cad2922022-06-24 15:06:071875 'Mac12 Tests': {
1876 'swarming': {
1877 'shards': 12,
Yue She0cad2922022-06-24 15:06:071878 },
1879 },
Yue Shed8e45742023-06-01 15:18:031880 'Mac13 Tests': {
Stephanie Kima735d442023-09-11 16:26:091881 # Only retry the individual failed tests instead of rerunning entire
1882 # shards.
1883 # crbug.com/1475852
1884 'retry_only_failed_tests': True,
Yue Shed8e45742023-06-01 15:18:031885 'swarming': {
1886 'shards': 12,
1887 },
1888 },
Cameron Higgins2e4b7f12023-05-31 18:29:321889 'Mac13 Tests (dbg)': { # https://crbug.com/1279504
Lindsay Pasricha945e4d62022-01-20 02:14:011890 'swarming': {
Lindsay Pasricha9ec81b52022-03-10 03:43:311891 'shards': 18,
Lindsay Pasricha945e4d62022-01-20 02:14:011892 },
1893 },
Mirko Bonadei1bee8b02022-11-17 13:56:331894 'WebRTC Chromium FYI Android Tests (dbg)': {
1895 'args': [
1896 '--test-launcher-filter-file=../../testing/buildbot/filters/chromium.webrtc.fyi.android.tests.dbg.content_browsertests.filter',
1897 ],
1898 },
Mirko Bonadei1bee8b02022-11-17 13:56:331899 'WebRTC Chromium FYI Android Tests ARM64 (dbg)': {
1900 'args': [
1901 '--test-launcher-filter-file=../../testing/buildbot/filters/chromium.webrtc.fyi.android.tests.dbg.content_browsertests.filter',
1902 ],
1903 },
Stephen Martinis1384ff92020-01-07 19:52:151904 'Win10 Tests x64': {
1905 # crbug.com/868082
1906 'args': [
1907 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
1908 ],
Stephanie Kima735d442023-09-11 16:26:091909 # Only retry the individual failed tests instead of rerunning entire
1910 # shards.
1911 # crbug.com/1475852
1912 'retry_only_failed_tests': True,
Stephen Martinis1384ff92020-01-07 19:52:151913 },
1914 'Win10 Tests x64 (dbg)': {
1915 'experiment_percentage': 100,
1916 # crbug.com/868082
1917 'args': [
1918 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
Stephen Martinis1384ff92020-01-07 19:52:151919 ],
1920 },
Kuan Huanga89737d2022-01-07 19:42:111921 'Win11 Tests x64': {
1922 # crbug.com/868082
1923 'args': [
1924 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
1925 ],
1926 },
Haiyang Pan9d68ca02021-08-04 21:30:471927 'android-11-x86-rel': {
Haiyang Pan566e2652022-01-25 07:01:521928 # TODO(crbug.com/1137474): Remove ci_only and experiment_percentage
1929 # after the test suite is green.
1930 'ci_only': True,
Haiyang Pan10f029c2021-07-30 23:17:561931 'experiment_percentage': 100,
Haiyang Pan51450ab2021-03-23 00:48:571932 # TODO(crbug.com/1137474): Revisit the shard number once failed tests
1933 # are fixed.
Haiyang Panfed339172021-03-10 23:19:571934 'swarming': {
Haiyang Pan51450ab2021-03-23 00:48:571935 'shards': 30,
Garrett Beatyade673d2023-08-04 22:00:251936 'dimensions': {
1937 # use 8-core to shorten runtime
1938 'cores': '8',
1939 },
Haiyang Panfed339172021-03-10 23:19:571940 },
1941 },
Haiyang Pan2a55a452022-03-03 08:18:331942 'android-12-x64-rel': {
Haiyang Pan1ed9ebb2022-12-13 03:10:031943 # TODO(crbug.com/1225851): Remove experiment and ci_only
1944 # once the test suite is stable.
1945 'ci_only': True,
1946 'experiment_percentage': 100,
Haiyang Pandbff3ef2022-02-11 23:24:191947 'args': [
1948 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.content_browsertests.filter',
1949 ],
Haiyang Pan249494b2022-01-27 21:56:211950 'swarming': {
Haiyang Pand5524452023-04-25 01:56:401951 'shards': 40,
Haiyang Pan249494b2022-01-27 21:56:211952 },
1953 },
Haiyang Pan1b8faa20b2023-02-10 23:44:361954 'android-12l-x64-dbg-tests': {
Kuan Huangdc0afb52023-06-09 19:12:581955 # TODO(crbug.com/1439624): Remove experiment and ci_only
1956 # once the test suite is stable.
1957 'ci_only': True,
1958 'experiment_percentage': 100,
Haiyang Pan1b8faa20b2023-02-10 23:44:361959 'args': [
Haiyang Pan08186de2023-11-01 05:05:031960 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12l.content_browsertests.filter',
Haiyang Pan1b8faa20b2023-02-10 23:44:361961 ],
1962 'swarming': {
Haiyang Pand5524452023-04-25 01:56:401963 'shards': 40,
Haiyang Pan1b8faa20b2023-02-10 23:44:361964 },
1965 },
Haiyang Pan42c77cd92023-05-18 01:13:031966 'android-12l-x64-fyi-dbg': {
Haiyang Panef317e4372023-05-19 01:30:081967 'args': [
Haiyang Pan08186de2023-11-01 05:05:031968 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12l.content_browsertests.filter',
Haiyang Panef317e4372023-05-19 01:30:081969 ],
Haiyang Pan42c77cd92023-05-18 01:13:031970 'swarming': {
1971 'shards': 40,
1972 },
1973 },
1974 'android-13-x64-fyi-rel': {
Haiyang Panef317e4372023-05-19 01:30:081975 'args': [
Haiyang Pan08186de2023-11-01 05:05:031976 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_13.content_browsertests.filter',
Haiyang Panef317e4372023-05-19 01:30:081977 ],
Haiyang Pan42c77cd92023-05-18 01:13:031978 'swarming': {
1979 'shards': 40,
1980 },
1981 },
Haiyang Pan1b8faa20b2023-02-10 23:44:361982 'android-13-x64-rel': {
1983 'args': [
Haiyang Pan08186de2023-11-01 05:05:031984 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_13.content_browsertests.filter',
Haiyang Pan1b8faa20b2023-02-10 23:44:361985 ],
1986 'swarming': {
Haiyang Pand5524452023-04-25 01:56:401987 'shards': 40,
Haiyang Pan1b8faa20b2023-02-10 23:44:361988 },
1989 },
Stephen Martinis1384ff92020-01-07 19:52:151990 'android-arm64-proguard-rel': {
1991 'swarming': {
1992 'shards': 16,
1993 },
1994 },
1995 'android-asan': {
1996 'args': [
1997 '--test-launcher-filter-file=../../testing/buildbot/filters/android.asan.content_browsertests.filter',
1998 ],
1999 'swarming': {
André Kempef30fe9d22022-02-03 10:44:292000 'shards': 25,
Stephen Martinis1384ff92020-01-07 19:52:152001 },
2002 },
Mateusz Zbikowskif1418432023-08-04 18:00:312003 'android-code-coverage-native': {
2004 'swarming': {
2005 'shards': 25,
2006 },
2007 },
Prakharc60ec802023-03-06 07:49:292008 # If you change this, make similar changes in android-x86-code-coverage below
Haiyang Panb41ca5f2023-07-10 23:11:312009 'android-oreo-x86-rel': {
James Shen672478e2023-07-15 00:28:382010 'args': [
2011 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_o.content_browsertests.filter',
2012 ],
Haiyang Panb41ca5f2023-07-10 23:11:312013 'swarming': {
2014 'shards': 75,
Garrett Beatyade673d2023-08-04 22:00:252015 'dimensions': {
2016 # use 8-core to shorten runtime
2017 'cores': '8',
2018 },
Haiyang Panb41ca5f2023-07-10 23:11:312019 },
2020 },
Struan Shrimptone772d72f2021-12-15 07:50:092021 'android-pie-arm64-rel': {
Ben Joycec0a90cd2023-01-10 21:30:492022 'args': [
2023 '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_arm64.content_browsertests_coverage.filter',
2024 ],
Stephanie Kima735d442023-09-11 16:26:092025 # Only retry the individual failed tests instead of rerunning entire
2026 # shards.
2027 # crbug.com/1475852
2028 'retry_only_failed_tests': True,
James Shen3b3a6f02023-07-07 00:50:102029 'swarming': {
James Shen6195857c2023-08-10 23:20:202030 # TODO(crbug.com/1462745): Temporarily increase the shard by 5 for the surging number of tests.
James Shen3b3a6f02023-07-07 00:50:102031 # Recover to default number of shards(20) after the bug is fixed.
James Shen6195857c2023-08-10 23:20:202032 'shards': 25,
James Shen3b3a6f02023-07-07 00:50:102033 },
Struan Shrimptone772d72f2021-12-15 07:50:092034 },
Haiyang Pan08d09dc2020-04-01 16:11:212035 'android-pie-x86-rel': {
John Budoricka4e23882020-02-28 18:36:432036 'args': [
Haiyang Pan12d5acd2020-06-01 20:54:572037 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_p.content_browsertests.filter',
John Budoricka4e23882020-02-28 18:36:432038 ],
Sky Malice303f7ec2021-07-17 04:13:092039 'swarming': {
2040 # Flaking with only 20 shards with 40-60 minute runs.
2041 # https://crbug.com/1230118
2042 'shards': 30,
Haiyang Pan2eb735e72020-09-15 22:51:512043 },
John Budoricka4e23882020-02-28 18:36:432044 },
Haiyang Pan2c4c5e922023-10-09 22:57:312045 # Keep this same as android-oreo-x86-rel above
Prakharc60ec802023-03-06 07:49:292046 'android-x86-code-coverage': {
2047 'args': [
Haiyang Pan2c4c5e922023-10-09 22:57:312048 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_o.content_browsertests.filter',
Prakharc60ec802023-03-06 07:49:292049 ],
2050 'swarming': {
2051 'shards': 75,
Garrett Beatyade673d2023-08-04 22:00:252052 'dimensions': {
2053 # use 8-core to shorten runtime
2054 'cores': '8',
2055 },
Prakharc60ec802023-03-06 07:49:292056 },
2057 },
Rohan Pavonedf728bee22022-11-09 21:32:552058 'fuchsia-arm64-cast-receiver-rel': {
2059 # Temporarily only run this on CI due to resource and naming
2060 # constraints.
2061 # TODO(crbug.com/1371630): Remove this when resource requirements are
2062 # lower.
2063 'ci_only': True,
2064 },
2065 'fuchsia-arm64-rel': {
2066 # Temporarily only run this on CI due to resource and naming
2067 # constraints.
2068 # TODO(crbug.com/1371630): Remove this when resource requirements are
2069 # lower.
2070 'ci_only': True,
2071 },
Zijie He073e2232023-08-04 18:14:592072 'fuchsia-code-coverage': {
Zijie He668da5d2023-08-11 23:39:362073 'args': [
2074 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.coverage.content_browsertests.filter',
2075 '--test-launcher-jobs=1',
2076 ],
Zijie He073e2232023-08-04 18:14:592077 'swarming': {
Zijie He7cf95e412023-08-14 23:51:222078 'shards': 41,
Zijie He073e2232023-08-04 18:14:592079 },
2080 },
Rohan Pavonedf728bee22022-11-09 21:32:552081 'fuchsia-x64-cast-receiver-rel': {
2082 # Temporarily only run this on CI due to resource requirements.
2083 # TODO(crbug.com/1374125): Remove this once resources are available.
2084 'ci_only': True,
2085 'swarming': {
2086 'shards': 41,
2087 },
Zijie He0f361e652023-01-13 14:42:152088 'args': [
2089 # TODO(crbug.com/1406693): Remove this when the kernal panic in
2090 # fuchsia has been resolved.
2091 '--test-arg=--test-launcher-jobs=1',
2092 ],
Rohan Pavonedf728bee22022-11-09 21:32:552093 },
2094 'fuchsia-x64-rel': {
2095 'swarming': {
2096 'shards': 41,
2097 },
Zijie He38e3d132023-01-20 01:22:472098 'args': [
2099 # TODO(crbug.com/1406693): Remove this when the kernal panic in
2100 # fuchsia has been resolved.
2101 '--test-arg=--test-launcher-jobs=1',
2102 ],
Rohan Pavonedf728bee22022-11-09 21:32:552103 },
Stephen Martinis1384ff92020-01-07 19:52:152104 'linux-chromeos-code-coverage': {
2105 'swarming': {
2106 'shards': 12,
2107 },
2108 },
Albert J. Wong91f109652019-11-19 03:01:162109 'linux-chromeos-rel': {
Stephanie Kima735d442023-09-11 16:26:092110 # Only retry the individual failed tests instead of rerunning entire
2111 # shards.
2112 # crbug.com/1475852
2113 'retry_only_failed_tests': True,
Albert J. Wong91f109652019-11-19 03:01:162114 'swarming': {
Stephanie Kim3aa4c552023-01-10 18:00:042115 'shards': 6,
Albert J. Wong91f109652019-11-19 03:01:162116 },
2117 },
Yuke Liao79424e42020-01-06 21:00:112118 'linux-code-coverage': {
Yuke Liao58e1d202020-03-20 23:02:012119 'args': [
2120 '--no-sandbox',
2121 ],
Yuke Liao79424e42020-01-06 21:00:112122 'swarming': {
2123 'shards': 12,
2124 },
2125 },
Ian Struiksma2e23f962023-05-26 22:37:202126 'linux-exp-tsan-fyi-rel': {
2127 'swarming': {
2128 'shards': 30,
2129 },
2130 },
Sven Zheng80734f12020-08-06 06:50:392131 # https://crbug.com/1111979
2132 'linux-lacros-tester-fyi-rel': {
2133 'experiment_percentage': 100,
2134 },
Stephanie Kima735d442023-09-11 16:26:092135 'linux-lacros-tester-rel': {
2136 # Only retry the individual failed tests instead of rerunning entire
2137 # shards.
2138 # crbug.com/1475852
2139 'retry_only_failed_tests': True,
2140 },
Ian Struiksma448f4132023-10-11 16:21:172141 'linux-ubsan-fyi-rel': {
2142 'swarming': {
2143 'shards': 16,
2144 }
2145 },
Kuan Huang235b0142021-10-19 18:59:282146 'mac-code-coverage': {
2147 'args': [
2148 '--coverage-continuous-mode=1',
2149 ],
2150 },
Thiago Perrottaa289bad2023-01-20 12:44:392151 'mac-rel-cft': {
2152 'swarming': {
2153 'shards': 12,
Thiago Perrottaa289bad2023-01-20 12:44:392154 },
2155 },
Kuan Huang05332fb2021-10-12 02:04:262156 # https://crbug.com/1255940
Ben Pasteneac465d422023-03-23 21:54:292157 'mac-rel-dev': {
Kuan Huang05332fb2021-10-12 02:04:262158 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:252159 'dimensions': {
2160 # These test would time out when running on 4 cores instances.
2161 'cores': '8|12',
2162 },
Kuan Huang05332fb2021-10-12 02:04:262163 },
2164 },
Kuan Huang1b52d442023-02-07 20:35:342165 'win-asan': {
2166 # Tests shows tests run faster with fewer retries by using fewer jobs crbug.com/1411912
2167 'args': [
2168 '--test-launcher-jobs=3',
2169 ],
2170 'swarming': {
Titouan Rigoudyf1fd90442023-09-19 13:11:162171 # ASAN bot is slow: https://crbug.com/1484550#c3
2172 'shards': 32,
Kuan Huang1b52d442023-02-07 20:35:342173 },
2174 },
Thiago Perrotta314f7b02023-01-19 21:30:532175 'win-rel-cft': {
2176 # crbug.com/868082
2177 'args': [
2178 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
2179 ],
Thiago Perrotta314f7b02023-01-19 21:30:532180 },
Prakhar2b955f52023-07-21 19:46:582181 'win10-code-coverage': {
2182 'swarming': {
2183 'shards': 40,
Garrett Beatyade673d2023-08-04 22:00:252184 'dimensions': {
Prakhar2b955f52023-07-21 19:46:582185 'pool': 'chromium.tests.coverage',
2186 'ssd': '1',
Garrett Beatyade673d2023-08-04 22:00:252187 },
Prakhar2b955f52023-07-21 19:46:582188 }
2189 },
Ben Pasteneebad8fc2022-08-12 23:34:282190 'win10-rel-no-external-ip': {
2191 # crbug.com/868082
2192 'args': [
2193 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
2194 ],
2195 },
Kenneth Russelleb60cbd22017-12-05 07:54:282196 },
2197 },
Nico Weber81e16ace22018-06-30 02:58:472198 'content_shell_crash_test': {
Haiyang Pan8c201b92020-06-04 01:25:072199 'remove_from': [
Haiyang Pan2c4c5e922023-10-09 22:57:312200 'android-oreo-x86-rel', # crbug.com/1084353. If you remove this, also remove android-x86-code-coverage.
Haiyang Panb41ca5f2023-07-10 23:11:312201 'android-x86-code-coverage',
Haiyang Pan8c201b92020-06-04 01:25:072202 ],
Dirk Prankeb1c36b322018-07-11 02:42:002203 'modifications': {
Dirk Prankeb1c36b322018-07-11 02:42:002204 'Win10 Tests x64 (dbg)': {
2205 'experiment_percentage': 100, # https://crbug.com/861730
2206 },
2207 },
Nico Weber81e16ace22018-06-30 02:58:472208 },
John Budorick27d2d44e2019-05-20 20:26:092209 'content_shell_test_apk': {
2210 'remove_from': [
John Budorick27d2d44e2019-05-20 20:26:092211 'android-asan', # https://crbug.com/964562
Ben Joyce02dc8092021-03-04 21:48:192212 'android-code-coverage-native', # Does not generate profraw data.
John Budorick27d2d44e2019-05-20 20:26:092213 ],
John Budorickee2e64f2020-03-02 20:19:102214 'modifications': {
Haiyang Pan9d68ca02021-08-04 21:30:472215 'android-11-x86-rel': {
Haiyang Pan103864812021-03-19 19:28:442216 'args': [
2217 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.content_shell_test_apk.filter',
Haiyang Panabdab2f2021-07-19 20:37:512218 '--timeout-scale=2.0',
Haiyang Pan103864812021-03-19 19:28:442219 ],
2220 },
Haiyang Pan2a55a452022-03-03 08:18:332221 'android-12-x64-rel': {
Haiyang Pan3b1016e2022-02-05 00:02:452222 'args': [
2223 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.content_shell_test_apk.filter',
2224 ],
James Shen818743e2023-02-16 02:11:162225 'ci_only': True,
Haiyang Pan3b1016e2022-02-05 00:02:452226 },
Haiyang Pan162b36f2023-02-17 23:23:032227 'android-12l-x64-dbg-tests': {
2228 'args': [
2229 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12l.content_shell_test_apk.filter',
2230 ],
2231 },
Haiyang Panef317e4372023-05-19 01:30:082232 'android-12l-x64-fyi-dbg': {
2233 'args': [
2234 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12l.content_shell_test_apk.filter',
2235 ],
2236 },
2237 'android-13-x64-fyi-rel': {
2238 'args': [
2239 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_13.content_shell_test_apk.filter',
2240 ],
2241 },
Haiyang Pan162b36f2023-02-17 23:23:032242 'android-13-x64-rel': {
2243 'args': [
2244 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_13.content_shell_test_apk.filter',
2245 ],
2246 },
Prakharc60ec802023-03-06 07:49:292247 # If you change this, make similar changes in android-x86-code-coverage below
Haiyang Panb41ca5f2023-07-10 23:11:312248 'android-oreo-x86-rel': {
2249 'swarming': {
2250 'shards': 6,
Garrett Beatyade673d2023-08-04 22:00:252251 'dimensions': {
2252 # use 8-core to shorten runtime
2253 'cores': '8',
2254 },
Haiyang Panb41ca5f2023-07-10 23:11:312255 },
2256 },
Haiyang Pan08d09dc2020-04-01 16:11:212257 'android-pie-x86-rel': {
John Budorickee2e64f2020-03-02 20:19:102258 'args': [
Haiyang Panbe1a8922023-07-10 20:52:432259 '--gtest_filter=-org.chromium.content.browser.input.ImeInputModeTest.testShowAndHideInputMode*',
John Budorickee2e64f2020-03-02 20:19:102260 ],
2261 },
Haiyang Pan2c4c5e922023-10-09 22:57:312262 # Keep this same as android-oreo-x86-rel above
Prakharc60ec802023-03-06 07:49:292263 'android-x86-code-coverage': {
Prakharc60ec802023-03-06 07:49:292264 'swarming': {
2265 'shards': 6,
Garrett Beatyade673d2023-08-04 22:00:252266 'dimensions': {
2267 # use 8-core to shorten runtime
2268 'cores': '8',
2269 },
Prakharc60ec802023-03-06 07:49:292270 },
2271 },
John Budorickee2e64f2020-03-02 20:19:102272 },
John Budorick27d2d44e2019-05-20 20:26:092273 },
Kenneth Russelleb60cbd22017-12-05 07:54:282274 'content_unittests': {
2275 'modifications': {
John Budorick5052d552017-12-13 02:59:342276 'Linux ASan LSan Tests (1)': {
2277 # These are slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:442278 # crbug.com/1257927
John Budorick5052d552017-12-13 02:59:342279 'swarming': {
2280 'shards': 2,
2281 },
2282 },
Takuto Ikuta54671d972018-07-19 19:06:352283 'Linux ChromiumOS MSan Tests': {
2284 # These are very slow on the Chrome OS MSAN trybot for some reason.
2285 # crbug.com/865455
2286 'swarming': {
2287 'shards': 2,
2288 },
2289 },
Chong Gu52481452021-04-02 17:52:412290 'fuchsia-code-coverage': {
2291 'swarming': {
2292 'shards': 12,
2293 },
2294 },
Chong Gua10cd302022-01-14 19:22:192295 'fuchsia-fyi-x64-asan': {
2296 'args': [
2297 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.lsan.content_unittests.filter',
2298 ],
2299 },
Ben Pastene96b328e82023-04-07 21:19:052300 'linux-rel-dev': {
2301 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:252302 'dimensions': {
2303 'cores': '8',
2304 },
Ben Pastene96b328e82023-04-07 21:19:052305 },
2306 },
Prakhar280f58d2023-05-17 18:09:102307 'win10-code-coverage': {
2308 'swarming': {
2309 'shards': 2,
Prakhar Asthana6a646cb12023-10-11 17:45:352310 },
Prakhar280f58d2023-05-17 18:09:102311 },
Kenneth Russelleb60cbd22017-12-05 07:54:282312 },
2313 },
Yuly Novikov322b57f2023-08-21 23:25:092314 'context_lost_metal_passthrough_ganesh_tests': {
Yuly Novikov3ed87d1b2023-08-04 19:09:362315 'remove_from': [
2316 # crbug.com/1458020 for Mac Retina ASAN removal
2317 'Mac FYI Retina ASAN (AMD)',
2318 ],
2319 },
Yuly Novikov322b57f2023-08-21 23:25:092320 'context_lost_metal_passthrough_graphite_tests': {
Kenneth Russell7e6ae8372023-06-29 02:36:382321 'remove_from': [
2322 # crbug.com/1458020 for Mac Retina ASAN removal
2323 'Mac FYI Retina ASAN (AMD)',
2324 ],
2325 },
Jonah Ryan-Davis832c8462020-06-09 03:45:032326 'context_lost_validating_tests': {
Brian Sheedye285c9b2019-07-15 21:42:462327 # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2)
2328 # exception once there is enough capacity to run these tests.
2329 'remove_from': [
Brian Sheedye285c9b2019-07-15 21:42:462330 'Android FYI Release (Pixel 2)',
2331 ],
Kenneth Russellc1a09302018-07-10 01:12:542332 },
Thiago Perrotta0aaac5e2023-09-07 08:26:102333 'cr23_pixel_browser_tests': {
2334 'modifications': {
2335 'win-rel-cft': {
2336 'args': [
2337 '--test-launcher-filter-file=../../testing/buildbot/filters/win.win-rel-cft.cr23_pixel_browser_tests.filter',
2338 ],
2339 },
2340 },
2341 },
Kenneth Russellfbda3c532017-12-08 23:57:242342 'crashpad_tests': {
2343 'remove_from': [
Nico Weber15a00d62018-05-16 17:11:482344 'linux-win_cross-rel', # https://crbug.com/762167
Vlad Tsyrklevich06a9a44f2019-07-24 19:14:392345 # https://crbug.com/crashpad/304
2346 'Linux TSan Tests',
Ian Struiksma2e23f962023-05-26 22:37:202347 # https://crbug.com/crashpad/304
2348 'linux-exp-tsan-fyi-rel',
Vlad Tsyrklevich06a9a44f2019-07-24 19:14:392349 'ToTLinuxTSan',
2350 # https://crbug.com/crashpad/306
2351 'Linux CFI',
2352 'CFI Linux ToT',
Kenneth Russellfbda3c532017-12-08 23:57:242353 ],
Haiyang Panc7c009e2021-03-18 19:31:232354 'modifications': {
Avi Drissmanc6318122022-03-29 17:07:422355 # TODO(crbug.com/1254975): dyld was rebuilt for macOS 12, which breaks
2356 # the tests. Run this experimentally on all the macOS bots >= 12 and
2357 # remove this exception once fixed.
2358 'Mac Builder Next': {
2359 'experiment_percentage': 100,
2360 },
Ben Joycea0319112022-11-15 23:53:122361 'ToTAndroid': {
2362 'args': [
2363 '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_tot.crashpad_tests.filter',
2364 ],
2365 },
Haiyang Pan9d68ca02021-08-04 21:30:472366 'android-11-x86-rel': {
Haiyang Panc7c009e2021-03-18 19:31:232367 'args': [
Haiyang Pan32338b72023-02-08 23:48:582368 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.crashpad_tests.filter',
Haiyang Panc7c009e2021-03-18 19:31:232369 ],
2370 },
Haiyang Pan2a55a452022-03-03 08:18:332371 'android-12-x64-rel': {
Haiyang Pan07d9e262021-10-20 21:50:032372 'args': [
Haiyang Pan32338b72023-02-08 23:48:582373 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.crashpad_tests.filter',
2374 ],
2375 },
2376 'android-12l-x64-dbg-tests': {
2377 'args': [
2378 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.crashpad_tests.filter',
2379 ],
2380 },
Haiyang Panef317e4372023-05-19 01:30:082381 'android-12l-x64-fyi-dbg': {
2382 'args': [
2383 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.crashpad_tests.filter',
2384 ],
2385 },
2386 'android-13-x64-fyi-rel': {
2387 'args': [
2388 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.crashpad_tests.filter',
2389 ],
2390 },
Haiyang Pan32338b72023-02-08 23:48:582391 'android-13-x64-rel': {
2392 'args': [
2393 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.crashpad_tests.filter',
Haiyang Pan07d9e262021-10-20 21:50:032394 ],
2395 },
Avi Drissmanc6318122022-03-29 17:07:422396 # TODO(crbug.com/1254975): dyld was rebuilt for macOS 12, which breaks
2397 # the tests. Run this experimentally on all the macOS bots >= 12 and
2398 # remove this exception once fixed.
Lindsay Pasricha60535a22021-12-13 16:50:242399 'mac-osxbeta-rel': {
2400 'experiment_percentage': 100,
2401 },
Haiyang Panc7c009e2021-03-18 19:31:232402 },
Kenneth Russellfbda3c532017-12-08 23:57:242403 },
Brian Sheedyd9a809f02022-10-06 00:50:372404 'dawn_end2end_skip_validation_tests': {
2405 'remove_from': [
2406 # TODO(crbug.com/1363409): Enable these once they're shown to work on
2407 # Android.
2408 'Dawn Android arm DEPS Release (Pixel 4)',
2409 'Dawn Android arm Release (Pixel 4)',
Austin Eng337f62b2023-05-17 21:34:152410 'Dawn Android arm64 DEPS Release (Pixel 6)',
2411 'Dawn Android arm64 Release (Pixel 6)',
Brian Sheedyd9a809f02022-10-06 00:50:372412 ],
2413 },
2414 'dawn_end2end_validation_layers_tests': {
2415 'remove_from': [
2416 # TODO(crbug.com/1363409): Enable these once they're shown to work on
2417 # Android.
2418 'Dawn Android arm DEPS Release (Pixel 4)',
2419 'Dawn Android arm Release (Pixel 4)',
Austin Eng337f62b2023-05-17 21:34:152420 'Dawn Android arm64 DEPS Release (Pixel 6)',
2421 'Dawn Android arm64 Release (Pixel 6)',
Brian Sheedyd9a809f02022-10-06 00:50:372422 ],
2423 },
2424 'dawn_end2end_wire_tests': {
2425 'remove_from': [
2426 # TODO(crbug.com/1363409): Enable these once they're shown to work on
2427 # Android.
2428 'Dawn Android arm DEPS Release (Pixel 4)',
2429 'Dawn Android arm Release (Pixel 4)',
Austin Eng337f62b2023-05-17 21:34:152430 'Dawn Android arm64 DEPS Release (Pixel 6)',
2431 'Dawn Android arm64 Release (Pixel 6)',
Brian Sheedyd9a809f02022-10-06 00:50:372432 ],
2433 },
Austin Eng414af1612022-04-08 02:15:362434 'dawn_perf_tests': {
2435 'remove_from': [
Brian Sheedyd9a809f02022-10-06 00:50:372436 # TODO(crbug.com/1363409): Enable these once they're shown to work on
2437 # Android.
2438 'Dawn Android arm DEPS Release (Pixel 4)',
2439 'Dawn Android arm Release (Pixel 4)',
Austin Eng337f62b2023-05-17 21:34:152440 'Dawn Android arm64 DEPS Release (Pixel 6)',
2441 'Dawn Android arm64 Release (Pixel 6)',
Austin Eng414af1612022-04-08 02:15:362442 ],
2443 },
Haiyang Pan1c813ca2021-11-24 18:52:162444 'device_unittests': {
2445 'modifications': {
Haiyang Pan2a55a452022-03-03 08:18:332446 'android-12-x64-rel': {
Haiyang Pan1c813ca2021-11-24 18:52:162447 'args': [
Haiyang Pand1a294512023-02-09 19:40:122448 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.device_unittests.filter',
2449 ],
2450 },
2451 'android-12l-x64-dbg-tests': {
2452 'args': [
2453 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.device_unittests.filter',
2454 ],
2455 },
Haiyang Panef317e4372023-05-19 01:30:082456 'android-12l-x64-fyi-dbg': {
2457 'args': [
2458 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.device_unittests.filter',
2459 ],
2460 },
2461 'android-13-x64-fyi-rel': {
2462 'args': [
2463 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.device_unittests.filter',
2464 ],
2465 },
Haiyang Pand1a294512023-02-09 19:40:122466 'android-13-x64-rel': {
2467 'args': [
2468 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.device_unittests.filter',
Haiyang Pan1c813ca2021-11-24 18:52:162469 ],
2470 },
2471 },
2472 },
Yuly Novikov3ed87d1b2023-08-04 19:09:362473 'expected_color_pixel_gl_passthrough_ganesh_test': {
Yuly Novikov8e05ea72023-07-31 17:10:342474 'replacements': {
2475 'Mac V8 FYI Release (Intel)': {
2476 'args': {
2477 '--git-revision': '${got_cr_revision}',
2478 },
2479 },
2480 },
2481 },
Yuly Novikov322b57f2023-08-21 23:25:092482 'expected_color_pixel_metal_passthrough_ganesh_test': {
Yuly Novikov3ed87d1b2023-08-04 19:09:362483 'remove_from': [
2484 # crbug.com/1458020 for Mac Retina ASAN removal
2485 'Mac FYI Retina ASAN (AMD)',
2486 ],
2487 'replacements': {
2488 'Mac V8 FYI Release (Intel)': {
2489 'args': {
2490 '--git-revision': '${got_cr_revision}',
2491 },
2492 },
2493 },
2494 },
Yuly Novikov322b57f2023-08-21 23:25:092495 'expected_color_pixel_metal_passthrough_graphite_test': {
Yuly Novikov8e05ea72023-07-31 17:10:342496 'remove_from': [
2497 # crbug.com/1458020 for Mac Retina ASAN removal
2498 'Mac FYI Retina ASAN (AMD)',
2499 ],
2500 'replacements': {
2501 'Mac V8 FYI Release (Intel)': {
2502 'args': {
2503 '--git-revision': '${got_cr_revision}',
2504 },
2505 },
2506 },
2507 },
Brian Sheedy50b3caf2023-07-11 19:26:492508 'expected_color_pixel_passthrough_test': {
2509 'modifications': {
2510 'Android FYI Release (Pixel 4)': {
2511 'args': [
2512 # Pixel 4s are weird in that they can output in different color spaces
2513 # simultaneously. The readback code for capturing a screenshot assumes
2514 # only one color space, so disable wide color gamut for the test to
2515 # work around the issue. See https://crbug.com/1166379 for more
2516 # information.
2517 '--extra-browser-args=--disable-wcg-for-test',
2518 ],
2519 },
2520 'android_optional_gpu_tests_rel': {
2521 'args': [
2522 # See above.
2523 '--extra-browser-args=--disable-wcg-for-test',
2524 ],
2525 },
2526 },
Brian Sheedy50b3caf2023-07-11 19:26:492527 'replacements': {
2528 # The V8 builders pass the V8 revision for ${got_revision}, so instead
2529 # use ${got_cr_revision}, which is only set on the V8 bots.
2530 'Linux V8 FYI Release (NVIDIA)': {
2531 'args': {
2532 '--git-revision': '${got_cr_revision}',
2533 },
2534 },
2535 'Linux V8 FYI Release - pointer compression (NVIDIA)': {
2536 'args': {
2537 '--git-revision': '${got_cr_revision}',
2538 },
2539 },
Brian Sheedy50b3caf2023-07-11 19:26:492540 'Win V8 FYI Release (NVIDIA)': {
2541 'args': {
2542 '--git-revision': '${got_cr_revision}',
2543 },
2544 },
2545 },
2546 },
Brian Sheedy48c79732023-10-02 18:08:282547 'expected_color_pixel_passthrough_test JACUZZI_RELEASE_LKGM': {
2548 'modifications': {
2549 'ChromeOS FYI Release Skylab (jacuzzi)': {
2550 'args': [
2551 # Skylab currently doesn't support use of LUCI_CONTEXT, so Gold cannot
2552 # automatically get the service account to authenticate with.
2553 '--service-account=/creds/service_accounts/skylab-drone.json',
2554 ],
2555 },
2556 },
2557 },
Brian Sheedyc3138b52023-11-27 19:44:472558 'expected_color_pixel_passthrough_test VOLTEER_PUBLIC_RELEASE_LKGM': {
2559 'modifications': {
2560 'ChromeOS FYI Release Skylab (volteer)': {
2561 'args': [
2562 # Skylab currently doesn't support use of LUCI_CONTEXT, so Gold cannot
2563 # automatically get the service account to authenticate with.
2564 '--service-account=/creds/service_accounts/skylab-drone.json',
2565 ],
2566 },
2567 },
2568 },
Brian Sheedy50b3caf2023-07-11 19:26:492569 'expected_color_pixel_validating_test': {
2570 'modifications': {
2571 'Android FYI Release (Pixel 4)': {
2572 'args': [
2573 # Pixel 4s are weird in that they can output in different color spaces
2574 # simultaneously. The readback code for capturing a screenshot assumes
2575 # only one color space, so disable wide color gamut for the test to
2576 # work around the issue. See https://crbug.com/1166379 for more
2577 # information.
2578 '--extra-browser-args=--disable-wcg-for-test',
2579 ],
2580 },
2581 'android_optional_gpu_tests_rel': {
2582 'args': [
2583 # See above.
2584 '--extra-browser-args=--disable-wcg-for-test',
2585 ],
2586 },
2587 },
2588 # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2)
2589 # exception once there is enough capacity to run these tests.
2590 'remove_from': [
2591 'Android FYI Release (Pixel 2)',
2592 ],
2593 'replacements': {
2594 # The V8 builders pass the V8 revision for ${got_revision}, so instead
2595 # use ${got_cr_revision}, which is only set on the V8 bots.
2596 'Android V8 FYI Release (Nexus 5X)': {
2597 'args': {
2598 '--git-revision': '${got_cr_revision}',
2599 },
2600 },
2601 },
2602 },
Joe Downing41486042018-10-18 22:44:442603 'extensions_browsertests': {
Brad Halla36886c2019-02-26 16:52:292604 'remove_from': [
Brad Halla36886c2019-02-26 16:52:292605 'CrWinAsan(dll)', # https://crbug.com/935598
2606 ],
Joe Downing41486042018-10-18 22:44:442607 'modifications': {
2608 'Win10 Tests x64 (dbg)': {
2609 'experiment_percentage': 100, # https://crbug.com/876615
2610 },
Sven Zhengbc822262022-09-20 20:47:352611 # https://crbug.com/1111979
2612 'linux-lacros-asan-lsan-rel': {
2613 'args': [
2614 '--gtest_filter=-BluetoothShellApiTest.ApiSanityCheck:BluetoothSocketApiTest.Listen:BluetoothSocketApiTest.PermissionDenied',
2615 ],
2616 },
Sven Zheng5c9d3e342020-08-11 21:39:432617 # https://crbug.com/1111979,
Junhua Chen39dd2dba2021-05-05 17:51:542618 'linux-lacros-code-coverage': {
2619 'args': [
2620 '--gtest_filter=-BluetoothShellApiTest.ApiSanityCheck:BluetoothSocketApiTest.Listen:BluetoothSocketApiTest.PermissionDenied',
2621 ],
2622 },
Yuke Liaoa0db4742021-08-09 18:28:332623 'linux-lacros-dbg-tests-fyi': {
2624 'args': [
2625 '--gtest_filter=-BluetoothShellApiTest.ApiSanityCheck:BluetoothSocketApiTest.Listen:BluetoothSocketApiTest.PermissionDenied',
2626 ],
2627 },
Sven Zheng5c9d3e342020-08-11 21:39:432628 'linux-lacros-tester-rel': {
Sven Zheng5c9d3e342020-08-11 21:39:432629 'args': [
2630 '--gtest_filter=-BluetoothShellApiTest.ApiSanityCheck:BluetoothSocketApiTest.Listen:BluetoothSocketApiTest.PermissionDenied',
2631 ],
2632 },
Prakharf5c3e6402023-10-09 22:04:572633 'win10-code-coverage': {
2634 'swarming': {
2635 'shards': 2,
2636 'dimensions': {
2637 'pool': 'chromium.tests.coverage',
2638 'ssd': '1',
2639 },
2640 }
2641 },
Joe Downing41486042018-10-18 22:44:442642 },
2643 },
Sven Zheng577fe5ff2020-08-03 22:06:442644 'extensions_unittests': {
Sven Zheng80734f12020-08-06 06:50:392645 'modifications': {
Zijie He073e2232023-08-04 18:14:592646 'fuchsia-code-coverage': {
2647 'swarming': {
2648 'shards': 2,
2649 },
2650 },
Chong Gud034fe52022-01-20 21:48:042651 'fuchsia-fyi-x64-asan': {
2652 'args': [
Chong Gu1155d872022-02-10 17:55:272653 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.lsan.extensions_unittests.filter',
Chong Gud034fe52022-01-20 21:48:042654 ],
2655 },
Sven Zhengbc822262022-09-20 20:47:352656 # https://crbug.com/1111979
2657 'linux-lacros-asan-lsan-rel': {
2658 'args': [
Jenny Zhangb71f9792023-07-21 01:06:102659 '--gtest_filter=-NativeExtensionBindingsSystemUnittest.AccessToAliasDoesntGiveAliasSourceAccess:'
2660 'NativeExtensionBindingsSystemUnittest.AliasedAPIsAreDifferentObjects',
Sven Zhengbc822262022-09-20 20:47:352661 ],
2662 },
Sven Zheng5c9d3e342020-08-11 21:39:432663 # https://crbug.com/1111979,
Junhua Chen39dd2dba2021-05-05 17:51:542664 'linux-lacros-code-coverage': {
2665 'args': [
Jenny Zhangb71f9792023-07-21 01:06:102666 '--gtest_filter=-NativeExtensionBindingsSystemUnittest.AccessToAliasDoesntGiveAliasSourceAccess:'
2667 'NativeExtensionBindingsSystemUnittest.AliasedAPIsAreDifferentObjects',
Yuke Liaoa0db4742021-08-09 18:28:332668 ],
2669 },
2670 'linux-lacros-dbg-tests-fyi': {
2671 'args': [
Jenny Zhangb71f9792023-07-21 01:06:102672 '--gtest_filter=-NativeExtensionBindingsSystemUnittest.AccessToAliasDoesntGiveAliasSourceAccess:'
2673 'NativeExtensionBindingsSystemUnittest.AliasedAPIsAreDifferentObjects',
Junhua Chen39dd2dba2021-05-05 17:51:542674 ],
2675 },
Sven Zheng5c9d3e342020-08-11 21:39:432676 'linux-lacros-tester-rel': {
Sven Zheng5c9d3e342020-08-11 21:39:432677 'args': [
Jenny Zhangb71f9792023-07-21 01:06:102678 '--gtest_filter=-NativeExtensionBindingsSystemUnittest.AccessToAliasDoesntGiveAliasSourceAccess:'
2679 'NativeExtensionBindingsSystemUnittest.AliasedAPIsAreDifferentObjects',
Sven Zheng5c9d3e342020-08-11 21:39:432680 ],
2681 },
Sven Zheng80734f12020-08-06 06:50:392682 },
Sven Zheng577fe5ff2020-08-03 22:06:442683 },
Brian Sheedy74f28cc2023-08-18 22:16:512684 'gcp_unittests': {
2685 'modifications': {
2686 # Flakily times out with only a single shard due to slow runtime.
2687 'win-asan': {
2688 'swarming': {
2689 'shards': 2,
2690 },
2691 },
2692 },
2693 },
Chong Gu76046412021-09-22 17:49:212694 'gfx_unittests': {
Chong Gudf7fbe92021-02-24 02:55:582695 'modifications': {
2696 'fuchsia-code-coverage': {
2697 'swarming': {
2698 'shards': 2,
2699 },
2700 },
2701 },
2702 },
Kenneth Russelleb60cbd22017-12-05 07:54:282703 'gin_unittests': {
2704 'remove_from': [
Nico Weber1394523f2018-06-06 15:58:472705 'ToTLinuxASan', # https://crbug.com/831667
Nico Weberd36959682018-04-12 03:33:462706 'Linux ASan LSan Tests (1)', # https://crbug.com/831667
Nico Weber1394523f2018-06-06 15:58:472707 'Linux Chromium OS ASan LSan Tests (1)', # https://crbug.com/831667
Kenneth Russelleb60cbd22017-12-05 07:54:282708 ],
Chong Gua10cd302022-01-14 19:22:192709 'modifications': {
Haiyang Pance026642023-04-26 19:34:212710 'android-arm64-proguard-rel': {
2711 'args': [
2712 # https://crbug.com/1404782
2713 '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_arm64.gin_unittests.filter',
2714 ],
2715 },
Ben Joycee3f55c902023-01-13 00:27:292716 'android-code-coverage-native': {
2717 'args': [
2718 # https://crbug.com/1404782
Haiyang Pance026642023-04-26 19:34:212719 '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_arm64.gin_unittests.filter',
Ben Joycee3f55c902023-01-13 00:27:292720 ],
2721 },
Chong Gua10cd302022-01-14 19:22:192722 'fuchsia-fyi-x64-asan': {
2723 'args': [
2724 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.lsan.gin_unittests.filter',
2725 ],
2726 },
2727 },
Kenneth Russelleb60cbd22017-12-05 07:54:282728 },
Jonah Ryan-Davisdeeffeaf2020-06-18 17:56:002729 'gl_tests_passthrough': {
2730 'remove_from': [
2731 'CFI Linux ToT',
Brian Sheedyd9a809f02022-10-06 00:50:372732 # TODO(crbug.com/1363409): Enable these once they're shown to work on
2733 # Android.
2734 'Dawn Android arm DEPS Release (Pixel 4)',
2735 'Dawn Android arm Release (Pixel 4)',
Austin Eng337f62b2023-05-17 21:34:152736 'Dawn Android arm64 DEPS Release (Pixel 6)',
2737 'Dawn Android arm64 Release (Pixel 6)',
Jonah Ryan-Davisdeeffeaf2020-06-18 17:56:002738 # Can't run on MSAN because gl_tests uses the hardware driver,
2739 # which isn't instrumented.
2740 'Linux MSan Tests',
Ian Struiksmab0412a22023-06-06 23:02:482741 'linux-exp-msan-fyi-rel',
Jonah Ryan-Davisdeeffeaf2020-06-18 17:56:002742 ],
2743 'modifications': {
2744 # TODO(kbr): figure out a better way to specify blocks of
2745 # arguments like this for tests on multiple machines.
Garrett Beatya491ec72020-07-25 12:36:122746 'Linux ASan LSan Tests (1)': {
2747 'args': [
2748 '--use-gpu-in-tests',
2749 '--no-xvfb',
2750 ],
2751 'swarming': {
Yuly Novikovbcd82dd12023-10-09 17:12:592752 # This must be kept in sync with linux_nvidia_gtx_1660_stable mixin
Garrett Beatyade673d2023-08-04 22:00:252753 'dimensions': {
Yuly Novikovbcd82dd12023-10-09 17:12:592754 'gpu': '10de:2184-440.100',
2755 'os': 'Ubuntu-18.04.5|Ubuntu-18.04.6',
Garrett Beatyade673d2023-08-04 22:00:252756 'pool': 'chromium.tests.gpu',
2757 },
Garrett Beatya491ec72020-07-25 12:36:122758 },
2759 },
2760 'Linux CFI': {
2761 'args': [
2762 '--use-gpu-in-tests',
2763 '--no-xvfb',
2764 ],
2765 'swarming': {
Yuly Novikovbcd82dd12023-10-09 17:12:592766 # This must be kept in sync with linux_nvidia_gtx_1660_stable mixin
Garrett Beatyade673d2023-08-04 22:00:252767 'dimensions': {
Yuly Novikovbcd82dd12023-10-09 17:12:592768 'gpu': '10de:2184-440.100',
2769 'os': 'Ubuntu-18.04.5|Ubuntu-18.04.6',
Garrett Beatyade673d2023-08-04 22:00:252770 'pool': 'chromium.tests.gpu',
2771 },
Garrett Beatya491ec72020-07-25 12:36:122772 },
2773 },
2774 'Linux TSan Tests': {
2775 'args': [
2776 '--use-gpu-in-tests',
2777 '--no-xvfb',
2778 ],
2779 'swarming': {
Yuly Novikovbcd82dd12023-10-09 17:12:592780 # This must be kept in sync with linux_nvidia_gtx_1660_stable mixin
Garrett Beatyade673d2023-08-04 22:00:252781 'dimensions': {
Yuly Novikovbcd82dd12023-10-09 17:12:592782 'gpu': '10de:2184-440.100',
2783 'os': 'Ubuntu-18.04.5|Ubuntu-18.04.6',
Garrett Beatyade673d2023-08-04 22:00:252784 'pool': 'chromium.tests.gpu',
2785 },
Garrett Beatya491ec72020-07-25 12:36:122786 },
2787 },
Ian Struiksma2e23f962023-05-26 22:37:202788 'linux-exp-tsan-fyi-rel': {
2789 'args': [
2790 '--use-gpu-in-tests',
2791 '--no-xvfb',
2792 ],
2793 'swarming': {
Yuly Novikovbcd82dd12023-10-09 17:12:592794 # This must be kept in sync with linux_nvidia_gtx_1660_stable mixin
Garrett Beatyade673d2023-08-04 22:00:252795 'dimensions': {
Yuly Novikovbcd82dd12023-10-09 17:12:592796 'gpu': '10de:2184-440.100',
2797 'os': 'Ubuntu-18.04.5|Ubuntu-18.04.6',
Garrett Beatyade673d2023-08-04 22:00:252798 'pool': 'chromium.tests.gpu',
2799 },
Ian Struiksma2e23f962023-05-26 22:37:202800 },
2801 },
Jonah Ryan-Davisdeeffeaf2020-06-18 17:56:002802 },
2803 },
Jonah Ryan-Davise25a89f2020-05-29 20:18:242804 'gl_tests_validating': {
Kenneth Russelleb60cbd22017-12-05 07:54:282805 'modifications': {
Brian Sheedy920df652022-11-11 20:54:152806 'Android FYI Release (Samsung A13)': {
2807 'args': [
2808 '--test-launcher-filter-file=../../testing/buildbot/filters/android.samsung_a13.gl_tests.filter',
2809 ],
2810 },
Sunny Sachanandanib5c6c082022-09-29 00:26:142811 'Android FYI Release (Samsung A23)': {
2812 'args': [
2813 '--test-launcher-filter-file=../../testing/buildbot/filters/android.samsung_a23.gl_tests.filter',
2814 ],
2815 },
Ben Joycea0319112022-11-15 23:53:122816 'ToTAndroid': {
2817 'args': [
2818 '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_tot.gl_tests.filter', # https://crbug.com/1034007
2819 ],
2820 },
Haiyang Pan9d68ca02021-08-04 21:30:472821 'android-11-x86-rel': {
Haiyang Pancf765862021-03-18 20:39:152822 'args': [
2823 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.gl_tests.filter',
2824 ],
2825 },
Haiyang Pan2a55a452022-03-03 08:18:332826 'android-12-x64-rel': {
Haiyang Pan382008922021-11-19 21:15:092827 'args': [
Haiyang Pand1a294512023-02-09 19:40:122828 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12_12l_13.gl_tests.filter',
2829 ],
2830 },
2831 'android-12l-x64-dbg-tests': {
2832 'args': [
2833 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12_12l_13.gl_tests.filter',
2834 ],
2835 },
Haiyang Panef317e4372023-05-19 01:30:082836 'android-12l-x64-fyi-dbg': {
2837 'args': [
2838 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12_12l_13.gl_tests.filter',
2839 ],
2840 },
2841 'android-13-x64-fyi-rel': {
2842 'args': [
2843 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12_12l_13.gl_tests.filter',
2844 ],
2845 },
Haiyang Pand1a294512023-02-09 19:40:122846 'android-13-x64-rel': {
2847 'args': [
2848 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12_12l_13.gl_tests.filter',
Haiyang Pan382008922021-11-19 21:15:092849 ],
2850 },
Nate Fischerb0474702022-12-13 22:46:532851 'android-arm64-proguard-rel': {
2852 'args': [
2853 '--test-launcher-filter-file=../../testing/buildbot/filters/android.arm64_proguard_rel.gl_tests.filter', # https://crbug.com/1034007
2854 ],
2855 },
Ben Joycee3f55c902023-01-13 00:27:292856 'android-code-coverage-native': {
2857 'args': [
2858 '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_arm64_rel.gl_tests.filter', # https://crbug.com/1034007
2859 ],
2860 },
Prakharc60ec802023-03-06 07:49:292861 # If you change this, make similar changes in android-x86-code-coverage below
Ben Joyce6f566c52023-07-14 22:55:012862 'android-oreo-x86-rel': {
2863 'args': [
Haiyang Pan2c4c5e922023-10-09 22:57:312864 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_o_p.gl_tests.filter',
James Shenc47f7b12022-07-07 23:42:412865 ],
2866 },
Andrew Luo38b311f2019-10-04 03:42:092867 'android-pie-arm64-rel': {
John Budorick79ec9012020-01-08 21:56:312868 'args': [
Andrew Luobe83fd82019-12-19 03:07:582869 '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_arm64_rel.gl_tests.filter', # https://crbug.com/1034007
2870 ],
Andrew Luo38b311f2019-10-04 03:42:092871 },
Haiyang Pan08d09dc2020-04-01 16:11:212872 'android-pie-x86-rel': {
John Budorick79ec9012020-01-08 21:56:312873 'args': [
Haiyang Pan2c4c5e922023-10-09 22:57:312874 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_o_p.gl_tests.filter',
John Budorick79ec9012020-01-08 21:56:312875 ],
2876 },
Haiyang Pan2c4c5e922023-10-09 22:57:312877 # Keep this same as android-oreo-x86-rel above
Prakharc60ec802023-03-06 07:49:292878 'android-x86-code-coverage': {
2879 'args': [
Haiyang Pan2c4c5e922023-10-09 22:57:312880 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_o_p.gl_tests.filter',
Prakharc60ec802023-03-06 07:49:292881 ],
2882 },
Kenneth Russelleb60cbd22017-12-05 07:54:282883 },
2884 },
Takuto Ikutaf5333252019-11-06 16:07:082885 'gl_unittests': {
2886 'remove_from': [
Takuto Ikutaf5333252019-11-06 16:07:082887 # On Android, these are already run on the main waterfall.
2888 # Run them on the one-off Android FYI bots, though.
2889 'Android FYI Release (Nexus 5X)',
Brian Sheedyd9a809f02022-10-06 00:50:372890 # TODO(crbug.com/1363409): Enable these once they're shown to work on
2891 # Android.
2892 'Dawn Android arm DEPS Release (Pixel 4)',
2893 'Dawn Android arm Release (Pixel 4)',
Austin Eng337f62b2023-05-17 21:34:152894 'Dawn Android arm64 DEPS Release (Pixel 6)',
2895 'Dawn Android arm64 Release (Pixel 6)',
Yuly Novikov37e04342020-05-29 00:52:042896 # Can't run on MSAN because gl_unittests uses the hardware driver,
2897 # which isn't instrumented.
2898 'Linux MSan Tests',
Ian Struiksmab0412a22023-06-06 23:02:482899 'linux-exp-msan-fyi-rel',
Takuto Ikutaf5333252019-11-06 16:07:082900 ],
Haiyang Pan505fcd5a2021-12-13 19:46:232901 'modifications': {
Haiyang Pan2a55a452022-03-03 08:18:332902 'android-12-x64-rel': {
Haiyang Pan505fcd5a2021-12-13 19:46:232903 'args': [
2904 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.gl_unittests.filter',
2905 ],
2906 },
2907 },
Takuto Ikutaf5333252019-11-06 16:07:082908 },
2909 'gl_unittests_ozone': {
2910 'remove_from': [
2911 # Can't run on MSAN because gl_unittests_ozone uses the hardware driver,
2912 # which isn't instrumented.
2913 'Linux ChromiumOS MSan Tests',
2914 ],
2915 },
Brian Sheedy0bf7f822022-07-21 17:44:432916 'gold_common_pytype': {
2917 'remove_from': [
2918 'linux-code-coverage',
2919 ],
2920 },
Takuto Ikutaf5333252019-11-06 16:07:082921 'gpu_process_launch_tests': {
Takuto Ikutaf5333252019-11-06 16:07:082922 'remove_from': [
Kramer Ge3bf853a2023-04-13 19:39:472923 # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2)
2924 # exception once there is enough capacity to run these tests.
Takuto Ikutaf5333252019-11-06 16:07:082925 'Android FYI Release (Pixel 2)',
Kenneth Russell7e6ae8372023-06-29 02:36:382926 # crbug.com/1458020 for Mac Retina ASAN removal
2927 'Mac FYI Retina ASAN (AMD)',
Takuto Ikutaf5333252019-11-06 16:07:082928 ],
2929 },
Brian Sheedy053d88cf2022-05-24 23:40:052930 'gpu_pytype': {
2931 'remove_from': [
2932 'linux-code-coverage',
2933 ],
2934 },
Chong Gu76046412021-09-22 17:49:212935 'gpu_unittests': {
Chong Gudf7fbe92021-02-24 02:55:582936 'modifications': {
2937 'fuchsia-code-coverage': {
2938 'swarming': {
2939 'shards': 5,
2940 },
2941 },
2942 },
2943 },
Kevin McNeed21a6c522021-06-14 21:27:252944 'grit_python_unittests': {
2945 'remove_from': [
Titouan Rigoudy9e860832021-11-08 15:34:452946 # TODO(https://crbug.com/1267125): Re-enable.
2947 'mac11-arm64-rel-tests',
Zhaoyang Li5d3713d2022-06-13 18:01:172948 # TODO(https://crbug.com/1267125): Re-enable.
2949 'mac12-arm64-rel-tests',
Will Yeagera090e6a2023-06-09 14:59:412950 # TODO(https://crbug.com/1267125): Re-enable.
2951 'mac13-arm64-rel-tests',
Kevin McNeed21a6c522021-06-14 21:27:252952 ],
2953 },
Brian Sheedye285c9b2019-07-15 21:42:462954 'hardware_accelerated_feature_tests': {
Brian Sheedye285c9b2019-07-15 21:42:462955 'remove_from': [
Kramer Ge3bf853a2023-04-13 19:39:472956 # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2)
2957 # exception once there is enough capacity to run these tests.
Brian Sheedye285c9b2019-07-15 21:42:462958 'Android FYI Release (Pixel 2)',
Kenneth Russell7e6ae8372023-06-29 02:36:382959 # crbug.com/1458020 for Mac Retina ASAN removal
2960 'Mac FYI Retina ASAN (AMD)',
Brian Sheedye285c9b2019-07-15 21:42:462961 ],
2962 },
Brad Halla36886c2019-02-26 16:52:292963 'headless_browsertests': {
Chong Gud08d1232021-09-11 08:53:592964 'remove_from': [
2965 'CrWinAsan(dll)', # https://crbug.com/935598
Maksim Sisovc81d284c2021-10-05 17:54:352966 # Wayland bot doesn't support headless mode.
2967 'Linux Tests (Wayland)',
Chong Gud08d1232021-09-11 08:53:592968 ],
Chong Gud1a5c5992021-04-09 04:08:322969 'modifications': {
2970 'fuchsia-code-coverage': {
2971 'swarming': {
Chong Gu115ce152021-04-15 23:57:162972 'shards': 6,
Chong Gud1a5c5992021-04-09 04:08:322973 },
2974 },
2975 },
Brad Halla36886c2019-02-26 16:52:292976 },
Kenneth Russell8a386d42018-06-02 09:48:012977 'info_collection_tests': {
2978 'remove_from': [
Kenneth Russell8a386d42018-06-02 09:48:012979 'Android V8 FYI Release (Nexus 5X)',
2980 'Linux V8 FYI Release (NVIDIA)',
Michael Achenbach5fdfc67b2018-12-13 13:26:352981 'Linux V8 FYI Release - pointer compression (NVIDIA)',
Kenneth Russell7e6ae8372023-06-29 02:36:382982 # crbug.com/1458020 for Mac Retina ASAN removal
2983 'Mac FYI Retina ASAN (AMD)',
Kenneth Russell8a386d42018-06-02 09:48:012984 'Mac V8 FYI Release (Intel)',
2985 'Win V8 FYI Release (NVIDIA)',
2986 ],
Brian Sheedyfe61cdac2020-02-12 01:25:592987 'modifications': {
Brian Sheedyb18cb762020-06-30 00:09:292988 'ChromeOS FYI Release (amd64-generic)': {
Brian Sheedy65be3052020-06-26 19:26:512989 'args': [
Brian Sheedyb18cb762020-06-30 00:09:292990 # Swarming does not report a GPU since tests are run in a VM, but
2991 # the VM does report that a GPU is present.
Brian Sheedy0b46d6b2023-11-27 21:33:022992 '--expected-vendor-id', '1af4',
Brian Sheedyb18cb762020-06-30 00:09:292993 '--expected-device-id', '1050',
Brian Sheedydf2672f2020-05-07 20:44:362994 ],
2995 },
Brian Sheedyfe61cdac2020-02-12 01:25:592996 },
Brian Sheedy32eeeb52020-05-22 01:49:372997 'replacements': {
2998 'ChromeOS FYI Release (amd64-generic)': {
2999 'args': {
Brian Sheedyb18cb762020-06-30 00:09:293000 # Magic substitution happens after regular replacement, so remove it
3001 # now since we are manually applying the expected device ID above.
Brian Sheedy0b46d6b2023-11-27 21:33:023002 '$$MAGIC_SUBSTITUTION_GPUExpectedVendorId': None,
Brian Sheedyb18cb762020-06-30 00:09:293003 '$$MAGIC_SUBSTITUTION_GPUExpectedDeviceId': None,
Brian Sheedy32eeeb52020-05-22 01:49:373004 },
Brian Sheedyff6d1442020-09-19 00:46:313005 },
Brian Sheedy32eeeb52020-05-22 01:49:373006 },
Kenneth Russell8a386d42018-06-02 09:48:013007 },
Kenneth Russelleb60cbd22017-12-05 07:54:283008 'interactive_ui_tests': {
Brad Halla36886c2019-02-26 16:52:293009 'remove_from': [
Brad Halla36886c2019-02-26 16:52:293010 'CrWinAsan(dll)', # https://crbug.com/935598
3011 ],
Kenneth Russelleb60cbd22017-12-05 07:54:283012 'modifications': {
Stephen Martinis1384ff92020-01-07 19:52:153013 'Linux - Future (dbg)': { # client.v8.chromium
Nico Weberdae13cd92018-12-14 13:56:263014 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:153015 'shards': 3,
Nico Weberdae13cd92018-12-14 13:56:263016 },
3017 },
John Budorickca14c76f62017-12-09 14:19:183018 'Linux ASan LSan Tests (1)': {
Stephanie Kim35e0f8d2023-09-12 19:02:283019 # Only retry the individual failed tests instead of rerunning entire
3020 # shards.
3021 'retry_only_failed_tests': True,
Ben Pastened2c01af2022-01-31 23:06:443022 # These are slow on the ASan trybot for some reason, crbug.com/1257927
Nico Weber96a75a6942018-06-20 04:53:173023 'swarming': {
Stephanie Kim75e95f62022-11-04 16:06:133024 'shards': 12,
Nico Weber96a75a6942018-06-20 04:53:173025 },
3026 },
Pavol Marko05b6bb92022-03-21 12:33:293027 'Linux Chromium OS ASan LSan Tests (1)': {
3028 # These are slow on the ASan trybot for some reason, crbug.com/1257927
3029 'swarming': {
3030 'shards': 6,
Pavol Marko05b6bb92022-03-21 12:33:293031 },
3032 },
Takuto Ikuta54671d972018-07-19 19:06:353033 'Linux ChromiumOS MSan Tests': {
3034 # These are very slow on the Chrome OS MSAN trybot for some reason.
3035 # crbug.com/865455
3036 'swarming': {
3037 'shards': 5,
3038 },
3039 },
Ben Pastene5bc00332023-05-25 21:43:323040 'Linux MSan Tests': {
3041 'swarming': {
Ben Pasteneab6a95732023-11-29 22:35:533042 'shards': 8,
Ben Pastene5bc00332023-05-25 21:43:323043 },
3044 },
Stephen Martinis1384ff92020-01-07 19:52:153045 'Linux TSan Tests': {
Gary Tong46fdc492023-11-01 16:25:013046 'ci_only': True, # https://crbug.com/1498240
Stephanie Kim35e0f8d2023-09-12 19:02:283047 # Only retry the individual failed tests instead of rerunning entire
3048 # shards.
3049 'retry_only_failed_tests': True,
Ben Pastened2c01af2022-01-31 23:06:443050 # These are slow on the TSan bots for some reason, crbug.com/1257927
Dirk Pranke8fd63c12017-12-10 18:06:273051 'swarming': {
Stephen Martinisad6cb7af2021-02-24 01:12:003052 'shards': 32, # Adjusted for testing, see https://crbug.com/1179567
Dirk Pranke8fd63c12017-12-10 18:06:273053 },
3054 },
Maksim Sisovc81d284c2021-10-05 17:54:353055 # https://crbug.com/1192997
3056 'Linux Tests (Wayland)': {
3057 'args': [
3058 '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.interactive_ui_tests_wayland.filter',
3059 ],
3060 },
Joshua Pawlicki345e9922023-06-30 21:19:053061 'Linux Tests (dbg)(1)': {
3062 'swarming': {
3063 'shards': 5,
3064 },
3065 },
Lindsay Pasrichab3f72db2021-09-22 22:05:463066 'Mac ASan 64 Tests (1)': { # https://crbug.com/1251656
3067 'experiment_percentage': 100,
3068 },
Yue She0cad2922022-06-24 15:06:073069 'Mac12 Tests': {
3070 'swarming': {
Stephanie Kim28fc5902022-11-11 14:54:423071 'shards': 6,
Yue She0cad2922022-06-24 15:06:073072 },
3073 },
Yue Shed8e45742023-06-01 15:18:033074 'Mac13 Tests': {
3075 'swarming': {
3076 'shards': 6,
3077 },
3078 },
Cameron Higgins2e4b7f12023-05-31 18:29:323079 'Mac13 Tests (dbg)': { # https://crbug.com/1265051
Zhaoyang Li9357e1e12021-12-07 18:53:173080 'experiment_percentage': 100,
Cameron Higginsfe09c132023-04-20 21:53:133081 'swarming': {
3082 'shards':6,
3083 }
Zhaoyang Li9357e1e12021-12-07 18:53:173084 },
Stephen Martinis1384ff92020-01-07 19:52:153085 'ToTLinuxTSan': {
Ben Pastened2c01af2022-01-31 23:06:443086 # These are slow on the TSan bots for some reason, crbug.com/1257927
Stephen Martinis1384ff92020-01-07 19:52:153087 'swarming': {
3088 'shards': 6,
3089 },
3090 },
Struan Shrimptona1ab7672022-01-13 18:02:513091 'Win10 Tests x64': {
3092 'swarming': {
Stephanie Kima57b46a2022-10-27 22:09:033093 'shards': 9,
Struan Shrimptona1ab7672022-01-13 18:02:513094 },
3095 },
Stephen Martinis1384ff92020-01-07 19:52:153096 # temporary, https://crbug.com/818832
Greg Thompson3eb7e6522018-05-25 09:04:033097 'Win10 Tests x64 (dbg)': {
3098 'experiment_percentage': 100,
3099 },
Jacob Kopczynski3a555bd32020-12-10 01:41:163100 # TODO(crbug.com/970649): Remove these filters.
Ben Pastene8ef125e2019-12-10 01:46:293101 'linux-chromeos-chrome': {
Ben Pastene8ef125e2019-12-10 01:46:293102 'args': [
3103 '--gtest_filter=-SadTabViewInteractiveUITest.ReloadMultipleSadTabs',
3104 ],
3105 },
Stephen Martinis1384ff92020-01-07 19:52:153106 'linux-chromeos-code-coverage': {
Yuke Liao79424e42020-01-06 21:00:113107 'swarming': {
3108 'shards': 10,
3109 },
3110 },
Pavol Marko582a15d2022-04-01 12:47:203111 'linux-chromeos-dbg': {
3112 'swarming': {
3113 'shards': 6,
3114 },
3115 },
Stephanie Kim3aa4c552023-01-10 18:00:043116 'linux-chromeos-rel': {
Stephanie Kim35e0f8d2023-09-12 19:02:283117 # Only retry the individual failed tests instead of rerunning entire
3118 # shards.
3119 'retry_only_failed_tests': True,
Stephanie Kim3aa4c552023-01-10 18:00:043120 'swarming': {
3121 'shards': 5,
3122 },
3123 },
Stephen Martinis1384ff92020-01-07 19:52:153124 'linux-code-coverage': {
Yuke Liao79424e42020-01-06 21:00:113125 'swarming': {
3126 'shards': 10,
3127 },
3128 },
Ian Struiksmab0412a22023-06-06 23:02:483129 'linux-exp-msan-fyi-rel': {
3130 'swarming': {
3131 'shards': 4,
3132 },
3133 },
Ian Struiksma2e23f962023-05-26 22:37:203134 'linux-exp-tsan-fyi-rel': {
3135 # These are slow on the TSan bots for some reason, crbug.com/1257927
3136 'swarming': {
3137 'shards': 32, # Adjusted for testing, see https://crbug.com/1179567
3138 },
3139 },
Sven Zheng6a910cd2023-07-20 18:52:253140 'linux-lacros-asan-lsan-rel': {
3141 'swarming': {
3142 'shards': 5,
3143 },
3144 },
Stephanie Kim35e0f8d2023-09-12 19:02:283145 'linux-lacros-tester-rel': {
3146 # Only retry the individual failed tests instead of rerunning entire
3147 # shards.
3148 'retry_only_failed_tests': True,
3149 },
Thiago Perrottad12c7872023-01-12 17:30:563150 'linux-rel-cft': {
3151 'args': [
3152 '--test-launcher-filter-file=../../testing/buildbot/filters/linux.linux-rel-cft.interactive_ui_tests.filter',
3153 ],
3154 },
Ian Struiksma448f4132023-10-11 16:21:173155 'linux-ubsan-fyi-rel': {
3156 'swarming': {
3157 'shards': 6,
3158 }
3159 },
Kuan Huang235b0142021-10-19 18:59:283160 'mac-code-coverage': {
3161 'args': [
3162 '--coverage-continuous-mode=1',
3163 ],
3164 },
Lindsay Pasricha60535a22021-12-13 16:50:243165 # TODO (crbug.com/1278617) Re-enable once fixed
3166 'mac-osxbeta-rel': {
3167 'experiment_percentage': 100,
3168 },
Thiago Perrottad12c7872023-01-12 17:30:563169 'mac-rel-cft': {
3170 'args': [
3171 '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac-rel-cft.interactive_ui_tests.filter',
3172 ],
Thiago Perrottaa289bad2023-01-20 12:44:393173 'swarming': {
3174 'shards': 6,
Thiago Perrottaa289bad2023-01-20 12:44:393175 },
Thiago Perrottad12c7872023-01-12 17:30:563176 },
Will Yeager86db5082023-06-14 21:50:113177 'mac13-arm64-rel-tests': {
3178 'ci_only': False,
3179 'swarming': {
3180 'shards': 6,
3181 },
3182 },
David Bienvenu519e14802023-05-02 23:34:493183 'win-arm64-rel': {
3184 # Surface Pros have touch turned on by default, which makes some interactive-ui-tests fail.
3185 'args': [
3186 '--top-chrome-touch-ui=disabled',
3187 ],
3188 },
Kuan Huang1b52d442023-02-07 20:35:343189 'win-asan': {
3190 # Tests shows tests run faster with fewer retries by using fewer jobs crbug.com/1411912
3191 'args': [
3192 '--test-launcher-jobs=3',
3193 ],
3194 'swarming': {
3195 'shards': 6,
3196 },
3197 },
Thiago Perrottad12c7872023-01-12 17:30:563198 'win-rel-cft': {
3199 'args': [
3200 '--test-launcher-filter-file=../../testing/buildbot/filters/win.win-rel-cft.interactive_ui_tests.filter',
3201 ],
Thiago Perrotta314f7b02023-01-19 21:30:533202 'swarming': {
3203 'shards': 9,
3204 },
Thiago Perrottad12c7872023-01-12 17:30:563205 },
Prakhar0ca1594c2023-05-01 19:51:023206 'win10-code-coverage': {
3207 'swarming': {
3208 'shards': 32,
Prakharf7efc5a82023-09-27 12:24:103209 'dimensions': {
3210 'pool': 'chromium.tests.coverage',
3211 'ssd': '1',
3212 },
3213 }
Prakhar0ca1594c2023-05-01 19:51:023214 },
Kenneth Russelleb60cbd22017-12-05 07:54:283215 },
3216 },
Sven Zheng6a910cd2023-07-20 18:52:253217 'interactive_ui_tests Lacros version skew testing ash beta': {
3218 'modifications': {
3219 'linux-lacros-asan-lsan-rel': {
3220 'swarming': {
3221 'shards': 5,
3222 },
3223 },
3224 },
3225 },
3226 'interactive_ui_tests Lacros version skew testing ash canary': {
3227 'modifications': {
3228 'linux-lacros-asan-lsan-rel': {
3229 'swarming': {
3230 'shards': 5,
3231 },
3232 },
3233 },
3234 },
3235 'interactive_ui_tests Lacros version skew testing ash dev': {
3236 'modifications': {
3237 'linux-lacros-asan-lsan-rel': {
3238 'swarming': {
3239 'shards': 5,
3240 },
3241 },
3242 },
3243 },
3244 'interactive_ui_tests Lacros version skew testing ash stable': {
3245 'modifications': {
3246 'linux-lacros-asan-lsan-rel': {
3247 'swarming': {
3248 'shards': 5,
3249 },
3250 },
3251 },
3252 },
Hao Wubfdb23562023-06-17 20:16:513253 'interactive_ui_tests_no_field_trial': {
3254 'remove_from': [
3255 'win10-rel-no-external-ip',
3256 'win-arm64-rel',
3257 'win-rel-cft',
3258 'Win11 Tests x64',
3259 ],
3260 },
John Budorickf00e5ff2019-06-11 21:21:063261 'ipc_tests': {
3262 'modifications': {
3263 'android-asan': {
3264 'swarming': {
3265 'shards': 2,
3266 },
3267 },
3268 },
3269 },
Sven Zheng2d8c10212023-10-18 00:13:073270 'lacros_chrome_browsertests': {
Sven Zheng1d2a04c2023-05-31 17:05:063271 'modifications': {
3272 'linux-lacros-asan-lsan-rel': {
3273 'swarming': {
3274 'shards': 5,
3275 },
3276 },
3277 },
3278 },
Sven Zheng2d8c10212023-10-18 00:13:073279 'lacros_chrome_browsertests Lacros version skew testing ash beta': {
Sven Zheng6a910cd2023-07-20 18:52:253280 'modifications': {
3281 'linux-lacros-asan-lsan-rel': {
3282 'swarming': {
3283 'shards': 5,
3284 },
3285 },
3286 },
3287 },
Sven Zheng2d8c10212023-10-18 00:13:073288 'lacros_chrome_browsertests Lacros version skew testing ash canary': {
Sven Zheng6a910cd2023-07-20 18:52:253289 'modifications': {
3290 'linux-lacros-asan-lsan-rel': {
3291 'swarming': {
3292 'shards': 5,
3293 },
3294 },
3295 },
3296 },
Sven Zheng2d8c10212023-10-18 00:13:073297 'lacros_chrome_browsertests Lacros version skew testing ash dev': {
Sven Zheng6a910cd2023-07-20 18:52:253298 'modifications': {
3299 'linux-lacros-asan-lsan-rel': {
3300 'swarming': {
3301 'shards': 5,
3302 },
3303 },
3304 },
3305 },
Sven Zheng2d8c10212023-10-18 00:13:073306 'lacros_chrome_browsertests Lacros version skew testing ash stable': {
Sven Zheng6a910cd2023-07-20 18:52:253307 'modifications': {
3308 'linux-lacros-asan-lsan-rel': {
3309 'swarming': {
3310 'shards': 5,
3311 },
3312 },
3313 },
3314 },
Reilly Grant0fc352502023-04-24 17:25:283315 'leveldb_unittests': {
3316 'remove_from': [
3317 # TODO(https://crbug.com/1432753): Runs too slowly in this configuration.
Haiyang Panb41ca5f2023-07-10 23:11:313318 'android-oreo-x86-rel',
Reilly Grant0fc352502023-04-24 17:25:283319 ],
3320 },
Dirk Pranke8d2a9f52022-12-08 20:25:423321 'mac_signing_tests': {
3322 'remove_from': [
3323 # This is intentional and explained in the waterfalls.pyl comment for
3324 # this builder.
3325 'mac-rel-cft',
3326 ],
3327 },
Sangbaek Parkdecd8df2023-05-15 21:54:333328 'media_foundation_browser_tests': {
3329 'remove_from': [
3330 # TODO(crbug.com/1445173): Enable Media Foundation browser tests on NVIDIA
3331 # gpu bots once the Windows OS supports HW secure decryption.
3332 'Win10 FYI x64 Debug (NVIDIA)',
3333 'Win10 FYI x64 Release (AMD RX 5500 XT)',
3334 'Win10 FYI x64 Release (NVIDIA)',
3335 'Win10 FYI x86 Release (NVIDIA)',
3336 ],
3337 },
Andrew Luo38b311f2019-10-04 03:42:093338 'media_unittests': {
3339 'modifications': {
Haiyang Pan9d68ca02021-08-04 21:30:473340 'android-11-x86-rel': {
Haiyang Pancf765862021-03-18 20:39:153341 'args': [
Haiyang Pan9c91cd42023-02-08 23:19:593342 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.media_unittests.filter',
Haiyang Pan80b0d412021-11-23 00:06:423343 ],
3344 },
Haiyang Pan2a55a452022-03-03 08:18:333345 'android-12-x64-rel': {
Haiyang Pan80b0d412021-11-23 00:06:423346 'args': [
Haiyang Pan9c91cd42023-02-08 23:19:593347 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.media_unittests.filter',
3348 ],
3349 },
3350 'android-12l-x64-dbg-tests': {
3351 'args': [
3352 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.media_unittests.filter',
3353 ],
3354 },
Haiyang Panef317e4372023-05-19 01:30:083355 'android-12l-x64-fyi-dbg': {
3356 'args': [
3357 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.media_unittests.filter',
3358 ],
3359 },
3360 'android-13-x64-fyi-rel': {
3361 'args': [
3362 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.media_unittests.filter',
3363 ],
3364 },
Haiyang Pan9c91cd42023-02-08 23:19:593365 'android-13-x64-rel': {
3366 'args': [
3367 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.media_unittests.filter',
Haiyang Pancf765862021-03-18 20:39:153368 ],
3369 },
Andrew Luo38b311f2019-10-04 03:42:093370 'android-pie-arm64-rel': {
Andrew Luobe83fd82019-12-19 03:07:583371 'args': [
3372 '--gtest_filter=-AAudio/AudioOutputTest.Play200HzTone/0', # https://crbug.com/1034009
3373 ],
Andrew Luo38b311f2019-10-04 03:42:093374 },
Chong Gudf7fbe92021-02-24 02:55:583375 'fuchsia-code-coverage': {
3376 'swarming': {
3377 'shards': 3,
3378 },
3379 },
Chong Gub2446462021-08-19 18:44:083380 'fuchsia-fyi-arm64-dbg': {
3381 'args': [
3382 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.debug.media_unittests.filter',
3383 ],
3384 },
Andrew Luo38b311f2019-10-04 03:42:093385 },
3386 },
Kenneth Russell7e6ae8372023-06-29 02:36:383387 'mediapipe_passthrough_tests': {
3388 'remove_from': [
3389 # crbug.com/1458020 for Mac Retina ASAN removal
3390 'Mac FYI Retina ASAN (AMD)',
3391 ],
3392 },
Chong Gu4eca1ce2021-05-17 08:49:573393 'mediapipe_validating_tests': {
3394 'remove_from': [
David Dorwin06fae772022-10-07 16:34:423395 # TODO(crbug.com/1372213): Remove these once tests are stable.
David Dorwin49b2ddb2022-09-08 20:49:433396 'fuchsia-x64-cast-receiver-rel',
3397 'fuchsia-x64-rel',
Chong Gu4eca1ce2021-05-17 08:49:573398 ],
3399 },
Marco Georgaklis98b192972023-11-23 01:23:123400 'model_validation_tests MODEL_VALIDATION_BASE': {
3401 'modifications': {
3402 'optimization_guide-win32': {
3403 'args': [
3404 '--target-platform=win32',
3405 ],
3406 },
3407 },
3408 },
Ben Joyce02dc8092021-03-04 21:48:193409 'mojo_test_apk': {
3410 'remove_from': [
3411 'android-code-coverage-native', # Does not generate profraw data.
3412 ],
3413 },
John Budorickf00e5ff2019-06-11 21:21:063414 'mojo_unittests': {
3415 'modifications': {
3416 'android-asan': {
3417 'swarming': {
John Budorick5a29d7542019-10-11 20:56:443418 'shards': 5,
John Budorickf00e5ff2019-06-11 21:21:063419 },
3420 },
Chong Gudf7fbe92021-02-24 02:55:583421 'fuchsia-code-coverage': {
3422 'swarming': {
3423 'shards': 2,
3424 },
3425 },
John Budorickf00e5ff2019-06-11 21:21:063426 },
3427 },
Kenneth Russellfbda3c532017-12-08 23:57:243428 'nacl_loader_unittests': {
K. Moon902a4b582023-06-16 19:00:343429 # If you change this, make similar changes in ppapi_unittests
Kenneth Russellfbda3c532017-12-08 23:57:243430 'remove_from': [
Nico Weber48f187142018-06-01 15:16:353431 'ToTMacASan', # The mac asan tot bot sets enable_nacl=false
Nico Weber3611ee802018-06-07 13:34:513432 'linux-win_cross-rel', # Sets enable_nacl=false, https://crbug.com/774186
Nico Webera8fc38f72018-04-10 02:20:113433 'Linux TSan Tests', # The TSan bot sets enable_nacl=false
Ian Struiksma2e23f962023-05-26 22:37:203434 'linux-exp-tsan-fyi-rel', # The TSan bot sets enable_nacl=false
Nico Weber05d3e642018-05-31 16:59:483435 'Mac ASan 64 Tests (1)', # The mac asan bot sets enable_nacl=false
Kuan Huang66423fe2023-03-17 23:10:053436 'win-arm64-rel', # Not available on arm64.
Randolf Jung444efaa2023-06-28 16:34:113437 'linux-arm64-rel-cft', # Not available on arm64.
Kenneth Russellfbda3c532017-12-08 23:57:243438 ],
3439 },
Kenneth Russelleb60cbd22017-12-05 07:54:283440 'net_unittests': {
3441 'modifications': {
Nico Weber33b9b7a2020-06-12 19:23:273442 'CrWinAsan': {
Ben Pastened2c01af2022-01-31 23:06:443443 # TODO(crbug.com/1257927): net_unittests is slow under ASan.
Nico Weber33b9b7a2020-06-12 19:23:273444 'swarming': {
3445 'shards': 16,
3446 },
3447 },
3448 'CrWinAsan(dll)': {
Ben Pastened2c01af2022-01-31 23:06:443449 # TODO(crbug.com/1257927): net_unittests is slow under ASan.
Nico Weber33b9b7a2020-06-12 19:23:273450 'swarming': {
3451 'shards': 16,
3452 },
3453 },
John Budorickca14c76f62017-12-09 14:19:183454 'Linux ASan LSan Tests (1)': {
John Budorick5052d552017-12-13 02:59:343455 # These are very slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:443456 # crbug.com/1257927
John Budorickca14c76f62017-12-09 14:19:183457 'swarming': {
John Budorick5052d552017-12-13 02:59:343458 'shards': 16,
John Budorickca14c76f62017-12-09 14:19:183459 },
3460 },
3461 'Linux Chromium OS ASan LSan Tests (1)': {
Takuto Ikuta54671d972018-07-19 19:06:353462 # These are very slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:443463 # crbug.com/1257927
John Budorickca14c76f62017-12-09 14:19:183464 'swarming': {
Sergey Berezinda3255c2018-03-16 00:34:023465 'shards': 8,
John Budorickca14c76f62017-12-09 14:19:183466 }
3467 },
Takuto Ikuta54671d972018-07-19 19:06:353468 'Linux ChromiumOS MSan Tests': {
3469 # These are very slow on the Chrome OS MSAN trybot for some reason.
3470 # crbug.com/865455
3471 'swarming': {
3472 'shards': 2,
3473 },
3474 },
John Budorickca14c76f62017-12-09 14:19:183475 'Linux TSan Tests': {
3476 'swarming': {
3477 'shards': 4,
3478 }
3479 },
Ben Pastene8bf205b2018-06-13 04:00:333480 # The suite runs signficantly slower on linux dbg, so increase shards.
3481 'Linux Tests (dbg)(1)': {
3482 'swarming': {
3483 'shards': 2,
3484 },
3485 },
Stephen Martinis1384ff92020-01-07 19:52:153486 'ToTLinuxASan': {
Ben Pastened2c01af2022-01-31 23:06:443487 # TODO(crbug.com/1257927): net_unittests is slow under ASan.
Stephen Martinis1384ff92020-01-07 19:52:153488 'swarming': {
3489 'shards': 16,
3490 },
3491 },
3492 'ToTLinuxTSan': {
3493 'swarming': {
3494 'shards': 4,
3495 }
3496 },
Stefano Duof44278b2021-08-02 16:29:383497 'android-cronet-x86-dbg-10-tests': {
3498 'args': [
3499 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_10.net_unittests.filter',
3500 ],
3501 },
Chidera Olibie262e33e2022-03-02 11:45:283502 'android-cronet-x86-dbg-lollipop-tests': {
3503 'args': [
3504 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_l.net_unittests.filter',
3505 ],
3506 },
Chidera Olibieef99a55ca2021-10-01 21:42:003507 'android-cronet-x86-dbg-oreo-tests': {
3508 'args': [
3509 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.net_unittests.filter',
3510 ],
3511 },
Chidera Olibie509fd732021-09-30 20:17:173512 'android-cronet-x86-dbg-pie-tests': {
3513 # crbug.com/1046060
3514 'args': [
3515 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.net_unittests.filter',
3516 ],
3517 },
Haiyang Pan08d09dc2020-04-01 16:11:213518 'android-pie-x86-rel': {
John Budorick7fde6b492020-01-29 17:43:503519 # crbug.com/1046060
3520 'args': [
3521 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.net_unittests.filter',
3522 ],
3523 },
Chong Gu76046412021-09-22 17:49:213524 'fuchsia-code-coverage': {
3525 'swarming': {
3526 'shards': 14,
3527 },
3528 },
Ben Pastene8bf205b2018-06-13 04:00:333529 'linux-chromeos-dbg': {
3530 'swarming': {
3531 'shards': 2,
3532 },
3533 },
Ian Struiksma2e23f962023-05-26 22:37:203534 'linux-exp-tsan-fyi-rel': {
3535 'swarming': {
3536 'shards': 4,
3537 }
3538 },
Nico Weber33b9b7a2020-06-12 19:23:273539 'win-asan': {
Ben Pastened2c01af2022-01-31 23:06:443540 # TODO(crbug.com/1257927): net_unittests is slow under ASan.
Nico Weber33b9b7a2020-06-12 19:23:273541 'swarming': {
3542 'shards': 16,
3543 },
3544 },
Kenneth Russelleb60cbd22017-12-05 07:54:283545 },
3546 },
John Chenaab16fc02020-03-03 06:35:453547 'not_site_per_process_blink_web_tests': {
Lukasz Anforowicz04bc6302018-11-19 19:04:283548 'remove_from': [
Lukasz Anforowicz04bc6302018-11-19 19:04:283549 # TODO(dpranke): Should we be running this step on Linux Tests (dbg)(1)?
3550 'Linux Tests (dbg)(1)',
Lukasz Anforowicz04bc6302018-11-19 19:04:283551 ],
Yuke Liaobc9ff982019-04-30 06:56:163552 'modifications': {
Stephen Martinis1384ff92020-01-07 19:52:153553 'Linux Tests': {
3554 "args": [
3555 "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw",
Stephen Martinis1384ff92020-01-07 19:52:153556 ],
3557 },
Yuke Liaoea70f472019-12-19 06:03:363558 'linux-code-coverage': {
3559 'args': [
Prakharbe44338a2023-05-24 19:02:043560 '--additional-driver-flag=--no-sandbox',
Prakhar647debb2023-08-31 23:01:413561 '--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw',
Yuke Liaoea70f472019-12-19 06:03:363562 ],
3563 'swarming': {
3564 'shards': 20,
3565 },
3566 },
Thiago Perrotta61487462023-01-20 12:52:323567 'linux-rel-cft': {
3568 "args": [
Michael Lippautz8f4016b2023-06-13 16:18:333569 '--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw',
3570 '--flag-specific=chrome-for-testing',
Thiago Perrotta61487462023-01-20 12:52:323571 ],
Thiago Perrotta61487462023-01-20 12:52:323572 },
Yuke Liaobc9ff982019-04-30 06:56:163573 },
Lukasz Anforowicz04bc6302018-11-19 19:04:283574 },
Xi Cheng34ca4042018-02-23 00:10:123575 'notification_helper_unittests': {
3576 'remove_from': [
Stephen Martinis1384ff92020-01-07 19:52:153577 # all these bots run Windows 7.
Xi Cheng34ca4042018-02-23 00:10:123578 'ToTWin',
3579 'ToTWin(dbg)',
3580 'ToTWin(dll)',
inglorionb8e7a3ed2019-04-12 09:49:033581 'ToTWinOfficial',
Arthur Eubanks0c24b822021-06-15 18:51:343582 'ToTWinOfficial64',
Xi Cheng34ca4042018-02-23 00:10:123583 'ToTWin64',
3584 'ToTWin64(dbg)',
3585 'ToTWin64(dll)',
Xi Cheng34ca4042018-02-23 00:10:123586 ],
3587 },
Ben Pastenee723b2f2019-05-31 19:10:273588 'ozone_unittests': {
3589 'modifications': {
Ben Pastene8ef125e2019-12-10 01:46:293590 'chromeos-betty-pi-arc-chrome': {
3591 'args': [
3592 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter',
3593 ],
3594 },
Ben Pastene500cc1d12021-01-22 18:10:473595 'chromeos-betty-pi-arc-chrome-dchecks': {
3596 'args': [
3597 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter',
3598 ],
3599 },
Ben Pastene8ef125e2019-12-10 01:46:293600 'linux-chromeos-chrome': {
3601 'args': [
3602 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter',
3603 ],
3604 },
Ben Pastenee723b2f2019-05-31 19:10:273605 },
3606 },
Maksim Sisovc81d284c2021-10-05 17:54:353607 'ozone_x11_unittests': {
3608 # Wayland bot uses chromium_linux_gtests that includes some x11 only
3609 # test targets. To avoid maintaining a list of tests, remove them here.
3610 'remove_from': [
3611 'Linux Tests (Wayland)',
3612 ],
3613 },
Karen Qian385d2ca2019-03-19 21:49:583614 'perfetto_unittests': {
Haiyang Pan0e27adbeb2021-12-14 22:44:303615 'modifications': {
Haiyang Pan2a55a452022-03-03 08:18:333616 'android-12-x64-rel': {
Haiyang Pan0e27adbeb2021-12-14 22:44:303617 'args': [
3618 # TODO(crbug.com/1260440): Fix the failed test
3619 '--gtest_filter=-ScopedDirTest.CloseOutOfScope',
3620 ],
3621 },
Haiyang Pan32338b72023-02-08 23:48:583622 'android-12l-x64-dbg-tests': {
3623 'args': [
3624 # TODO(crbug.com/1260440): Fix the failed test
3625 '--gtest_filter=-ScopedDirTest.CloseOutOfScope',
3626 ],
3627 },
Haiyang Panef317e4372023-05-19 01:30:083628 'android-12l-x64-fyi-dbg': {
3629 'args': [
3630 # TODO(crbug.com/1260440): Fix the failed test
3631 '--gtest_filter=-ScopedDirTest.CloseOutOfScope',
3632 ],
3633 },
3634 'android-13-x64-fyi-rel': {
3635 'args': [
3636 # TODO(crbug.com/1260440): Fix the failed test
3637 '--gtest_filter=-ScopedDirTest.CloseOutOfScope',
3638 ],
3639 },
Haiyang Pan32338b72023-02-08 23:48:583640 'android-13-x64-rel': {
3641 'args': [
3642 # TODO(crbug.com/1260440): Fix the failed test
3643 '--gtest_filter=-ScopedDirTest.CloseOutOfScope',
3644 ],
3645 },
Prakharc60ec802023-03-06 07:49:293646 # If you change this, make similar changes in android-x86-code-coverage below
James Shen7befaa32023-07-14 23:29:343647 'android-oreo-x86-rel': {
3648 'args': [
3649 # TODO(crbug.com/1260440): Fix the failed test
3650 '--gtest_filter=-ScopedDirTest.CloseOutOfScope',
3651 ],
3652 },
Haiyang Pan2c4c5e922023-10-09 22:57:313653 # Keep this same as android-oreo-x86-rel above
Prakharc60ec802023-03-06 07:49:293654 'android-x86-code-coverage': {
3655 'args': [
3656 # TODO(crbug.com/1260440): Fix the failed test
3657 '--gtest_filter=-ScopedDirTest.CloseOutOfScope',
3658 ],
3659 },
Chong Gua10cd302022-01-14 19:22:193660 'fuchsia-fyi-x64-asan': {
3661 'args': [
Kevin Marshall847bf0332022-05-31 20:12:543662 # TODO(crbug.com/1199334): Error messages only show up in klog.
3663 '--gtest_filter=-PagedMemoryTest.AccessUncommittedMemoryTriggersASAN'
Chong Gua10cd302022-01-14 19:22:193664 ],
3665 },
Haiyang Pan0e27adbeb2021-12-14 22:44:303666 },
Karen Qian385d2ca2019-03-19 21:49:583667 'remove_from': [
Haiyang Pan363c59a2020-07-23 05:47:043668 # TODO(crbug.com/931138): Fix permission issue when creating tmp files
John Budorickd3fa5992019-12-13 17:22:413669 'android-arm64-proguard-rel',
John Budorickf2283d72019-06-25 01:09:093670 'android-asan',
Yun Liu022f4512019-06-10 23:14:043671 'android-code-coverage',
Yun Liu7cfd28a2019-10-30 01:57:123672 'android-code-coverage-native',
Andrew Luo38b311f2019-10-04 03:42:093673 'android-pie-arm64-rel',
Haiyang Pan08d09dc2020-04-01 16:11:213674 'android-pie-x86-rel',
Haiyang Pan9d68ca02021-08-04 21:30:473675 'android-11-x86-rel',
Arthur Eubanksc8f86ee2021-05-10 20:14:243676 'ToTAndroid'
Karen Qian385d2ca2019-03-19 21:49:583677 ]
3678 },
Stephen Martinis54d64ad2018-09-21 22:16:203679 'performance_test_suite': {
3680 'modifications': {
Cameron Higgins2e4b7f12023-05-31 18:29:323681 'Mac13 Tests (dbg)': {
Zhaoyang Li9357e1e12021-12-07 18:53:173682 'args': [
3683 '--browser=debug',
3684 ],
3685 },
Stephen Martinis54d64ad2018-09-21 22:16:203686 'Win10 Tests x64 (dbg)': {
3687 'args': [
Takuto Ikutab28b582e2021-02-10 01:41:213688 '--browser=debug_x64',
Stephen Martinis54d64ad2018-09-21 22:16:203689 ],
3690 'experiment_percentage': 100,
3691 },
Stephen Martinis54d64ad2018-09-21 22:16:203692 },
3693 },
Sven Zheng00e75602022-11-16 18:01:383694 'pixel_browser_tests': {
3695 # This target should be removed from any CI only builders. Developers can
3696 # intentionally make UI changes. Without running pixel tests on CQ, those
3697 # cls will get wrongly reverted by sheriffs.
3698 # When we switch CQ builders(e.g. use Win11 to replace Win10), we also
3699 # need to update this field.
3700 'remove_from': [
3701 'Win11 Tests x64',
Thiago Perrotta8b9d127ab2023-01-19 18:08:443702 'win-rel-cft',
Sven Zheng00e75602022-11-16 18:01:383703 ],
3704 },
Yuly Novikov3ed87d1b2023-08-04 19:09:363705 'pixel_skia_gold_gl_passthrough_ganesh_test': {
Yuly Novikov8e05ea72023-07-31 17:10:343706 'replacements': {
3707 'Mac V8 FYI Release (Intel)': {
3708 'args': {
3709 '--git-revision': '${got_cr_revision}',
3710 },
3711 },
3712 },
3713 },
Yuly Novikov322b57f2023-08-21 23:25:093714 'pixel_skia_gold_metal_passthrough_ganesh_test': {
Yuly Novikov3ed87d1b2023-08-04 19:09:363715 'remove_from': [
Yuly Novikov322b57f2023-08-21 23:25:093716 # crbug.com/1458020 for Mac Retina ASAN removal
3717 'Mac FYI Retina ASAN (AMD)',
Yuly Novikov3ed87d1b2023-08-04 19:09:363718 ],
3719 'replacements': {
3720 'Mac V8 FYI Release (Intel)': {
3721 'args': {
3722 '--git-revision': '${got_cr_revision}',
3723 },
3724 },
3725 },
3726 },
Yuly Novikov322b57f2023-08-21 23:25:093727 'pixel_skia_gold_metal_passthrough_graphite_test': {
Yuly Novikov8e05ea72023-07-31 17:10:343728 'remove_from': [
3729 # crbug.com/1458020 for Mac Retina ASAN removal
3730 'Mac FYI Retina ASAN (AMD)',
3731 ],
3732 'replacements': {
3733 'Mac V8 FYI Release (Intel)': {
3734 'args': {
3735 '--git-revision': '${got_cr_revision}',
3736 },
3737 },
3738 },
3739 },
Jonah Ryan-Davis832c8462020-06-09 03:45:033740 'pixel_skia_gold_passthrough_test': {
Brian Sheedyc0c142c2021-06-01 21:18:053741 'modifications': {
3742 'Android FYI Release (Pixel 4)': {
3743 'args': [
3744 # Pixel 4s are weird in that they can output in different color spaces
3745 # simultaneously. The readback code for capturing a screenshot assumes
3746 # only one color space, so disable wide color gamut for the test to
3747 # work around the issue. See https://crbug.com/1166379 for more
3748 # information.
3749 '--extra-browser-args=--disable-wcg-for-test',
3750 ],
3751 },
Ben Pastene63f13302022-05-12 21:04:053752 'android_optional_gpu_tests_rel': {
3753 'args': [
3754 # See above.
3755 '--extra-browser-args=--disable-wcg-for-test',
3756 ],
3757 },
Brian Sheedyc0c142c2021-06-01 21:18:053758 },
Jonah Ryan-Davis832c8462020-06-09 03:45:033759 'replacements': {
3760 # The V8 builders pass the V8 revision for ${got_revision}, so instead
3761 # use ${got_cr_revision}, which is only set on the V8 bots.
3762 'Linux V8 FYI Release (NVIDIA)': {
3763 'args': {
3764 '--git-revision': '${got_cr_revision}',
3765 },
3766 },
3767 'Linux V8 FYI Release - pointer compression (NVIDIA)': {
3768 'args': {
3769 '--git-revision': '${got_cr_revision}',
3770 },
3771 },
3772 'Win V8 FYI Release (NVIDIA)': {
3773 'args': {
3774 '--git-revision': '${got_cr_revision}',
3775 },
3776 },
3777 },
3778 },
Brian Sheedy48c79732023-10-02 18:08:283779 'pixel_skia_gold_passthrough_test JACUZZI_RELEASE_LKGM': {
3780 'modifications': {
3781 'ChromeOS FYI Release Skylab (jacuzzi)': {
3782 'args': [
3783 # Skylab currently doesn't support use of LUCI_CONTEXT, so Gold cannot
3784 # automatically get the service account to authenticate with.
3785 '--service-account=/creds/service_accounts/skylab-drone.json',
3786 ],
3787 },
3788 },
3789 },
Brian Sheedyc3138b52023-11-27 19:44:473790 'pixel_skia_gold_passthrough_test VOLTEER_PUBLIC_RELEASE_LKGM': {
3791 'modifications': {
3792 'ChromeOS FYI Release Skylab (volteer)': {
3793 'args': [
3794 # Skylab currently doesn't support use of LUCI_CONTEXT, so Gold cannot
3795 # automatically get the service account to authenticate with.
3796 '--service-account=/creds/service_accounts/skylab-drone.json',
3797 ],
3798 },
3799 },
3800 },
Jonah Ryan-Davis832c8462020-06-09 03:45:033801 'pixel_skia_gold_validating_test': {
Brian Sheedy0566f2cb2021-02-12 22:12:503802 'modifications': {
3803 'Android FYI Release (Pixel 4)': {
3804 'args': [
3805 # Pixel 4s are weird in that they can output in different color spaces
3806 # simultaneously. The readback code for capturing a screenshot assumes
3807 # only one color space, so disable wide color gamut for the test to
3808 # work around the issue. See https://crbug.com/1166379 for more
3809 # information.
3810 '--extra-browser-args=--disable-wcg-for-test',
3811 ],
3812 },
Ben Pastene63f13302022-05-12 21:04:053813 'android_optional_gpu_tests_rel': {
3814 'args': [
3815 # See above.
3816 '--extra-browser-args=--disable-wcg-for-test',
3817 ],
3818 },
Brian Sheedy0566f2cb2021-02-12 22:12:503819 },
Chong Gu0aa929e62022-03-03 15:34:133820 'remove_from': [
David Dorwin49b2ddb2022-09-08 20:49:433821 # TODO(https://crbug.com/1302427): Remove once tests pass.
David Dorwin49b2ddb2022-09-08 20:49:433822 'fuchsia-x64-cast-receiver-rel',
3823 'fuchsia-x64-rel',
Chong Gu0aa929e62022-03-03 15:34:133824 ],
Brian Sheedye6ea0ee2019-07-11 02:54:373825 'replacements': {
Brian Sheedye6ea0ee2019-07-11 02:54:373826 # The V8 builders pass the V8 revision for ${got_revision}, so instead
3827 # use ${got_cr_revision}, which is only set on the V8 bots.
3828 'Android V8 FYI Release (Nexus 5X)': {
3829 'args': {
Brian Sheedy4d335deb2020-04-01 20:47:323830 '--git-revision': '${got_cr_revision}',
Brian Sheedye6ea0ee2019-07-11 02:54:373831 },
3832 },
Brian Sheedye6ea0ee2019-07-11 02:54:373833 },
3834 },
Brian Sheedye6ea0ee2019-07-11 02:54:373835 'pixel_test':{
Takuto Ikuta35c85522019-06-04 16:55:463836 'modifications': {
3837 'Android Release (Nexus 5X)': {
3838 'swarming': {
3839 'shards': 2,
3840 },
3841 },
3842 },
Nico Weber128fd382018-06-14 23:29:273843 },
K. Moon902a4b582023-06-16 19:00:343844 'ppapi_unittests': {
3845 # If you change this, make similar changes in nacl_loader_unittests
3846 'remove_from': [
3847 'ToTMacASan', # The mac asan tot bot sets enable_nacl=false
3848 'linux-win_cross-rel', # Sets enable_nacl=false, https://crbug.com/774186
3849 'Linux TSan Tests', # The TSan bot sets enable_nacl=false
3850 'linux-exp-tsan-fyi-rel', # The TSan bot sets enable_nacl=false
3851 'Mac ASan 64 Tests (1)', # The mac asan bot sets enable_nacl=false
3852 'win-arm64-rel', # Not available on arm64.
3853 ],
3854 },
Ningxin Hu430f0b42023-06-21 18:05:303855 'pthreadpool_unittests': {
3856 'remove_from': [
3857 # pthreadpool is not built for ChromeOS currently.
3858 'linux-chromeos-dbg',
3859 'linux-chromeos-rel',
3860 'linux-lacros-tester-rel',
3861 ],
3862 },
Randolf Jung444efaa2023-06-28 16:34:113863 'remoting_unittests': {
3864 'remove_from': [
3865 # Not available on Linux ARM64
3866 'linux-arm64-rel-cft',
3867 ],
3868 },
Henrique Nakashima87b6d8b2022-07-13 13:59:043869 'sandbox_linux_unittests': {
John Budorick3ebfdf852019-05-13 22:28:163870 'remove_from': [
John Budorick3ebfdf852019-05-13 22:28:163871 'android-asan', # https://crbug.com/962650
3872 ],
Ben Pastenedeff56ab2023-06-20 20:15:583873 'modifications': {
3874 'linux-ubsan-vptr': {
Ben Pastenea10e836b2023-06-28 17:48:103875 'args': [
3876 # TODO(crbug.com/1456464): Remove this.
3877 '--gtest_filter=-SandboxBPF.ApplyBasicAllowlistPolicy:SandboxBPF.SyntheticPolicy:SandboxBPF.UnsafeTrapWithCond',
3878 ],
Ben Pastenedeff56ab2023-06-20 20:15:583879 },
3880 },
John Budorickdce9d462019-03-23 00:25:383881 },
Yuly Novikov322b57f2023-08-21 23:25:093882 'screenshot_sync_metal_passthrough_ganesh_tests': {
Yuly Novikov3ed87d1b2023-08-04 19:09:363883 'remove_from': [
3884 # crbug.com/1458020 for Mac Retina ASAN removal
3885 'Mac FYI Retina ASAN (AMD)',
3886 ],
3887 },
Yuly Novikov322b57f2023-08-21 23:25:093888 'screenshot_sync_metal_passthrough_graphite_tests': {
Yuly Novikov8e05ea72023-07-31 17:10:343889 'remove_from': [
3890 # crbug.com/1458020 for Mac Retina ASAN removal
3891 'Mac FYI Retina ASAN (AMD)',
3892 ],
3893 },
Brian Sheedyc0c142c2021-06-01 21:18:053894 'screenshot_sync_passthrough_tests': {
3895 'modifications': {
3896 'Android FYI Release (Pixel 4)': {
3897 'args': [
3898 # Pixel 4s are weird in that they can output in different color spaces
3899 # simultaneously. The readback code for capturing a screenshot assumes
3900 # only one color space, so disable wide color gamut for the test to
3901 # work around the issue. See https://crbug.com/1166379 for more
3902 # information.
3903 '--extra-browser-args=--disable-wcg-for-test',
3904 ],
3905 },
Ben Pastene63f13302022-05-12 21:04:053906 'android_optional_gpu_tests_rel': {
3907 'args': [
3908 # See above.
3909 '--extra-browser-args=--disable-wcg-for-test',
3910 ],
3911 },
Brian Sheedyc0c142c2021-06-01 21:18:053912 },
3913 },
Brian Sheedy0566f2cb2021-02-12 22:12:503914 'screenshot_sync_validating_tests': {
3915 'modifications': {
3916 'Android FYI Release (Pixel 4)': {
3917 'args': [
3918 # Pixel 4s are weird in that they can output in different color spaces
3919 # simultaneously. The readback code for capturing a screenshot assumes
3920 # only one color space, so disable wide color gamut for the test to
3921 # work around the issue. See https://crbug.com/1166379 for more
3922 # information.
3923 '--extra-browser-args=--disable-wcg-for-test',
3924 ],
3925 },
Ben Pastene63f13302022-05-12 21:04:053926 'android_optional_gpu_tests_rel': {
3927 'args': [
3928 # See above.
3929 '--extra-browser-args=--disable-wcg-for-test',
3930 ],
3931 },
Brian Sheedy0566f2cb2021-02-12 22:12:503932 },
Chong Gu0aa929e62022-03-03 15:34:133933 'remove_from': [
David Dorwin49b2ddb2022-09-08 20:49:433934 # TODO(https://crbug.com/1302427): Remove once tests pass.
David Dorwin49b2ddb2022-09-08 20:49:433935 'fuchsia-x64-cast-receiver-rel',
3936 'fuchsia-x64-rel',
Chong Gu0aa929e62022-03-03 15:34:133937 ],
Brian Sheedy0566f2cb2021-02-12 22:12:503938 },
Kenneth Russelleb60cbd22017-12-05 07:54:283939 'services_unittests': {
3940 'remove_from': [
Nico Weber15a00d62018-05-16 17:11:483941 'ToTLinuxMSan', # https://crbug.com/831676
Kenneth Russell8a386d42018-06-02 09:48:013942 # The face and barcode detection tests fail on the Mac Pros.
3943 'Mac Pro FYI Release (AMD)',
Nico Weberd36959682018-04-12 03:33:463944 'Linux ChromiumOS MSan Tests', # https://crbug.com/831676
3945 'Linux MSan Tests', # https://crbug.com/831676
Ian Struiksmab0412a22023-06-06 23:02:483946 'linux-exp-msan-fyi-rel', # https://crbug.com/831676
Kenneth Russelleb60cbd22017-12-05 07:54:283947 ],
Haiyang Pan363c59a2020-07-23 05:47:043948 'modifications': {
Haiyang Pan9d68ca02021-08-04 21:30:473949 'android-11-x86-rel': {
Haiyang Pan10f029c2021-07-30 23:17:563950 'args': [
Haiyang Pan2877f062021-11-18 01:06:063951 # TODO(crbug.com/1264654): Fix the failed tests
3952 '--gtest_filter=-PacLibraryTest.ActualPacMyIpAddress*'
3953 ],
3954 },
Haiyang Pan2a55a452022-03-03 08:18:333955 'android-12-x64-rel': {
Haiyang Pan2877f062021-11-18 01:06:063956 'args': [
3957 # TODO(crbug.com/1264654): Fix the failed tests
Haiyang Pan10f029c2021-07-30 23:17:563958 '--gtest_filter=-PacLibraryTest.ActualPacMyIpAddress*'
3959 ],
James Shen421441a2023-02-21 22:54:023960 'swarming': {
3961 'shards': 2,
3962 },
Haiyang Pan10f029c2021-07-30 23:17:563963 },
Prakharc60ec802023-03-06 07:49:293964 # If you change this, make similar changes in android-x86-code-coverage below
Haiyang Panb41ca5f2023-07-10 23:11:313965 'android-oreo-x86-rel': {
3966 'ci_only': True,
Ben Joyced69de892023-07-14 21:32:043967 'args': [
3968 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_o.services_unittests.filter',
3969 ],
Haiyang Panb41ca5f2023-07-10 23:11:313970 'swarming': {
3971 'shards': 3,
3972 },
3973 },
Haiyang Panbe1a8922023-07-10 20:52:433974 'android-pie-x86-rel': {
3975 'args': [
3976 # TODO(crbug.com/1264654): Fix the failed tests
3977 '--gtest_filter=-PacLibraryTest.ActualPacMyIpAddress*'
3978 ],
3979 'swarming': {
3980 'shards': 2,
3981 },
3982 },
Haiyang Pan2c4c5e922023-10-09 22:57:313983 # Keep this same as android-oreo-x86-rel above
Prakharc60ec802023-03-06 07:49:293984 'android-x86-code-coverage': {
3985 'args': [
Haiyang Pan2c4c5e922023-10-09 22:57:313986 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_o.services_unittests.filter',
Prakharc60ec802023-03-06 07:49:293987 ],
3988 'swarming': {
3989 'shards': 3,
Prakharc60ec802023-03-06 07:49:293990 },
3991 },
Chong Gu52481452021-04-02 17:52:413992 'fuchsia-code-coverage': {
3993 'swarming': {
3994 'shards': 7,
3995 },
3996 },
Zijie He117165f2022-12-12 21:40:263997 'fuchsia-fyi-x64-asan': {
3998 'args': [
Rohan Pavonedf499ad2022-12-14 18:40:403999 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.lsan.services_unittests.filter',
Zijie He117165f2022-12-12 21:40:264000 ],
4001 },
Chong Gu52481452021-04-02 17:52:414002 }
Chong Gudf7fbe92021-02-24 02:55:584003 },
Chong Gu76046412021-09-22 17:49:214004 'snapshot_unittests': {
Chong Gub2446462021-08-19 18:44:084005 'modifications': {
4006 'fuchsia-fyi-arm64-dbg': {
4007 'args': [
4008 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.debug.snapshot_unittests.filter',
4009 ],
4010 },
4011 },
4012 },
Kenneth Russelleb60cbd22017-12-05 07:54:284013 'sync_integration_tests': {
Brad Halla36886c2019-02-26 16:52:294014 'remove_from': [
Brad Halla36886c2019-02-26 16:52:294015 'CrWinAsan(dll)', # https://crbug.com/935598
4016 ],
Kenneth Russelleb60cbd22017-12-05 07:54:284017 'modifications': {
Erik Chene84bc1c2019-11-25 23:23:524018 'Linux ASan LSan Tests (1)': {
4019 'swarming': {
4020 'shards': 4,
4021 },
4022 },
Nico Weber8fbc2832018-12-14 16:00:574023 'Linux TSan Tests': {
Gary Tong46fdc492023-11-01 16:25:014024 'ci_only': True, # https://crbug.com/1498240
Nico Weber8fbc2832018-12-14 16:00:574025 'swarming': {
4026 'shards': 6,
4027 },
4028 },
Chris Cunninghama1239c8b2022-05-03 00:32:214029 'Mac ASan 64 Tests (1)': {
4030 'swarming': {
4031 'shards': 3,
Lindsay Pasricha2cfaec212022-05-11 19:00:394032 },
4033 },
4034 'Mac11 Tests': {
4035 'swarming': {
4036 'shards': 4,
Chris Cunninghama1239c8b2022-05-03 00:32:214037 },
4038 },
Yue She0cad2922022-06-24 15:06:074039 'Mac12 Tests': {
Lindsay Pasrichac7e07d1e2022-12-16 22:10:064040 'ci_only': True,
Yue She0cad2922022-06-24 15:06:074041 'swarming': {
4042 'shards': 4,
4043 },
4044 },
Yue Shed8e45742023-06-01 15:18:034045 'Mac13 Tests': {
4046 'ci_only': True,
4047 'swarming': {
4048 'shards': 4,
4049 },
4050 },
Cameron Higgins2e4b7f12023-05-31 18:29:324051 'Mac13 Tests (dbg)':{
Cameron Higgins493e6a4e2022-10-11 05:03:304052 'swarming': {
Rahul Kumar Adudodlaecfd03c2023-04-20 17:53:454053 'shards': 3,
Cameron Higgins493e6a4e2022-10-11 05:03:304054 }
4055 },
Stephen Martinis1384ff92020-01-07 19:52:154056 'ToTLinuxTSan': {
Kenneth Russelleb60cbd22017-12-05 07:54:284057 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:154058 'shards': 6,
Kenneth Russelleb60cbd22017-12-05 07:54:284059 },
4060 },
Struan Shrimptona1ab7672022-01-13 18:02:514061 'Win10 Tests x64': {
4062 'swarming': {
Stephanie Kimbf31a692022-11-01 17:31:574063 'shards': 3,
Struan Shrimptona1ab7672022-01-13 18:02:514064 },
4065 },
Stephen Martinis75ab55d2018-08-30 02:27:124066 'Win10 Tests x64 (dbg)': {
4067 'experiment_percentage': 100, # https://crbug.com/840369
4068 },
Stephen Martinis1384ff92020-01-07 19:52:154069 'linux-chromeos-code-coverage': {
Yuke Liao79424e42020-01-06 21:00:114070 'swarming': {
4071 'shards': 4,
4072 },
4073 },
Stephanie Kim3aa4c552023-01-10 18:00:044074 'linux-chromeos-rel': {
4075 'swarming': {
4076 'shards': 2,
4077 },
4078 },
Stephen Martinis1384ff92020-01-07 19:52:154079 'linux-code-coverage': {
Yuke Liao79424e42020-01-06 21:00:114080 'swarming': {
4081 'shards': 4,
4082 },
4083 },
Ian Struiksma2e23f962023-05-26 22:37:204084 'linux-exp-tsan-fyi-rel': {
4085 'swarming': {
4086 'shards': 6,
4087 },
4088 },
Kuan Huang235b0142021-10-19 18:59:284089 'mac-code-coverage': {
4090 'args': [
4091 '--coverage-continuous-mode=1',
4092 ],
4093 },
Thiago Perrottaa289bad2023-01-20 12:44:394094 'mac-rel-cft': {
4095 'ci_only': True,
4096 'swarming': {
4097 'shards': 4,
4098 },
4099 },
Kuan Huang1b52d442023-02-07 20:35:344100 'win-asan': {
4101 # Tests shows tests run faster with fewer retries by using fewer jobs crbug.com/1411912
4102 'args': [
4103 '--test-launcher-jobs=3',
4104 ],
4105 'swarming': {
4106 'shards': 2,
4107 },
4108 },
Thiago Perrotta314f7b02023-01-19 21:30:534109 'win-rel-cft': {
4110 'swarming': {
4111 'shards': 3,
4112 },
4113 },
Prakharb25390ac2023-10-02 17:13:394114 'win10-code-coverage': {
4115 'swarming': {
4116 'shards': 4,
4117 'dimensions': {
4118 'pool': 'chromium.tests.coverage',
4119 'ssd': '1',
4120 },
4121 }
4122 },
Kenneth Russelleb60cbd22017-12-05 07:54:284123 },
4124 },
Hao Wubfdb23562023-06-17 20:16:514125 'sync_integration_tests_no_field_trial': {
4126 'remove_from': [
4127 'win10-rel-no-external-ip',
4128 'win-arm64-rel',
4129 'win-rel-cft',
4130 'Win11 Tests x64',
4131 ],
4132 },
Weizhong Xia613fda42021-04-21 20:11:524133 'system_webview_wpt': {
4134 'modifications': {
An Sunge7a6bca2023-09-05 19:13:284135 'android-chrome-pie-x86-wpt-android-specific': {
4136 'args': [
4137 '--test-list',
An Sung9cede132023-10-18 18:55:384138 '../../third_party/blink/web_tests/TestLists/android.filter'
An Sunge7a6bca2023-09-05 19:13:284139 ]
4140 },
Weizhong Xia613fda42021-04-21 20:11:524141 'android-webview-pie-x86-wpt-fyi-rel': {
Weizhong Xia7dd41362021-09-30 16:05:384142 'args': [
Nihar Damarasingu8def1a22022-08-18 21:15:544143 '--use-upstream-wpt',
Weizhong Xia7dd41362021-09-30 16:05:384144 ],
Weizhong Xia613fda42021-04-21 20:11:524145 },
4146 },
4147 },
Kenneth Russell8a386d42018-06-02 09:48:014148 'tab_capture_end2end_tests': {
Nico Webere89a3c92018-07-01 01:30:524149 # Run these only on Release bots.
Kenneth Russell8a386d42018-06-02 09:48:014150 'remove_from': [
Kenneth Russell8a386d42018-06-02 09:48:014151 'Linux Debug (NVIDIA)',
4152 'Mac Debug (Intel)',
4153 'Mac Retina Debug (AMD)',
Yuly Novikovbc1ccff2019-08-03 00:05:494154 'Win10 FYI x64 Debug (NVIDIA)',
Yuly Novikovf28f1eca2019-07-04 22:43:394155 # Disabled due to dbus crashes crbug.com/927465
Yuly Novikov86d61c42022-07-22 19:40:144156 'Linux FYI Release (Intel UHD 630)',
Yuly Novikov5865ff72019-07-09 21:38:054157 'Linux FYI Release (NVIDIA)',
Yuly Novikov5865ff72019-07-09 21:38:054158 'Linux Release (NVIDIA)',
Kenneth Russell8a386d42018-06-02 09:48:014159 ],
Emily Hanleyb64ac7c2018-05-25 13:36:554160 },
Haiyang Pan8c201b92020-06-04 01:25:074161 'telemetry_chromium_minidump_unittests': {
James Shen969655a2022-09-28 02:27:074162 'modifications': {
Prakharc60ec802023-03-06 07:49:294163 # If you change this, make similar changes in android-x86-code-coverage below
Haiyang Panb41ca5f2023-07-10 23:11:314164 'android-oreo-x86-rel': {
4165 'ci_only': True,
4166 },
Haiyang Pan2c4c5e922023-10-09 22:57:314167 # Keep this same as android-oreo-x86-rel above
Prakharc60ec802023-03-06 07:49:294168 'android-x86-code-coverage': {
4169 'ci_only': True,
4170 },
James Shen969655a2022-09-28 02:27:074171 },
Haiyang Pan8c201b92020-06-04 01:25:074172 },
Brian Sheedyc117f6d2020-05-06 02:23:274173 'telemetry_monochrome_minidump_unittests': {
James Shen969655a2022-09-28 02:27:074174 'modifications': {
Prakharc60ec802023-03-06 07:49:294175 # If you change this, make similar changes in android-x86-code-coverage below
Haiyang Panb41ca5f2023-07-10 23:11:314176 'android-oreo-x86-rel': {
4177 'ci_only': True,
4178 },
Haiyang Pan2c4c5e922023-10-09 22:57:314179 # Keep this same as android-oreo-x86-rel above
Prakharc60ec802023-03-06 07:49:294180 'android-x86-code-coverage': {
4181 'ci_only': True,
4182 },
James Shen969655a2022-09-28 02:27:074183 },
Brian Sheedyc117f6d2020-05-06 02:23:274184 },
Kenneth Russelleb60cbd22017-12-05 07:54:284185 'telemetry_perf_unittests': {
4186 'modifications': {
Kenneth Russelleb60cbd22017-12-05 07:54:284187 'Linux Tests': {
4188 'args': [
4189 '--xvfb',
Ned Nguyene6e26042018-01-17 20:42:484190 '--jobs=1',
Kenneth Russelleb60cbd22017-12-05 07:54:284191 ],
4192 },
Juan Antonio Navarro Perez4899edf2019-03-14 13:05:354193 'Linux Tests (dbg)(1)': {
4194 'args': [
4195 '--xvfb',
4196 '--jobs=1',
4197 ],
4198 },
John Chen9fd22fcf2021-12-10 02:24:124199 'Mac11 Tests': {
4200 'ci_only': True,
4201 },
Yue She0cad2922022-06-24 15:06:074202 'Mac12 Tests': {
4203 'ci_only': True,
4204 },
Yue Shed8e45742023-06-01 15:18:034205 'Mac13 Tests': {
4206 'ci_only': True,
4207 },
Ben Pastene69400eb2021-03-25 19:27:164208 'chromeos-eve-chrome': {
4209 'args': [
4210 # TODO(crbug.com/1191132): Re-enable.
4211 '--skip=benchmarks.benchmark_smoke_unittest.BenchmarkSmokeTest.wasmpspdfkit',
4212 ],
4213 },
Thiago Perrotta49e70492023-01-10 23:12:354214 'linux-rel-cft': {
4215 'args': [
4216 '--xvfb',
4217 '--jobs=1',
4218 ],
4219 },
Ben Pasteneebad8fc2022-08-12 23:34:284220 'linux-rel-no-external-ip': {
4221 'args': [
4222 '--xvfb',
4223 '--jobs=1',
4224 ],
4225 },
Thiago Perrottaa289bad2023-01-20 12:44:394226 'mac-rel-cft': {
4227 'ci_only': True,
4228 },
Kenneth Russelleb60cbd22017-12-05 07:54:284229 },
4230 'remove_from': [
Andrew Luobe83fd82019-12-19 03:07:584231 'android-pie-arm64-rel',
Garrett Beatyeef031a2019-02-28 01:55:414232 # crbug.com/936540
Zhaoyang Li69e2e002021-02-19 21:57:354233 'Mac10.15 Tests',
Lindsay Pasricha21bb93d72021-12-07 05:48:394234 # TODO crbug.com/1277277
Cameron Higgins2e4b7f12023-05-31 18:29:324235 'Mac13 Tests (dbg)',
Stephen Martinis1384ff92020-01-07 19:52:154236 'Linux - Future (dbg)', # client.v8.chromium
Takuto Ikuta9aa015d2019-04-15 23:33:294237 'Win10 Tests x64',
Stephen Martinise701f5a2018-05-04 01:25:114238 'Win10 Tests x64 (dbg)',
Kuan Huanga89737d2022-01-07 19:42:114239 'Win11 Tests x64',
Ben Pasteneebad8fc2022-08-12 23:34:284240 'win10-rel-no-external-ip',
Thiago Perrotta770925d42023-01-17 18:38:514241 'win-rel-cft',
Kenneth Russelleb60cbd22017-12-05 07:54:284242 ],
4243 },
Garrett Beaty497cead22023-12-12 22:31:204244 'telemetry_perf_unittests_android_chrome': {
4245 'modifications': {
4246 # If you change this, make similar changes in android-x86-code-coverage below
4247 'android-oreo-x86-rel': {
4248 'args': [
4249 # For whatever reason, automatic browser selection on this bot chooses
4250 # webview instead of the full browser, so explicitly specify it here.
4251 '--browser=android-chromium',
4252 ],
4253 'ci_only': True,
4254 },
4255 # Keep this same as android-oreo-x86-rel above
4256 'android-x86-code-coverage': {
4257 'args': [
4258 # For whatever reason, automatic browser selection on this bot chooses
4259 # webview instead of the full browser, so explicitly specify it here.
4260 '--browser=android-chromium',
4261 ],
4262 'ci_only': True,
4263 },
4264 },
4265 },
Stephen Martinis54d64ad2018-09-21 22:16:204266 'telemetry_unittests': {
4267 'modifications': {
4268 'Win10 Tests x64 (dbg)': {
4269 'experiment_percentage': 100, # crbug.com/870673
Ben Pastene9383fe12020-10-20 21:32:404270 },
John Budorickc498fd3c2019-03-14 01:16:264271 },
4272 'remove_from': [
Ben Pastene9ef2ced52021-07-28 18:04:344273 # TODO(crbug.com/1141234): Restore when there's more DUTs
Ben Pastene7f1ded3a42022-06-08 17:01:594274 'chromeos-eve-chrome',
Ben Pastene619317752020-12-03 00:04:144275
Takuto Ikuta9aa015d2019-04-15 23:33:294276 'Win10 Tests x64',
Kuan Huanga89737d2022-01-07 19:42:114277 'Win11 Tests x64',
Ben Pasteneebad8fc2022-08-12 23:34:284278 'win10-rel-no-external-ip',
Thiago Perrotta770925d42023-01-17 18:38:514279 'win-rel-cft',
Titouan Rigoudye122ec32021-11-08 16:36:164280
4281 # TODO(https://crbug.com/1267161): Re-enable when platform is supported.
4282 'mac11-arm64-rel-tests',
Zhaoyang Li5d3713d2022-06-13 18:01:174283 # TODO(https://crbug.com/1267161): Re-enable when platform is supported.
4284 'mac12-arm64-rel-tests',
Will Yeagera090e6a2023-06-09 14:59:414285 # TODO(https://crbug.com/1267161): Re-enable when platform is supported.
4286 'mac13-arm64-rel-tests',
John Budorickc498fd3c2019-03-14 01:16:264287 ],
Stephen Martinis54d64ad2018-09-21 22:16:204288 },
Preethi Mohan6d478e462022-10-13 18:51:594289 'testing_pytype': {
4290 'remove_from': [
4291 'linux-code-coverage',
4292 ],
4293 },
Brian Sheedy44e4b682023-06-13 22:25:214294 'trace_test': {
4295 'modifications': {
4296 # The browser is restarted after every test in this suite, which includes
4297 # re-applying permissions. Nexus 5Xs are very slow to apply permissions
4298 # compared to other devices, so increase sharding to offset the increased
4299 # runtime.
4300 'Android FYI Release (Nexus 5X)': {
4301 'swarming': {
4302 'shards': 2,
4303 },
4304 },
4305 'Android Release (Nexus 5X)': {
4306 'swarming': {
4307 'shards': 2,
4308 },
4309 },
4310 },
Kenneth Russell7e6ae8372023-06-29 02:36:384311 'remove_from': [
4312 # crbug.com/1458020 for Mac Retina ASAN removal
4313 'Mac FYI Retina ASAN (AMD)',
4314 ],
Brian Sheedy44e4b682023-06-13 22:25:214315 },
Kenneth Russelleb60cbd22017-12-05 07:54:284316 'unit_tests': {
Yun Liu3e759dbb2019-11-01 19:25:524317 'remove_from': [
Ben Pastene3e32ffe2020-08-07 03:37:074318 'android-pie-arm64-rel', # https://crbug.com/1010211
Yun Liu3e759dbb2019-11-01 19:25:524319 ],
Kenneth Russelleb60cbd22017-12-05 07:54:284320 'modifications': {
John Budorickca14c76f62017-12-09 14:19:184321 'Linux ASan LSan Tests (1)': {
Stephanie Kime632c6b2023-09-12 20:03:524322 # Only retry the individual failed tests instead of rerunning entire
4323 # shards.
4324 'retry_only_failed_tests': True,
John Budorick5052d552017-12-13 02:59:344325 # These are slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:444326 # crbug.com/1257927
John Budorickca14c76f62017-12-09 14:19:184327 'swarming': {
John Budorick5052d552017-12-13 02:59:344328 'shards': 4,
John Budorickca14c76f62017-12-09 14:19:184329 },
4330 },
Stephen Martinis1384ff92020-01-07 19:52:154331 'Linux Chromium OS ASan LSan Tests (1)': {
4332 # These are slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:444333 # crbug.com/1257927
John Budorickca14c76f62017-12-09 14:19:184334 'swarming': {
4335 'shards': 2,
4336 },
4337 },
Takuto Ikuta54671d972018-07-19 19:06:354338 'Linux ChromiumOS MSan Tests': {
4339 # These are very slow on the Chrome OS MSAN trybot for some reason.
4340 # crbug.com/865455
4341 'swarming': {
4342 'shards': 2,
4343 },
4344 },
Stephen Martinis1384ff92020-01-07 19:52:154345 'Linux TSan Tests': {
Takuto Ikuta54671d972018-07-19 19:06:354346 'swarming': {
4347 'shards': 2,
4348 },
4349 },
Stephanie Kime632c6b2023-09-12 20:03:524350 'Linux Tests': {
4351 # Only retry the individual failed tests instead of rerunning entire
4352 # shards.
4353 'retry_only_failed_tests': True,
4354 },
Maksim Sisovc81d284c2021-10-05 17:54:354355 # https://crbug.com/1184127
4356 'Linux Tests (Wayland)': {
4357 'args': [
4358 '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.unit_tests_wayland.filter',
4359 ],
Stephanie Kime632c6b2023-09-12 20:03:524360 # Only retry the individual failed tests instead of rerunning entire
4361 # shards.
4362 'retry_only_failed_tests': True,
Maksim Sisovc81d284c2021-10-05 17:54:354363 },
Brian Sheedy3a0977c82023-11-30 19:40:534364 'Mac ASan 64 Tests (1)': {
4365 'swarming': {
4366 'shards': 2,
4367 },
4368 },
Lindsay Pasrichadb377fe2023-06-27 20:29:354369 'Mac13 Tests': {
4370 'swarming': {
4371 'shards': 2,
4372 },
4373 },
Cameron Higgins2e4b7f12023-05-31 18:29:324374 'Mac13 Tests (dbg)': {
Zhaoyang Li9357e1e12021-12-07 18:53:174375 'swarming': {
4376 'shards': 2,
4377 },
4378 },
Stephen Martinis1384ff92020-01-07 19:52:154379 'ToTLinuxASan': {
Dirk Pranke20eae9a72017-12-09 18:12:144380 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:154381 'shards': 2,
Dirk Pranke20eae9a72017-12-09 18:12:144382 },
4383 },
Stephen Martinis1384ff92020-01-07 19:52:154384 'android-asan': {
4385 'args': [
4386 '--test-launcher-filter-file=../../testing/buildbot/filters/android.asan.unit_tests.filter',
4387 ],
4388 },
Ben Pasteneac465d422023-03-23 21:54:294389 'android-pie-arm64-rel-dev': {
Takuto Ikuta527cdff2020-01-29 08:04:274390 'swarming': {
4391 'shards': 8,
4392 },
4393 },
Stephen Martinis1384ff92020-01-07 19:52:154394 'linux-chromeos-chrome': {
4395 'args': [
4396 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.unit_tests.filter',
4397 ],
4398 },
Ben Pasteneacd57392019-10-31 02:13:254399 'linux-chromeos-dbg': {
4400 'swarming': {
4401 'shards': 2,
4402 },
4403 },
Erik Chend063aef72019-11-18 19:13:104404 'linux-chromeos-rel': {
Stephanie Kime632c6b2023-09-12 20:03:524405 # Only retry the individual failed tests instead of rerunning entire
4406 # shards.
4407 'retry_only_failed_tests': True,
Erik Chend063aef72019-11-18 19:13:104408 'swarming': {
4409 'shards': 2,
4410 },
4411 },
Ian Struiksma2e23f962023-05-26 22:37:204412 'linux-exp-tsan-fyi-rel': {
4413 'swarming': {
4414 'shards': 2,
4415 },
4416 },
Stephanie Kime632c6b2023-09-12 20:03:524417 'linux-lacros-tester-rel': {
4418 # Only retry the individual failed tests instead of rerunning entire
4419 # shards.
4420 'retry_only_failed_tests': True,
4421 },
Ben Pastene96b328e82023-04-07 21:19:054422 'linux-rel-dev': {
4423 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:254424 'dimensions': {
4425 'cores': '8',
4426 },
Ben Pastene96b328e82023-04-07 21:19:054427 },
4428 },
Ian Struiksma448f4132023-10-11 16:21:174429 'linux-ubsan-fyi-rel': {
4430 'swarming': {
4431 'shards': 2,
4432 }
4433 },
Kuan Huang4c8284672023-03-17 22:28:384434 'win-arm64-rel': {
4435 'args': [
4436 '--top-chrome-touch-ui=disabled',
4437 ],
4438 },
Titouan Rigoudyf1fd90442023-09-19 13:11:164439 'win-asan': {
4440 'swarming': {
4441 # ASAN bot is slow: https://crbug.com/1484550#c4
4442 'shards': 4,
4443 },
4444 },
Prakhar2db54822023-04-25 17:55:184445 'win10-code-coverage': {
4446 'swarming': {
4447 'shards': 6,
4448 },
4449 },
Kenneth Russelleb60cbd22017-12-05 07:54:284450 },
4451 },
Hao Wu77dd1ab2022-04-29 21:36:204452 'variations_smoke_tests': {
4453 'modifications': {
Hao Wud38c2342022-06-09 02:03:474454 'linux-chrome': {
4455 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:254456 'dimensions': {
4457 'pool': 'chrome.tests.finch',
4458 },
Hao Wud38c2342022-06-09 02:03:474459 },
4460 },
Hao Wu77dd1ab2022-04-29 21:36:204461 'win-chrome': {
4462 'experiment_percentage': 100,
Hao Wud38c2342022-06-09 02:03:474463 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:254464 'dimensions': {
4465 'pool': 'chrome.tests.finch',
4466 },
Hao Wud38c2342022-06-09 02:03:474467 },
Hao Wu77dd1ab2022-04-29 21:36:204468 },
4469 },
4470 },
Kenneth Russell8a386d42018-06-02 09:48:014471 'video_decode_accelerator_gl_unittest': {
4472 'remove_from': [
Kenneth Russell8a386d42018-06-02 09:48:014473 # Windows Intel doesn't have the GL extensions to support this test.
Yuly Novikov3db078282023-01-04 10:06:254474 'Win10 FYI x64 Release (Intel)',
4475 'Win10 FYI x64 Experimental Release (Intel)',
Kenneth Russell8a386d42018-06-02 09:48:014476 ],
4477 },
Sven Zheng577fe5ff2020-08-03 22:06:444478 'views_unittests': {
Sven Zheng80734f12020-08-06 06:50:394479 'modifications': {
Maksim Sisovc81d284c2021-10-05 17:54:354480 'Linux Tests (Wayland)': {
4481 'args': [
4482 '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.wayland_views_unittests.filter',
4483 ],
4484 },
Chong Gu6aa22be2021-09-10 06:56:144485 'fuchsia-fyi-arm64-dbg': {
4486 'args': [
4487 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.debug.views_unittests.filter',
4488 ],
4489 },
Sven Zhengbc822262022-09-20 20:47:354490 # https://crbug.com/1111979
4491 'linux-lacros-asan-lsan-rel': {
4492 'args': [
4493 '--gtest_filter=-DesktopWidgetFocusManagerTest.AnchoredDialogInDesktopNativeWidgetAura:'
4494 'DesktopWidgetTest*:'
4495 'DesktopWindowTreeHostPlatformTest*:'
4496 'EditableComboboxTest*:'
4497 'MenuRunnerTest*:'
4498 'TextfieldTest*:'
Sven Zhengbc822262022-09-20 20:47:354499 ],
4500 },
Sven Zheng5c9d3e342020-08-11 21:39:434501 # https://crbug.com/1111979,
Junhua Chen39dd2dba2021-05-05 17:51:544502 'linux-lacros-code-coverage': {
4503 'args': [
4504 '--gtest_filter=-DesktopWidgetFocusManagerTest.AnchoredDialogInDesktopNativeWidgetAura:'
4505 'DesktopWidgetTest*:'
4506 'DesktopWindowTreeHostPlatformTest*:'
4507 'EditableComboboxTest*:'
4508 'MenuRunnerTest*:'
4509 'TextfieldTest*:'
Junhua Chen39dd2dba2021-05-05 17:51:544510 ],
4511 },
Yuke Liaoa0db4742021-08-09 18:28:334512 'linux-lacros-dbg-tests-fyi': {
4513 'args': [
4514 '--gtest_filter=-DesktopWidgetFocusManagerTest.AnchoredDialogInDesktopNativeWidgetAura:'
4515 'TextfieldTest*:'
Yuke Liaoa0db4742021-08-09 18:28:334516 ],
4517 },
Sven Zheng5c9d3e342020-08-11 21:39:434518 'linux-lacros-tester-rel': {
Sven Zheng5c9d3e342020-08-11 21:39:434519 'args': [
4520 '--gtest_filter=-DesktopWidgetFocusManagerTest.AnchoredDialogInDesktopNativeWidgetAura:'
Yuke Liao34721c22020-08-14 21:41:194521 'DesktopWidgetTest*:'
4522 'DesktopWindowTreeHostPlatformTest*:'
Yuke Liaocf9db2b2020-08-13 19:42:534523 'EditableComboboxTest*:'
Sven Zhengea8903f2020-08-14 05:27:514524 'MenuRunnerTest*:'
Yuke Liaocf9db2b2020-08-13 19:42:534525 'TextfieldTest*:'
Sven Zheng5c9d3e342020-08-11 21:39:434526 ],
4527 },
Sven Zheng80734f12020-08-06 06:50:394528 },
Sven Zheng577fe5ff2020-08-03 22:06:444529 },
John Budorickd02c429de2020-01-10 19:02:214530 'viz_unittests': {
4531 'modifications': {
Chong Gub2446462021-08-19 18:44:084532 'fuchsia-fyi-arm64-dbg': {
Chong Gu6aa22be2021-09-10 06:56:144533 'args': [
4534 '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.debug.viz_unittests.filter',
4535 ],
Chong Gub2446462021-08-19 18:44:084536 },
Stephanie Kima51f4722023-12-13 20:36:344537 'linux-lacros-tester-rel': {
4538 'ci_only': True, # https://crbug.com/1509573
4539 },
John Budorickd02c429de2020-01-10 19:02:214540 },
4541 },
John Budorick20f4fa8d2019-08-02 22:58:294542 'vr_common_unittests': {
4543 'remove_from': [
Haiyang Pan08d09dc2020-04-01 16:11:214544 'android-pie-x86-rel',
Randolf Jung444efaa2023-06-28 16:34:114545 # Not available on Linux ARM64
4546 'linux-arm64-rel-cft',
John Budorick20f4fa8d2019-08-02 22:58:294547 ],
4548 },
Brian Sheedy45935b42022-12-14 23:21:464549 'vulkan_pixel_skia_gold_test': {
4550 'replacements': {
4551 # The V8 builders pass the V8 revision for ${got_revision}, so instead
4552 # use ${got_cr_revision}, which is only set on the V8 bots.
4553 'Linux V8 FYI Release (NVIDIA)': {
4554 'args': {
4555 '--git-revision': '${got_cr_revision}',
4556 },
4557 },
Brian Sheedyd7973022023-01-03 14:15:094558 'Linux V8 FYI Release - pointer compression (NVIDIA)': {
4559 'args': {
4560 '--git-revision': '${got_cr_revision}',
4561 },
4562 },
4563 'Mac V8 FYI Release (Intel)': {
4564 'args': {
4565 '--git-revision': '${got_cr_revision}',
4566 },
4567 },
4568 'Win V8 FYI Release (NVIDIA)': {
4569 'args': {
4570 '--git-revision': '${got_cr_revision}',
4571 },
4572 },
Brian Sheedy45935b42022-12-14 23:21:464573 },
4574 },
Nico Webere81999ee2018-07-01 23:52:434575 'wayland_client_perftests': {
4576 'remove_from': [
4577 'linux-chromeos-dbg', # https://crbug.com/859307
4578 ],
4579 },
Chong Gu76046412021-09-22 17:49:214580 'web_engine_browsertests': {
Chong Gud1a5c5992021-04-09 04:08:324581 'modifications': {
4582 'fuchsia-code-coverage': {
4583 'swarming': {
Chong Gu7a463202021-07-19 18:43:104584 'shards': 28,
Chong Gud1a5c5992021-04-09 04:08:324585 },
4586 },
4587 },
4588 },
Zijie He668da5d2023-08-11 23:39:364589 'web_engine_integration_tests': {
4590 'modifications': {
4591 'fuchsia-code-coverage': {
4592 'args': [
4593 '--test-launcher-jobs=1',
4594 ],
4595 'swarming': {
4596 'shards': 4,
4597 },
4598 },
4599 },
4600 },
Yuly Novikov96333102023-12-06 19:27:514601 'webcodecs_metal_passthrough_ganesh_tests': {
4602 'remove_from': [
4603 # crbug.com/1458020 for Mac Retina ASAN removal
4604 'Mac FYI Retina ASAN (AMD)',
4605 ],
4606 },
4607 'webcodecs_metal_passthrough_graphite_tests': {
Kenneth Russell7e6ae8372023-06-29 02:36:384608 'remove_from': [
4609 # crbug.com/1458020 for Mac Retina ASAN removal
4610 'Mac FYI Retina ASAN (AMD)',
4611 ],
4612 },
Jonathan Leef07495ef2023-11-09 00:21:394613 'webdriver_wpt_tests': {
Jonathan Leed3a05942023-08-04 17:38:384614 'modifications': {
4615 'Linux Tests (dbg)(1)': {
4616 'args': [
4617 '--debug',
4618 ],
4619 },
4620 },
John Budorick63357462019-02-27 23:02:514621 'remove_from': [
4622 'Linux Tests', # https://crbug.com/929689, https://crbug.com/936557
Thiago Perrotta61487462023-01-20 12:52:324623 'linux-rel-cft',
John Budorick63357462019-02-27 23:02:514624 ],
4625 },
Brian Sheedyd7973022023-01-03 14:15:094626 'webgl2_conformance_d3d11_passthrough_tests': {
4627 'remove_from': [
4628 # Removed from V8 builder since WebGL 1 should provide reasonable
4629 # upstream test coverage without the capacity hit from WebGL 2.
4630 'Win V8 FYI Release (NVIDIA)',
4631 ],
4632 },
Yuly Novikov96333102023-12-06 19:27:514633 'webgl2_conformance_gl_passthrough_ganesh_tests': {
4634 'remove_from': [
4635 'Mac V8 FYI Release (Intel)',
4636 ],
4637 },
Yuly Novikov19bc4c332022-10-17 18:45:064638 'webgl2_conformance_gl_passthrough_tests': {
4639 'remove_from': [
Brian Sheedyd7973022023-01-03 14:15:094640 # Removed from V8 builders since WebGL 1 should provide reasonable
4641 # upstream test coverage without the capacity hit from WebGL 2.
4642 'Linux V8 FYI Release (NVIDIA)',
4643 'Linux V8 FYI Release - pointer compression (NVIDIA)',
Yuly Novikov19bc4c332022-10-17 18:45:064644 ],
4645 },
Brian Sheedy5a9f6562021-08-20 03:32:544646 'webgl2_conformance_gles_passthrough_tests': {
4647 'remove_from': [
Brian Sheedyefb683c2022-01-25 21:17:364648 # Currently not enough capacity to run these tests on this config.
4649 # TODO(crbug.com/1280418): Re-enable once more of the Pixel 6 capacity
4650 # is deployed.
4651 'Android FYI Release (Pixel 6)',
Brian Sheedy43f5a6f2022-01-07 02:41:044652 # Not enough CrOS hardware capacity to run both on anything other than
4653 # VMs. See https://crbug.com/1238070.
Brian Sheedy5a9f6562021-08-20 03:32:544654 'Lacros FYI x64 Release (Intel)',
4655 ],
4656 'modifications': {
4657 # This VM configuration is known to be significantly slower than other
4658 # CrOS configurations, so increase the shards.
4659 # TODO(crbug.com/1223550): Remove this if the configuration can be sped
4660 # up.
4661 'ChromeOS FYI Release (amd64-generic)': {
4662 'swarming': {
4663 'shards': 30,
4664 },
4665 },
4666 },
4667 },
Kramer Ge271dd202023-05-19 23:38:374668 'webgl2_conformance_gles_passthrough_tests Ash ToT': {
4669 'modifications': {
4670 # Not enough capacity.
4671 'Lacros FYI Release (jacuzzi)': {
4672 'swarming': {
4673 'shards': 1,
4674 },
4675 },
4676 # Not enough capacity.
4677 'Lacros FYI Release (octopus)': {
4678 'swarming': {
4679 'shards': 1,
4680 },
4681 },
4682 },
4683 },
Yuly Novikov96333102023-12-06 19:27:514684 'webgl2_conformance_metal_passthrough_graphite_tests': {
Kenneth Russell18fff67f2021-11-05 23:45:114685 'remove_from': [
Yuly Novikov7d00cdb2022-01-05 00:10:384686 # crbug.com/1270755
4687 'Mac FYI ASAN (Intel)',
4688 'Mac FYI Retina ASAN (AMD)',
Kenneth Russell18fff67f2021-11-05 23:45:114689 # Not enough capacity.
4690 'Mac FYI Retina Release (NVIDIA)',
Yuly Novikov9e6e9d82023-06-26 18:54:084691 'Mac FYI Experimental Retina Release (NVIDIA)',
Brian Sheedyd7973022023-01-03 14:15:094692 # Removed from V8 builders since WebGL 1 should provide reasonable
4693 # upstream test coverage without the capacity hit from WebGL 2.
4694 'Mac V8 FYI Release (Intel)',
Kenneth Russell18fff67f2021-11-05 23:45:114695 ],
Yuly Novikov220c14a52021-12-14 02:49:334696 'modifications': {
4697 'Mac FYI ASAN (Intel)': {
4698 'args': [
4699 '--extra-browser-args=--disable-metal-shader-cache',
4700 ],
4701 },
4702 'Mac FYI Retina ASAN (AMD)': {
4703 'args': [
4704 '--extra-browser-args=--disable-metal-shader-cache',
Brian Sheedya111ca92022-04-18 23:37:154705 ],
4706 },
Brian Sheedyfc263762023-07-14 22:19:234707 },
Brian Sheedyee496982023-11-07 00:33:594708 'replacements': {
4709 'Mac Pro FYI Release (AMD)': {
4710 'args': {
4711 # Causes problems on older hardware. crbug.com/1499911.
4712 '--enable-metal-debug-layers': None,
4713 },
4714 },
4715 },
Kenneth Russell18fff67f2021-11-05 23:45:114716 },
John Budorick82e61dfb2019-12-10 04:36:094717 'webgl2_conformance_validating_tests': {
Stephen Martinis54d64ad2018-09-21 22:16:204718 'remove_from': [
Brian Sheedyefb683c2022-01-25 21:17:364719 # Currently not enough capacity to run these tests on this config.
4720 # TODO(crbug.com/1280418): Re-enable once more of the Pixel 6 capacity
4721 # is deployed.
4722 'Android FYI Release (Pixel 6)',
Stephen Martinis54d64ad2018-09-21 22:16:204723 ],
Kenneth Russell8a386d42018-06-02 09:48:014724 'modifications': {
Brian Sheedyab0a1992021-08-13 20:57:394725 # This VM configuration is known to be significantly slower than other
4726 # CrOS configurations, so increase the shards.
4727 # TODO(crbug.com/1223550): Remove this if the configuration can be sped
4728 # up.
4729 'ChromeOS FYI Release (amd64-generic)': {
4730 'swarming': {
4731 'shards': 30,
4732 },
Brian Sheedy9bde4532021-08-20 18:11:194733 # This configuration is tested with the passthrough decoder as well,
4734 # which will be shipped in the nearish future, so any failures that
4735 # show up with the validating decoder are just an FYI.
4736 'experiment_percentage': 100,
Brian Sheedyab0a1992021-08-13 20:57:394737 },
Kenneth Russell8a386d42018-06-02 09:48:014738 },
4739 },
Yuly Novikov96333102023-12-06 19:27:514740 'webgl_conformance_gl_passthrough_ganesh_tests 1002:67ef': {
Brian Sheedye8723cb2022-07-21 13:37:284741 'modifications': {
4742 'mac_optional_gpu_tests_rel': {
4743 'args': [
4744 # Added to debug crbug.com/1293967.
Brian Sheedyf528ce592022-07-26 22:44:464745 '--extra-browser-args=--disable-background-media-suspend --disable-renderer-backgrounding --disable-background-timer-throttling',
Brian Sheedye8723cb2022-07-21 13:37:284746 ],
4747 },
4748 },
4749 },
Kramer Ge271dd202023-05-19 23:38:374750 'webgl_conformance_gles_passthrough_tests Ash ToT': {
4751 'modifications': {
4752 # Not enough capacity.
4753 'Lacros FYI Release (jacuzzi)': {
4754 'swarming': {
4755 'shards': 1,
4756 },
4757 },
4758 # Not enough capacity.
4759 'Lacros FYI Release (octopus)': {
4760 'swarming': {
4761 'shards': 1,
4762 },
4763 },
4764 },
4765 },
Yuly Novikov96333102023-12-06 19:27:514766 'webgl_conformance_metal_passthrough_ganesh_tests': {
4767 'remove_from': [
4768 # crbug.com/1270755
4769 'Mac FYI ASAN (Intel)',
4770 'Mac FYI Retina ASAN (AMD)',
4771 ],
4772 },
4773 'webgl_conformance_metal_passthrough_graphite_tests': {
Kenneth Russell984f2f12020-12-15 23:23:354774 'remove_from': [
Yuly Novikov7d00cdb2022-01-05 00:10:384775 # crbug.com/1270755
4776 'Mac FYI ASAN (Intel)',
4777 'Mac FYI Retina ASAN (AMD)',
Yuly Novikov220c14a52021-12-14 02:49:334778 # crbug.com/1158857: re-enable when switching to Metal by default.
Kenneth Russell984f2f12020-12-15 23:23:354779 'Mac FYI Retina Release (NVIDIA)',
Yuly Novikov9e6e9d82023-06-26 18:54:084780 'Mac FYI Experimental Retina Release (NVIDIA)',
Kenneth Russell984f2f12020-12-15 23:23:354781 ],
Yuly Novikov220c14a52021-12-14 02:49:334782 'modifications': {
4783 'Mac FYI ASAN (Intel)': {
4784 'args': [
4785 '--extra-browser-args=--disable-metal-shader-cache',
4786 ],
4787 },
4788 'Mac FYI Retina ASAN (AMD)': {
4789 'args': [
4790 '--extra-browser-args=--disable-metal-shader-cache',
Yuly Novikov599840bf2023-01-31 19:13:094791 ],
4792 },
Yuly Novikov220c14a52021-12-14 02:49:334793 },
Brian Sheedyee496982023-11-07 00:33:594794 'replacements': {
4795 'Mac Pro FYI Release (AMD)': {
4796 'args': {
4797 # Causes problems on older hardware. crbug.com/1499911.
4798 '--enable-metal-debug-layers': None,
4799 },
4800 },
4801 },
Kenneth Russell984f2f12020-12-15 23:23:354802 },
Stephen Martinis54d64ad2018-09-21 22:16:204803 'webgl_conformance_tests': {
Struan Shrimptona1ab7672022-01-13 18:02:514804 'modifications': {
Sven Zhengf3c34f62023-10-25 22:10:174805 'chromeos-amd64-generic-rel-renamed': {
Kenneth Russelld5558352022-07-15 18:40:454806 'args': [
4807 # Added to debug crbug.com/1293967.
Brian Sheedyf528ce592022-07-26 22:44:464808 '--extra-browser-args=--disable-features=BackgroundVideoPauseOptimization --disable-background-media-suspend --disable-renderer-backgrounding --disable-background-timer-throttling',
Kenneth Russelld5558352022-07-15 18:40:454809 ],
Struan Shrimptona1ab7672022-01-13 18:02:514810 },
4811 },
Kenneth Russell8a386d42018-06-02 09:48:014812 },
Austin Enge8c0ba02021-07-19 23:55:194813 'webgpu_blink_web_tests': {
Brian Sheedyd9a809f02022-10-06 00:50:374814 'remove_from': [
4815 # TODO(crbug.com/1363409): Enable these once they're shown to work on
4816 # Android.
4817 'Dawn Android arm DEPS Release (Pixel 4)',
4818 'Dawn Android arm Release (Pixel 4)',
Austin Eng337f62b2023-05-17 21:34:154819 'Dawn Android arm64 DEPS Release (Pixel 6)',
4820 'Dawn Android arm64 Release (Pixel 6)',
Brian Sheedyd9a809f02022-10-06 00:50:374821 ],
Austin Enge8c0ba02021-07-19 23:55:194822 'modifications': {
Kai Ninomiyabb3312a2023-02-07 00:07:534823 # These tests must run with a GPU.
4824 'linux-code-coverage': {
4825 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:254826 'dimensions': {
4827 # TODO(crbug.com/1408314): This must be kept in sync with the
4828 # appropriate mixin; currently, linux_nvidia_gtx_1660_stable,
4829 # which is used by Dawn Linux x64 Release (NVIDIA).
4830 'gpu': '10de:2184-440.100',
4831 'os': 'Ubuntu-18.04.5|Ubuntu-18.04.6',
4832 'pool': 'chromium.tests.gpu'
4833 },
Kai Ninomiyabb3312a2023-02-07 00:07:534834 },
4835 },
4836 'mac-code-coverage': {
4837 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:254838 'dimensions': {
4839 # TODO(crbug.com/1408314): This must be kept in sync with the
4840 # appropriate mixin; currently, mac_mini_intel_gpu_stable,
4841 # which is used by Dawn Mac x64 Release (Intel).
4842 'cpu': 'x86-64',
4843 'gpu': '8086:3e9b',
Yuly Novikov26914eb2023-09-12 19:05:444844 'os': 'Mac-13.5',
Garrett Beatyade673d2023-08-04 22:00:254845 'display_attached': '1',
4846 },
Kai Ninomiyabb3312a2023-02-07 00:07:534847 },
4848 },
4849 'win10-code-coverage': {
4850 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:254851 'dimensions': {
4852 # TODO(crbug.com/1408314): This must be kept in sync with the
4853 # appropriate mixin; currently, win10_nvidia_gtx_1660_stable,
4854 # which is used by Dawn Win10 x64 Release (NVIDIA).
4855 'gpu': '10de:2184-27.21.14.5638',
4856 'os': 'Windows-10-18363',
4857 'pool': 'chromium.tests.gpu',
4858 },
Kai Ninomiyabb3312a2023-02-07 00:07:534859 },
4860 },
Austin Enge8c0ba02021-07-19 23:55:194861 },
Brian Sheedy5796b4b2021-09-15 21:51:414862 },
4863 'webgpu_blink_web_tests_with_backend_validation': {
Austin Engd7a88622022-08-12 18:50:004864 'remove_from': [
Brian Sheedyd9a809f02022-10-06 00:50:374865 # TODO(crbug.com/1363409): Enable these once they're shown to work on
4866 # Android.
4867 'Dawn Android arm DEPS Release (Pixel 4)',
4868 'Dawn Android arm Release (Pixel 4)',
Austin Eng337f62b2023-05-17 21:34:154869 'Dawn Android arm64 DEPS Release (Pixel 6)',
4870 'Dawn Android arm64 Release (Pixel 6)',
Yuly Novikovf0480762023-04-13 10:25:444871 # Remove from bots where capacity is constrained.
Yuly Novikov9f43dc52023-01-10 15:07:174872 'Dawn Win10 x64 DEPS Release (Intel)',
4873 'Dawn Win10 x64 Release (Intel)',
Kai Ninomiyabb3312a2023-02-07 00:07:534874 'linux-code-coverage',
4875 'mac-code-coverage',
4876 'win10-code-coverage',
Austin Engd7a88622022-08-12 18:50:004877 ],
4878 },
Brian Sheedy9dba8e1b2023-11-16 18:31:544879 'webgpu_cts_compat_tests': {
4880 'modifications': {
4881 # TODO(crbug.com/1483449): Enable on Intel trybots once there is
4882 # sufficient capacity.
4883 'Dawn Linux x64 DEPS Release (Intel UHD 630)': {
4884 'ci_only': True,
Brian Sheedyacaef272023-11-20 23:27:154885 'experiment_percentage': 100,
Brian Sheedy9dba8e1b2023-11-16 18:31:544886 },
4887 'Dawn Linux x64 Release (Intel UHD 630)': {
4888 'ci_only': True,
Brian Sheedyacaef272023-11-20 23:27:154889 'experiment_percentage': 100,
Brian Sheedy9dba8e1b2023-11-16 18:31:544890 },
4891 },
4892 },
Austin Engd7a88622022-08-12 18:50:004893 'webgpu_cts_tests': {
Kai Ninomiyabb3312a2023-02-07 00:07:534894 'modifications': {
Austin Eng1cebf662023-05-25 00:42:514895 'Dawn Android arm DEPS Release (Pixel 4)': {
4896 'ci_only': True,
4897 },
4898 'Dawn Android arm Release (Pixel 4)': {
4899 'ci_only': True,
4900 },
4901 'Dawn Android arm64 DEPS Release (Pixel 6)': {
4902 'ci_only': True,
4903 },
4904 'Dawn Android arm64 Release (Pixel 6)': {
4905 'ci_only': True,
4906 },
Kai Ninomiyabb3312a2023-02-07 00:07:534907 # These tests must run with a GPU.
4908 'linux-code-coverage': {
4909 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:254910 'dimensions': {
4911 # TODO(crbug.com/1408314): This must be kept in sync with the
4912 # appropriate mixin; currently, linux_nvidia_gtx_1660_stable,
4913 # which is used by Dawn Linux x64 Release (NVIDIA).
4914 'gpu': '10de:2184-440.100',
4915 'os': 'Ubuntu-18.04.5|Ubuntu-18.04.6',
4916 'pool': 'chromium.tests.gpu'
4917 },
Kai Ninomiyabb3312a2023-02-07 00:07:534918 },
4919 },
4920 'mac-code-coverage': {
4921 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:254922 'dimensions': {
4923 # TODO(crbug.com/1408314): This must be kept in sync with the
4924 # appropriate mixin; currently, mac_mini_intel_gpu_stable,
4925 # which is used by Dawn Mac x64 Release (Intel).
4926 'cpu': 'x86-64',
4927 'gpu': '8086:3e9b',
Yuly Novikov26914eb2023-09-12 19:05:444928 'os': 'Mac-13.5',
Garrett Beatyade673d2023-08-04 22:00:254929 'display_attached': '1',
4930 },
Kai Ninomiyabb3312a2023-02-07 00:07:534931 },
4932 },
4933 'win10-code-coverage': {
4934 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:254935 'dimensions': {
4936 # TODO(crbug.com/1408314): This must be kept in sync with the
4937 # appropriate mixin; currently, win10_nvidia_gtx_1660_stable,
4938 # which is used by Dawn Win10 x64 Release (NVIDIA).
4939 'gpu': '10de:2184-27.21.14.5638',
4940 'os': 'Windows-10-18363',
4941 'pool': 'chromium.tests.gpu',
4942 },
Kai Ninomiyabb3312a2023-02-07 00:07:534943 },
4944 },
4945 },
Austin Engd7a88622022-08-12 18:50:004946 },
4947 'webgpu_cts_with_validation_tests': {
Austin Engd7a88622022-08-12 18:50:004948 'remove_from': [
Yuly Novikovf0480762023-04-13 10:25:444949 # Remove from bots where capacity is constrained.
Yuly Novikov9f43dc52023-01-10 15:07:174950 'Dawn Win10 x64 DEPS Release (Intel)',
4951 'Dawn Win10 x64 Release (Intel)',
Austin Eng545d1692023-05-11 18:57:094952 # Disable testing with validation on x86 where they frequently OOM.
4953 # See crbug.com/1444815.
Yuly Novikov9f43dc52023-01-10 15:07:174954 'Dawn Win10 x86 DEPS Release (Intel)',
4955 'Dawn Win10 x86 Release (Intel)',
Austin Eng545d1692023-05-11 18:57:094956 'Dawn Win10 x86 DEPS Release (NVIDIA)',
4957 'Dawn Win10 x86 Release (NVIDIA)',
4958 # Don't need validation layers on code coverage bots
Kai Ninomiyabb3312a2023-02-07 00:07:534959 'linux-code-coverage',
4960 'mac-code-coverage',
4961 'win10-code-coverage',
Austin Engd7a88622022-08-12 18:50:004962 ],
4963 'modifications': {
Austin Eng1cebf662023-05-25 00:42:514964 'Dawn Android arm DEPS Release (Pixel 4)': {
4965 'ci_only': True,
4966 },
4967 'Dawn Android arm Release (Pixel 4)': {
4968 'ci_only': True,
4969 },
4970 'Dawn Android arm64 DEPS Release (Pixel 6)': {
4971 'ci_only': True,
4972 },
4973 'Dawn Android arm64 Release (Pixel 6)': {
4974 'ci_only': True,
4975 },
Austin Engd7a88622022-08-12 18:50:004976 # ci_only for bots where capacity is constrained.
4977 'Dawn Linux x64 DEPS Release (Intel UHD 630)': {
4978 'ci_only': True,
4979 },
4980 'Dawn Linux x64 Release (Intel UHD 630)': {
4981 'ci_only': True,
4982 },
4983 },
4984 },
4985 'webgpu_swiftshader_web_platform_cts_with_validation_tests': {
4986 # Remove from bots where capacity is constrained.
4987 'remove_from': [
Yuly Novikov9f43dc52023-01-10 15:07:174988 'Dawn Win10 x64 DEPS Release (Intel)',
4989 'Dawn Win10 x64 Release (Intel)',
4990 'Dawn Win10 x86 DEPS Release (Intel)',
4991 'Dawn Win10 x86 Release (Intel)',
Austin Engd7a88622022-08-12 18:50:004992 ],
4993 'modifications': {
4994 # ci_only for bots where capacity is constrained.
4995 'Dawn Linux x64 DEPS Release (Intel UHD 630)': {
4996 'ci_only': True,
4997 },
4998 'Dawn Linux x64 Release (Intel UHD 630)': {
4999 'ci_only': True,
5000 },
5001 },
Austin Enge8c0ba02021-07-19 23:55:195002 },
Kenneth Russelleb60cbd22017-12-05 07:54:285003 'webkit_unit_tests': {
Dirk Pranke81ff51c2017-12-09 19:24:285004 'modifications': {
John Budorick5052d552017-12-13 02:59:345005 'Linux ASan LSan Tests (1)': {
5006 # These are very slow on the ASAN trybot for some reason.
Ben Pastened2c01af2022-01-31 23:06:445007 # crbug.com/1257927
John Budorick5052d552017-12-13 02:59:345008 'swarming': {
5009 'shards': 5,
5010 },
5011 },
Erik Chen681dc0282019-11-26 22:54:495012 'Linux TSan Tests': {
5013 'swarming': {
5014 'shards': 2,
5015 },
5016 },
Ian Struiksma2e23f962023-05-26 22:37:205017 'linux-exp-tsan-fyi-rel': {
5018 'swarming': {
5019 'shards': 2,
5020 },
5021 },
Ian Struiksma448f4132023-10-11 16:21:175022 'linux-ubsan-fyi-rel': {
5023 'swarming': {
5024 'shards': 2,
5025 }
5026 },
Prakhar746198a2023-04-25 17:56:585027 'win10-code-coverage': {
5028 'swarming': {
5029 'shards': 4,
5030 },
5031 },
Dirk Pranke81ff51c2017-12-09 19:24:285032 },
Kenneth Russelleb60cbd22017-12-05 07:54:285033 },
Erik Staab70ca5b32021-08-07 00:38:355034 'webview_64_cts_tests': {
5035 'modifications': {
5036 'android-pie-arm64-rel': {
5037 # TODO(crbug.com/1111436): Move this back to walleye if/when additional
5038 # capacity has been deployed.
5039 'swarming': {
Garrett Beatyade673d2023-08-04 22:00:255040 'dimensions': {
Haiyang Pan1325c56a2023-10-11 22:08:295041 'device_type': 'crosshatch',
Garrett Beatyade673d2023-08-04 22:00:255042 },
Haiyang Panfbd2b482020-09-23 23:41:255043 },
5044 },
Haiyang Panfbd2b482020-09-23 23:41:255045 },
5046 },
Kenneth Russelleb60cbd22017-12-05 07:54:285047 'webview_instrumentation_test_apk': {
5048 'remove_from': [
Hans Wennborgeac4c36c2018-05-23 16:04:065049 # This test frequently fails on Android, https://crbug.com/824959
Stephen Martinis1384ff92020-01-07 19:52:155050 # matching android builders, the test fails on these.
Hans Wennborga0b11ebe2018-05-15 16:26:505051 'ToTAndroid',
John Budorick27d2d44e2019-05-20 20:26:095052 'android-asan', # https://crbug.com/964562
Kenneth Russelleb60cbd22017-12-05 07:54:285053 ],
Ben Pastenee17a8e92018-07-12 21:55:185054 'modifications': {
5055 'Oreo Phone Tester': {
Andrew Luo93c4a1e2019-08-30 05:26:305056 # TODO(crbug.com/997362): Enable this once it's passing.
bsheedy01833462018-12-07 01:05:575057 # TODO(https://crbug.com/884413): Re-enable this once the tests are
5058 # either passing or there is more capacity.
5059 'experiment_percentage': 0,
Ben Pastenee17a8e92018-07-12 21:55:185060 },
Haiyang Pan9d68ca02021-08-04 21:30:475061 'android-11-x86-rel': {
Haiyang Pan103864812021-03-19 19:28:445062 'args': [
5063 # TODO(crbug.com/1189746) Enable this test once the issue is fixed.
5064 '--gtest_filter=-org.chromium.net.NetworkChangeNotifierTest.testNetworkChangeNotifierJavaObservers',
5065 ],
5066 },
Struan Shrimpton5786bfd02023-01-11 00:47:545067 'android-12-x64-rel': {
5068 'swarming': {
James Shen783979b72023-03-02 01:58:015069 'shards': 10,
Struan Shrimpton5786bfd02023-01-11 00:47:545070 },
5071 },
Haiyang Pan9ecfcb42023-03-02 18:50:435072 'android-12l-x64-dbg-tests': {
Haiyang Pan9ecfcb42023-03-02 18:50:435073 'swarming': {
5074 'shards': 9,
5075 },
5076 },
Haiyang Pan42c77cd92023-05-18 01:13:035077 'android-12l-x64-fyi-dbg': {
Haiyang Pan42c77cd92023-05-18 01:13:035078 'swarming': {
5079 'shards': 9,
5080 },
5081 },
5082 'android-13-x64-fyi-rel': {
5083 'swarming': {
5084 'shards': 9,
5085 },
5086 },
Haiyang Pan9ecfcb42023-03-02 18:50:435087 'android-13-x64-rel': {
Haiyang Pan9ecfcb42023-03-02 18:50:435088 'swarming': {
5089 'shards': 9,
5090 },
5091 },
Zhaoyang Li9b3ee432023-08-21 18:09:375092 'android-code-coverage-native': {
5093 'args': [
5094 '--use-persistent-shell',
5095 ],
5096 'swarming': {
5097 # Shard number is increased for longer test execution time and added
5098 # local coverage data merging time.
5099 'shards': 36,
5100 },
5101 },
Prakharc60ec802023-03-06 07:49:295102 # If you change this, make similar changes in android-x86-code-coverage below
Haiyang Panb41ca5f2023-07-10 23:11:315103 'android-oreo-x86-rel': {
5104 'args': [
5105 '--use-persistent-shell',
5106 ],
5107 'swarming': {
5108 'shards': 27,
5109 },
5110 },
Kuan Huang1f402c82021-06-08 17:58:185111 'android-pie-arm64-rel': {
Ben Joycee8955c42022-11-01 21:38:505112 'args': [
5113 '--use-persistent-shell',
5114 ],
Gregory Guterman7c7edc6342022-09-26 21:00:135115 'ci_only': True, # crbug/1368281
Kuan Huang1f402c82021-06-08 17:58:185116 'swarming': {
5117 'shards': 9,
5118 },
5119 },
Haiyang Pan08d09dc2020-04-01 16:11:215120 'android-pie-x86-rel': {
Haiyang Panfdd94332020-03-27 02:43:295121 'args': [
5122 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.webview_instrumentation_test_apk.filter',
5123 ],
Ben Joyce9a7eb312021-08-25 00:44:595124 'swarming': {
Haiyang Pan37911512023-08-14 23:01:505125 'shards': 13, # crbug.com/1294924
Ben Joyce9a7eb312021-08-25 00:44:595126 },
Haiyang Panfdd94332020-03-27 02:43:295127 },
Haiyang Pan2c4c5e922023-10-09 22:57:315128 # Keep this same as android-oreo-x86-rel above
Prakharc60ec802023-03-06 07:49:295129 'android-x86-code-coverage': {
5130 'args': [
5131 '--use-persistent-shell',
5132 ],
5133 'swarming': {
5134 'shards': 27,
5135 },
5136 },
Ben Pastenee17a8e92018-07-12 21:55:185137 },
Kenneth Russelleb60cbd22017-12-05 07:54:285138 },
Rakib M. Hasanc8996ad62023-07-21 18:52:335139 'webview_instrumentation_test_apk_no_field_trial': {
5140 'remove_from': [
5141 'android-12-x64-rel', # These tests are not ready to run on a non FYI CI.
5142 ]
5143 },
Haiyang Panfed339172021-03-10 23:19:575144 'webview_ui_test_app_test_apk': {
5145 'remove_from': [
Haiyang Pan9d68ca02021-08-04 21:30:475146 'android-11-x86-rel', # crbug.com/1165280
Haiyang Panfed339172021-03-10 23:19:575147 ],
5148 },
Rakib M. Hasan421989942023-08-30 00:16:575149 'webview_ui_test_app_test_apk_single_group_per_study_prefer_existing_behavior': {
5150 'remove_from': [
5151 'android-12-x64-rel', # These tests are not ready to run on a non FYI CI.
5152 ]
5153 },
5154 'webview_ui_test_app_test_apk_single_group_per_study_prefer_new_behavior': {
5155 'remove_from': [
5156 'android-12-x64-rel', # These tests are not ready to run on a non FYI CI.
5157 ]
5158 },
Nihar Damarasinguaac11d862022-10-03 20:24:245159 'wpt_tests_suite': {
5160 'modifications': {
Jonathan Lee4d014e82022-12-15 22:21:185161 'linux-wpt-content-shell-asan-fyi-rel': {
5162 'args': [
5163 '--enable-sanitizer',
5164 ],
5165 'swarming': {
5166 'shards': 8,
5167 },
Weizhong Xiab5eb8962023-03-08 19:22:595168 },
Weizhong Xia93275902023-04-06 18:08:045169 'linux-wpt-content-shell-fyi-rel': {
5170 'swarming': {
5171 'shards': 10,
5172 },
5173 },
Nihar Damarasinguaac11d862022-10-03 20:24:245174 'win10-wpt-content-shell-fyi-rel': {
5175 'args': [
5176 '--target',
5177 'Release_x64',
5178 ],
5179 },
Nihar Damarasinguc5b983c2022-12-08 18:56:145180 'win11-wpt-content-shell-fyi-rel': {
5181 'args': [
5182 '--target',
5183 'Release_x64',
5184 ],
5185 },
Nihar Damarasinguaac11d862022-10-03 20:24:245186 },
5187 },
Kenneth Russelleb60cbd22017-12-05 07:54:285188}