blob: 11317aed0a4d1ed47e4256f6905a00f31e69619e [file] [log] [blame]
Kenneth Russelleb60cbd22017-12-05 07:54:281# Copyright 2017 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5# This is a .pyl, or "Python Literal", file. You can treat it just like a
6# .json file, with the following exceptions:
7# * all keys must be quoted (use single quotes, please);
8# * comments are allowed, using '#' syntax; and
9# * trailing commas are allowed.
10
11# Exceptions to the common test suites can only include removal from
12# particular bots, and modifications on particular bots. By design,
13# it's not possible to add one-off tests to bots. Instead they have to
14# be added to one of the test suites in test_suites.pyl.
15#
Jeff Yoone2188f62020-08-24 20:55:5716# Note that if you are excluding with variants, you will need to exclude
17# per variant, with the identifier appended to the test suite name.
18# For example, if you have ios_chrome_ui_eg2tests_module with variant
19# SIM_IPHONE_6S_14_0 (identifier = "iPhone 6s 14.0"), you
20# must exclude with the test name as:
21# "ios_chrome_ui_eg2tests_module_iPhone 6s 14.0"
22
Kenneth Russelleb60cbd22017-12-05 07:54:2823# The goal is to drive the number of exceptions to zero, to make all
24# the bots behave similarly.
25{
Andrew Luo38b311f2019-10-04 03:42:0926 'android_browsertests': {
27 'modifications': {
28 'android-pie-arm64-rel': {
Andrew Luobe83fd82019-12-19 03:07:5829 'args': [
30 '--gtest_filter=-ImportantSitesUtilBrowserTest.DSENotConsideredImportantInRegularMode', # https://crbug.com/1034001
31 ],
Haiyang Panfbd2b482020-09-23 23:41:2532 # TODO(crbug.com/1111436): Move this back to walleye if/when additional
33 # capacity has been deployed.
34 'swarming': {
35 'dimension_sets': [
36 {
37 'device_type': 'sailfish',
38 },
39 ],
40 },
Andrew Luo38b311f2019-10-04 03:42:0941 },
Haiyang Pan08d09dc2020-04-01 16:11:2142 'android-pie-x86-rel': {
John Budorick191adfcd2020-01-29 18:19:0443 'args': [
44 '--gtest_filter=-ImportantSitesUtilBrowserTest.DSENotConsideredImportantInRegularMode', # https://crbug.com/1034001
45 ],
46 },
Andrew Luo38b311f2019-10-04 03:42:0947 },
48 },
Sven Zhengc60debc2020-09-10 18:40:5249 'android_sync_integration_tests': {
50 'remove_from': [
51 # Remove from CQ bots due to capacity.
52 'android-marshmallow-arm64-rel',
53 'android-lollipop-arm-rel',
54 ],
55 },
Kenneth Russelleb60cbd22017-12-05 07:54:2856 'android_webview_unittests': {
57 'remove_from': [
John Budorick826d5ed2017-12-28 19:27:3258 # On chromium.android, these do not need to run prior to M.
Haiyang Pana3ff55ae2020-04-23 18:26:5459 'android-lollipop-arm-rel',
Yun Liu3e759dbb2019-11-01 19:25:5260 'android-code-coverage-native', # crbug/1018434
Kenneth Russelleb60cbd22017-12-05 07:54:2861 ],
Kenneth Russelleb60cbd22017-12-05 07:54:2862 },
Jamie Madillc9ae75d2020-10-23 19:19:4863 'angle_end2end_tests': {
64 'remove_from': [
65 # TODO(ynovikov) Investigate why the test breaks on older devices.
66 'Android FYI Release (Nexus 5)',
67 'Android FYI Release (Nexus 6)',
68 'Android FYI Release (Nexus 9)',
Jamie Madillc9ae75d2020-10-23 19:19:4869 # Temporarily disabled due to bad NVIDIA driver upgrade crbug.com/950542
70 'Linux FYI Debug (NVIDIA)',
71 ],
Yuly Novikov60cbf642020-11-19 20:43:1572 'modifications': {
73 # anglebug.com/5328 suspecting blue screen caused by multiprocess
74 'ANGLE GPU Win10 x64 Release (Intel HD 630)': {
75 'args': [
76 '--max-processes=1',
77 ],
78 },
79 'Optional Win10 x64 Release (Intel HD 630)': {
80 'args': [
81 '--max-processes=1',
82 ],
83 },
84 'Win10 FYI x64 Exp Release (Intel HD 630)': {
85 'args': [
86 '--max-processes=1',
87 ],
88 },
89 'Win10 FYI x64 Release (Intel HD 630)': {
90 'args': [
91 '--max-processes=1',
92 ],
93 },
Yuly Novikov80d2e672021-02-13 00:16:0494 'win10-angle-x64-intel': {
95 'args': [
96 '--max-processes=1',
97 ],
98 },
Yuly Novikov60cbf642020-11-19 20:43:1599 },
Jamie Madillc9ae75d2020-10-23 19:19:48100 },
101 'angle_perftests': {
102 'remove_from': [
103 'Android FYI Release (Nexus 5)', # crbug.com/915429
104 'Android FYI Release (Nexus 6)', # anglebug.com/2433
Jamie Madillc9ae75d2020-10-23 19:19:48105 'Linux FYI GPU TSAN Release', # crbug.com/950542
106 ],
107 },
108 'angle_unittests': {
109 'remove_from': [
110 # On Android, these are already run on the main waterfall.
111 'Android FYI Release (Nexus 5X)',
Yuly Novikovc1117ae82021-01-15 22:33:36112 # Times out listing tests crbug.com/1167314
113 'android-asan',
Jamie Madillc9ae75d2020-10-23 19:19:48114 # Does not currently work on Lacros configurations.
115 'linux-lacros-tester-rel',
116 'linux-lacros-tester-fyi-rel',
117 ],
Jamie Madillc9ae75d2020-10-23 19:19:48118 },
119 'angle_white_box_tests': {
Yuly Novikov60cbf642020-11-19 20:43:15120 'modifications': {
121 # anglebug.com/5328 suspecting blue screen caused by multiprocess
122 'ANGLE GPU Win10 x64 Release (Intel HD 630)': {
123 'args': [
124 '--max-processes=1',
125 ],
126 },
127 'Optional Win10 x64 Release (Intel HD 630)': {
128 'args': [
129 '--max-processes=1',
130 ],
131 },
132 'Win10 FYI x64 Exp Release (Intel HD 630)': {
133 'args': [
134 '--max-processes=1',
135 ],
136 },
137 'Win10 FYI x64 Release (Intel HD 630)': {
138 'args': [
139 '--max-processes=1',
140 ],
141 },
Yuly Novikov80d2e672021-02-13 00:16:04142 'win10-angle-x64-intel': {
143 'args': [
144 '--max-processes=1',
145 ],
146 },
Yuly Novikov60cbf642020-11-19 20:43:15147 },
Jamie Madillc9ae75d2020-10-23 19:19:48148 },
Haiyang Pan363c59a2020-07-23 05:47:04149 'blink_platform_unittests': {
150 'modifications': {
151 # TODO(crbug.com/1108121): Remove this filter
152 'android-nougat-arm64-rel': {
153 'args': [
154 '--gtest_filter=-HarfBuzzShaperTest.ShapeHorizontalWithoutSubpixelPositionWithKerningIsRounded',
155 ],
156 },
Haiyang Panfbd2b482020-09-23 23:41:25157 'android-pie-arm64-rel': {
158 # TODO(crbug.com/1111436): Move this back to walleye if/when additional
159 # capacity has been deployed.
160 'swarming': {
161 'dimension_sets': [
162 {
163 'device_type': 'sailfish',
164 },
165 ],
166 },
167 },
Haiyang Pan363c59a2020-07-23 05:47:04168 },
169 },
John Chenaab16fc02020-03-03 06:35:45170 'blink_web_tests': {
171 'remove_from': [
Ilia Samsonovca3dfd52020-08-07 18:39:01172 'Mac10.11 Tests',
John Chenaab16fc02020-03-03 06:35:45173 'Win 7 Tests x64 (1)', # 64-bit win is unsupported by the layout tests.
174 'Win10 Tests x64 (dbg)',
175 ],
176 'modifications': {
177 'Fuchsia x64': {
178 'args': [
179 '--platform=fuchsia',
180 ],
181 'swarming': {
182 'shards': 1,
183 },
184 },
185 'Linux Tests': {
186 "args": [
187 "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw",
188 ],
189 },
190 'Linux Tests (dbg)(1)': {
191 'args': [
192 '--debug',
193 ],
194 'swarming': {
195 'shards': 20,
196 },
197 },
John Chenaab16fc02020-03-03 06:35:45198 'Mac10.11 Tests': {
199 # TODO(kbr): this is essentially redundant.
200 'swarming': {
201 'dimension_sets': [
202 {
203 'gpu': 'none',
204 'os': 'Mac-10.11.6',
205 },
206 ],
207 'shards': 25,
208 },
209 },
210 'Mac10.12 Tests': {
211 'swarming': {
212 'shards': 25,
213 },
214 },
215 'Mac10.13 Tests': {
216 'swarming': {
217 'dimension_sets': [
218 {
Erik Staab59591f32020-08-25 23:07:07219 'gpu': None,
John Chenaab16fc02020-03-03 06:35:45220 },
221 ],
222 'shards': 25,
223 },
224 },
225 'Mac10.13 Tests (dbg)': {
226 'args': [
227 '--debug',
228 ],
John Budorickd3375fa2020-03-17 20:49:11229 'swarming': {
230 'shards': 25,
231 },
John Chenaab16fc02020-03-03 06:35:45232 },
233 'V8 Blink Linux Debug': {
Michael Achenbach455d39242020-06-22 13:33:45234 # This builder compiles Chromium in release mode, but V8 in debug.
235 # TODO(machenbach): Change name and out directory of this builder to
236 # something less confusing.
John Chenaab16fc02020-03-03 06:35:45237 'args': [
Michael Achenbach455d39242020-06-22 13:33:45238 '-t',
239 'Debug',
240 '--release',
John Chenaab16fc02020-03-03 06:35:45241 ],
242 },
243 'V8 Blink Linux Future': {
244 'args': [
245 '--additional-driver-flag=--js-flags=--future',
246 ],
247 },
248 'WebKit Linux ASAN': {
249 'args': [
250 '--additional-expectations',
251 '../../third_party/blink/web_tests/ASANExpectations',
252 '--time-out-ms',
253 '48000',
254 '--enable-sanitizer',
255 ],
256 'swarming': {
257 'shards': 20,
258 },
259 },
260 'WebKit Linux Leak': {
261 'args': [
262 '--additional-expectations',
263 '../../third_party/blink/web_tests/LeakExpectations',
264 '--time-out-ms',
265 '48000',
266 '--enable-leak-detection',
267 ],
268 'swarming': {
269 'shards': 10,
270 },
271 },
272 'WebKit Linux MSAN': {
273 'args': [
274 '--additional-expectations',
275 '../../third_party/blink/web_tests/MSANExpectations',
276 '--time-out-ms',
277 '66000',
278 '--enable-sanitizer',
279 ],
280 'swarming': {
281 'expiration': 36000,
282 'hard_timeout': 10800,
283 'io_timeout': 3600,
284 'shards': 20,
285 },
286 },
287 'WebKit Linux composite_after_paint Dummy Builder': {
288 'args': [
289 '--additional-driver-flag=--enable-blink-features=CompositeAfterPaint',
290 ],
291 },
292 'WebKit Linux layout_ng_disabled Builder': {
293 'args': [
294 '--additional-driver-flag=--disable-blink-features=LayoutNG',
295 ],
296 },
297 'Win10 Tests x64': {
298 'args': [
299 '--target',
Takuto Ikutab28b582e2021-02-10 01:41:21300 'Release_x64',
John Chenaab16fc02020-03-03 06:35:45301 ],
302 'swarming': {
303 "shards": 28
304 },
305 },
306 'Win10 Tests x64 (dbg)': {
307 'args': [
308 '--debug',
309 '--target',
Takuto Ikutab28b582e2021-02-10 01:41:21310 'Debug_x64',
John Chenaab16fc02020-03-03 06:35:45311 ],
312 },
John Chenaab16fc02020-03-03 06:35:45313 'Win7 Tests (dbg)(1)': {
314 'args': [
315 '--debug',
316 '--time-out-ms',
317 '60000'
318 ],
319 'experiment_percentage': 100,
320 # TODO(kbr): the "Windows-7-SP1" Swarming dimension set is implicit,
321 # from prefered_os_dimension in
322 # tools/build/scripts/slave/recipe_modules/swarming/api.py. Ideally,
323 # Swarming dimensions would be either specified for all testers on the
324 # waterfall (and therefore, explicitly specified for all tests in the
325 # generated JSON), or this would be removed, and the implicit one used.
326 'swarming': {
327 'dimension_sets': [
328 {
329 'os': 'Windows-7-SP1',
330 }
331 ],
332 },
333 },
334 # tryserver.chromium.android
335 'android_blink_rel': {
336 'args': [
337 '--release',
338 '--android',
339 # TODO(crbug.com/912120): Breakpad was entirely disabled on
340 # Android. Remove this when it no longer affects Android crash
341 # log handling.
342 '--disable-breakpad',
343 # TODO(crbug.com/875172): run on the real GPU since the
344 # software fallback, SwiftShader, isn't yet for 32-bit ARM.
345 '--additional-driver-flag=--use-gpu-in-tests',
346 ],
347 },
348 'devtools_frontend_linux_blink_light_rel': {
349 'args': [
350 'http/tests/devtools',
351 ],
352 'swarming': {
353 'shards': 4,
354 },
355 },
356 'fuchsia-fyi-x64-rel': {
357 'args': [
358 '--platform=fuchsia',
359 ],
360 'swarming': {
361 'shards': 1,
362 },
363 },
Mathias Carlen30968a62020-03-31 08:47:04364 'linux-autofill-assistant': {
365 'args': [
366 '--release',
367 ],
368 },
Yuzu Saijo9709bcc2020-03-18 09:12:20369 'linux-bfcache-rel': {
John Chenaab16fc02020-03-03 06:35:45370 'args': [
Hitoshi Yoshida01e12b32020-11-27 02:47:59371 '--additional-driver-flag=--enable-features=BackForwardCache:enable_same_site/true',
John Chenaab16fc02020-03-03 06:35:45372 '--additional-expectations=../../third_party/blink/web_tests/FlagExpectations/enable-features=BackForwardCache',
373 ],
374 },
375 'linux-blink-animation-use-time-delta': {
376 'args': [
377 '--debug',
378 ],
379 },
John Chenaab16fc02020-03-03 06:35:45380 'linux-blink-heap-concurrent-marking-tsan-rel': {
381 'args': [
382 '--release',
383 '--additional-driver-flag=--enable-features=BlinkHeapConcurrentMarking',
384 ],
385 },
Daniel Libby178c9832020-10-08 20:36:14386 'linux-blink-web-tests-force-accessibility-rel': {
387 'args': [
388 '--additional-driver-flag=--force-renderer-accessibility',
389 ],
390 },
John Chenaab16fc02020-03-03 06:35:45391 'linux-code-coverage': {
392 'args': [
393 '--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw',
394 ],
395 'swarming': {
396 'shards': 20,
397 },
398 },
Aaron Gable40f79aa2020-03-21 01:21:15399 'linux-layout-tests-edit-ng': {
400 'args': [
Yoshifumi Inouebebca262020-04-08 22:03:49401 '--additional-driver-flag=--enable-blink-features=EditingNG',
Aaron Gable40f79aa2020-03-21 01:21:15402 ],
403 },
John Chenaab16fc02020-03-03 06:35:45404 'mac10.12-blink-rel-dummy': {
405 'swarming': {
406 'shards': 20,
407 },
408 },
409 'mac10.13-blink-rel-dummy': {
410 'swarming': {
411 'shards': 20,
412 },
413 },
John Chenaab16fc02020-03-03 06:35:45414 'mac10.14-blink-rel-dummy': {
415 'swarming': {
416 'shards': 20,
417 },
418 },
Ilia Samsonov7efe05e2020-05-07 19:00:46419 'mac10.15-blink-rel-dummy': {
420 'swarming': {
421 'shards': 20,
422 },
423 },
Ilia Samsonovdd271c6c22020-09-08 22:24:44424 'mac11.0-blink-rel-dummy': {
425 'swarming': {
426 'shards': 20,
427 },
428 },
John Chenaab16fc02020-03-03 06:35:45429 },
430 },
John Budorickca995852019-06-26 16:55:55431 'breakpad_unittests': {
432 'modifications': {
433 'android-asan': {
434 'args': [
435 '--test-launcher-filter-file=../../testing/buildbot/filters/android.asan.breakpad_unittests.filter',
436 ],
437 },
438 },
439 },
Kenneth Russelleb60cbd22017-12-05 07:54:28440 'browser_tests': {
Kenneth Russellfbda3c532017-12-08 23:57:24441 'remove_from': [
Brad Halla36886c2019-02-26 16:52:29442 'CrWinAsan(dll)', # https://crbug.com/935598
Nico Weber3af4da72018-02-27 01:59:41443 'linux-win_cross-rel',
Nico Weberdae13cd92018-12-14 13:56:26444 'ToTLinuxTSan', # https://crbug.com/368525
Gary Tongd5f5a742021-01-29 00:01:13445 'Mac10.13 Tests', # https://crbug.com/1042757
Nico Weberd36959682018-04-12 03:33:46446 'Linux TSan Tests', # https://crbug.com/368525
Stephen Martinise701f5a2018-05-04 01:25:11447 'Win10 Tests x64 (dbg)',
Kenneth Russellfbda3c532017-12-08 23:57:24448 ],
Kenneth Russelleb60cbd22017-12-05 07:54:28449 'modifications': {
Nico Weber3f919792020-06-12 23:34:52450 'CrWinAsan': {
451 # These are very slow on the ASAN trybot for some reason.
452 # crbug.com/794372
453 'swarming': {
454 'shards': 40,
455 },
456 },
457 'CrWinAsan(dll)': {
458 # These are very slow on the ASAN trybot for some reason.
459 # crbug.com/794372
460 'swarming': {
461 'shards': 40,
462 },
463 },
Stephen Martinis1384ff92020-01-07 19:52:15464 'Linux - Future (dbg)': { # client.v8.chromium
Yuke Liaoea70f472019-12-19 06:03:36465 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:15466 'shards': 10,
Yuke Liaoea70f472019-12-19 06:03:36467 },
468 },
Stephen Martinis1384ff92020-01-07 19:52:15469 'Linux ASan LSan Tests (1)': {
470 # These are very slow on the ASAN trybot for some reason.
471 # crbug.com/794372
Roberto Carrillo2c9ec972019-03-20 03:11:19472 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:15473 'shards': 40,
Roberto Carrillo2c9ec972019-03-20 03:11:19474 },
475 },
Chris Cunningham1d0e9e12020-02-26 22:56:40476 'Linux ASan Tests (sandboxed)': {
477 'swarming': {
John Abd-El-Malek3a631612020-07-08 21:40:41478 'shards': 30, # https://crbug.com/1103330
Chris Cunningham1d0e9e12020-02-26 22:56:40479 },
480 },
Stephen Martinis1384ff92020-01-07 19:52:15481 'Linux Chromium OS ASan LSan Tests (1)': {
482 # These are very slow on the ASAN trybot for some reason.
483 # crbug.com/794372
Roberto Carrillo5a5c98dc2019-10-30 22:33:51484 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:15485 'shards': 31,
Roberto Carrillo5a5c98dc2019-10-30 22:33:51486 },
487 },
Stephen Martinis1384ff92020-01-07 19:52:15488 'Linux ChromiumOS MSan Tests': {
489 # These are very slow on the Chrome OS MSAN trybot for some reason.
490 # crbug.com/865455
Kenneth Russell56a3e862017-12-08 03:11:34491 'swarming': {
Ben Pastene44221d32020-05-21 23:38:36492 'shards': 32,
Kenneth Russell56a3e862017-12-08 03:11:34493 },
Ben Pastene44221d32020-05-21 23:38:36494 'args': [
495 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.msan.browser_tests.oobe_negative.filter',
496 ],
Kenneth Russell56a3e862017-12-08 03:11:34497 },
John Budorick614f91a2020-03-30 20:34:55498 'Linux Tests (dbg)(1)': {
499 # crbug.com/1066161
500 'swarming': {
501 'shards': 20,
502 },
503 },
Stephen Martinis1384ff92020-01-07 19:52:15504 'Mac ASan 64 Tests (1)': {
Kenneth Russellfbda3c532017-12-08 23:57:24505 'swarming': {
Stephen Martiniscd3c3832020-11-19 22:01:24506 'shards': 30,
Kenneth Russellfbda3c532017-12-08 23:57:24507 },
508 },
John Budorickd3375fa2020-03-17 20:49:11509 'Mac10.13 Tests (dbg)': {
Sven Zhengb4995e32021-01-07 21:11:23510 # https://crbug.com/1152770
John Budorickd3375fa2020-03-17 20:49:11511 'swarming': {
Kuan Huang1e9a92c2021-01-26 18:54:38512 'shards': 40,
John Budorickd3375fa2020-03-17 20:49:11513 },
514 },
Stephen Martinis1384ff92020-01-07 19:52:15515 'ToTWin(dbg)': {
Kenneth Russelleb60cbd22017-12-05 07:54:28516 'swarming': {
John Budorickca14c76f62017-12-09 14:19:18517 'shards': 20,
Kenneth Russelleb60cbd22017-12-05 07:54:28518 },
519 },
Stephen Martinis1384ff92020-01-07 19:52:15520 'ToTWin64(dbg)': {
Kenneth Russell8ceeabf2017-12-11 17:53:28521 'swarming': {
522 'shards': 20,
523 },
524 },
Kenneth Russell6c83d212018-07-27 20:52:59525 'Win10 Tests x64': {
526 # crbug.com/868082
527 'args': [
528 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
529 ],
Takuto Ikutac9c269a2019-01-10 22:40:25530 'swarming': {
531 # This is for slow test execution that often becomes a critical path of
532 # swarming jobs. crbug.com/868114
533 'shards': 15,
534 }
Kenneth Russell6c83d212018-07-27 20:52:59535 },
Stephen Martinis1384ff92020-01-07 19:52:15536 'Win7 Tests (1)': {
537 # This is for slow test execution that often becomes a critical path of
538 # swarming jobs. crbug.com/868114
539 'swarming': {
540 'shards': 15,
541 },
542 },
543 'Win7 Tests (dbg)(1)': {
Pavol Markoc579e072019-12-05 22:42:02544 'swarming': {
545 'shards': 20,
546 },
547 },
Jacob Kopczynski3a555bd32020-12-10 01:41:16548 'linux-chromeos-beta': {
549 'args': [
550 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.browser_tests.filter',
551 ],
552 },
Stephen Martinis1384ff92020-01-07 19:52:15553 'linux-chromeos-chrome': {
554 # TODO(https://crbug.com/932269): Promote out of experiment when the
555 # tests are green.
556 'args': [
557 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.browser_tests.filter',
558 ],
559 },
560 'linux-chromeos-code-coverage': {
Nico Weber0c2861b2018-12-14 18:05:16561 'swarming': {
Stephen Martinis1384ff92020-01-07 19:52:15562 'shards': 50,
563 },
564 },
565 'linux-chromeos-dbg': {
566 'swarming': {
567 'shards': 30,
568 },
569 },
Jacob Kopczynski3a555bd32020-12-10 01:41:16570 'linux-chromeos-ltc': {
571 'args': [
572 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.browser_tests.filter',
573 ],
574 },
575 'linux-chromeos-lts': {
576 'args': [
577 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.browser_tests.filter',
578 ],
579 },
Stephen Martinis1384ff92020-01-07 19:52:15580 'linux-chromeos-rel': {
581 'swarming': {
582 'shards': 20,
Stephanie Kime9008f72020-03-05 23:01:16583 'dimension_sets': [
584 {
585 'kvm': '1',
586 },
587 ],
Stephen Martinis1384ff92020-01-07 19:52:15588 },
589 },
Jacob Kopczynski3a555bd32020-12-10 01:41:16590 'linux-chromeos-stable': {
591 'args': [
592 '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.browser_tests.filter',
593 ],
594 },
Stephen Martinis1384ff92020-01-07 19:52:15595 'linux-code-coverage': {
Yuke Liao58e1d202020-03-20 23:02:01596 'args': [
597 '--no-sandbox',
598 ],
Stephen Martinis1384ff92020-01-07 19:52:15599 'swarming': {
600 'shards': 50,
601 },
602 },
Yuke Liaod75285f92020-08-18 18:33:56603 'linux-lacros-rel': {
604 'args': [
605 '--test-launcher-filter-file=../../testing/buildbot/filters/lacros.browser_tests.filter',
606 ],
607 },
Sven Zheng80734f12020-08-06 06:50:39608 'linux-lacros-tester-rel': {
609 'args': [
610 '--test-launcher-filter-file=../../testing/buildbot/filters/lacros.browser_tests.filter',
611 ],
612 },
Stephen Martinis1384ff92020-01-07 19:52:15613 'linux-trusty-rel': {
614 'args': [
John Budorick79ec9012020-01-08 21:56:31615 '--test-launcher-filter-file=../../testing/buildbot/filters/linux_trusty_rel.browser_tests.filter',
616 ],
Stephen Martinis1384ff92020-01-07 19:52:15617 },
618 'mac-code-coverage': {
Stephen Martinis1384ff92020-01-07 19:52:15619 'swarming': {
620 'shards': 15,
621 },
622 },
Stephen Martinis1384ff92020-01-07 19:52:15623 'win-asan': {
Nico Weber3f919792020-06-12 23:34:52624 # These are very slow on the ASAN trybot for some reason.
625 # crbug.com/794372
Stephen Martinis1384ff92020-01-07 19:52:15626 'swarming': {
Nico Weber3f919792020-06-12 23:34:52627 'shards': 40,
Nico Weber0c2861b2018-12-14 18:05:16628 },
629 },
Kenneth Russelleb60cbd22017-12-05 07:54:28630 },
631 },
Maksim Sisov4af9c032020-06-12 12:43:11632 'browser_tests_wayland': {
633 'modifications': {
Maksim Sisov69730f82020-11-11 12:09:13634 # CQ tester.
Maksim Sisov4af9c032020-06-12 12:43:11635 'Linux Ozone Tester (Wayland)': {
636 'args': [
637 '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.wayland_browser_tests.filter',
638 ],
639 },
Maksim Sisov69730f82020-11-11 12:09:13640 # CI tester.
641 'Linux Tester (Ozone Wayland)': {
642 'args': [
643 '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.wayland_browser_tests.filter',
644 ],
645 },
Maksim Sisov4af9c032020-06-12 12:43:11646 },
647 },
Erik Chen681dc0282019-11-26 22:54:49648 'cc_unittests': {
649 'modifications': {
650 'Linux TSan Tests': {
651 'swarming': {
652 'shards': 3,
653 },
654 },
Haiyang Pan2486dcb2020-09-18 17:53:06655 'android-marshmallow-x86-rel-non-cq': {
John Budorickfa8f1da92020-01-15 18:11:38656 # https://crbug.com/1039860
657 'args': [
658 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.cc_unittests.filter',
659 ],
660 },
Haiyang Pan08d09dc2020-04-01 16:11:21661 'android-pie-x86-rel': {
John Budorickfa8f1da92020-01-15 18:11:38662 # https://crbug.com/1039860
663 'args': [
664 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.cc_unittests.filter',
665 ],
666 },
Erik Chen681dc0282019-11-26 22:54:49667 },
668 },
Prakhar94f444a2020-10-08 07:30:08669 'check_static_initializers': {
670 'modifications': {
671 'Mac Builder': {
672 'args': [
673 '--allow-coverage-initializer',
674 ],
675 },
676 },
677 },
Dirk Pranke1b767092017-12-07 04:44:23678 'checkbins': {
679 'remove_from': [
Stephen Martinis47d77132019-04-24 23:51:33680 'linux-archive-dbg',
681 'linux-archive-rel',
682 'mac-archive-dbg',
683 'mac-archive-rel',
Dirk Pranke1b767092017-12-07 04:44:23684 ],
685 },
Ben Pastene7a05a8f2020-11-12 17:25:51686 'chrome_all_tast_tests': {
687 'modifications': {
688 'chromeos-betty-pi-arc-cfi-thin-lto-chrome': {
689 'args': [
690 # This bot sets symbol_level=2, which doesn't fit inside a normal VM.
691 '--strip-chrome',
692 ],
693 },
694 },
695 },
Andrew Luod252791ac2019-10-15 00:28:13696 'chrome_java_test_pagecontroller_tests': {
Haiyang Panfbd2b482020-09-23 23:41:25697 'modifications': {
698 'android-pie-arm64-rel': {
699 # TODO(crbug.com/1111436): Move this back to walleye if/when additional
700 # capacity has been deployed.
701 'swarming': {
702 'dimension_sets': [
703 {
704 'device_type': 'sailfish',
705 },
706 ],
707 },
708 },
709 },
Andrew Luod252791ac2019-10-15 00:28:13710 },
Haiyang Pan6e42a5682021-01-29 21:48:05711 'chrome_modern_public_bundle_fake_modules_smoke_test': {
712 'remove_from': [
713 # Runs on android-marshmallow-x86-rel already (crbug.com/1127110)
714 'android-marshmallow-arm64-rel',
715 ],
716 },
Haiyang Panb4baf932021-01-26 03:35:01717 'chrome_modern_public_bundle_smoke_test': {
Haiyang Pan6e42a5682021-01-29 21:48:05718 'remove_from': [
719 # Runs on android-marshmallow-x86-rel already (crbug.com/1127110)
720 'android-marshmallow-arm64-rel',
721 ],
Haiyang Panb4baf932021-01-26 03:35:01722 },
Yun Liu7cfd28a2019-10-30 01:57:12723 'chrome_public_smoke_test': {
724 'remove_from': [
725 'android-code-coverage-native', # https://crbug.com/1018780
Haiyang Panb4baf932021-01-26 03:35:01726 # Runs on android-marshmallow-x86-rel already (crbug.com/1127110#c21)
727 'android-marshmallow-arm64-rel',
Yun Liu7cfd28a2019-10-30 01:57:12728 ],
729 },
Kenneth Russelleb60cbd22017-12-05 07:54:28730 'chrome_public_test_apk': {
John Budorick27d2d44e2019-05-20 20:26:09731 'remove_from': [
732 'android-asan', # https://crbug.com/964562
Yun Liu7cfd28a2019-10-30 01:57:12733 'android-code-coverage-native', # https://crbug.com/1018780
Haiyang Pana3ff55ae2020-04-23 18:26:54734 'android-lollipop-arm-rel', # https://crbug.com/1060245
John Budorick27d2d44e2019-05-20 20:26:09735 ],
Kenneth Russelleb60cbd22017-12-05 07:54:28736 'modifications': {
Natalie Chouinard48afb4352020-04-17 21:30:32737 'Android CFI': {
738 'args': [
739 '--exclude-annotation',
740 'Feature=RenderTest', # https://crbug.com/1068294
741 ],
742 },
Kenneth Russelleb60cbd22017-12-05 07:54:28743 'Marshmallow 64 bit Tester': {
744 'swarming': {
Kenneth Russelleb60cbd22017-12-05 07:54:28745 'shards': 14,
746 },
747 },
Arthur Wang5dd7b07c2020-04-04 01:05:22748 'Marshmallow Tablet Tester': {
749 'args': [
750 '--timeout-scale',
751 '2.0',
752 ],
753 },
Ben Pastenec73e96e92018-07-12 01:40:35754 'Oreo Phone Tester': {
bsheedy01833462018-12-07 01:05:57755 # TODO(https://crbug.com/884413): Re-enable this once the tests are
756 # either passing or there is more capacity.
757 'experiment_percentage': 0,
Ben Pastenec73e96e92018-07-12 01:40:35758 },
Stephen Martinis1384ff92020-01-07 19:52:15759 'android-arm64-proguard-rel': {
760 'swarming': {
761 'shards': 25,
762 },
763 },
Haiyang Pan1ad3bb032020-04-24 23:52:03764 'android-lollipop-arm-rel-swarming': {
Brian Sheedy44a7a0032020-04-16 19:20:57765 'swarming': {
Brian Sheedy180c2dd2020-04-22 19:34:31766 'service_account': '[email protected]'
Brian Sheedy44a7a0032020-04-16 19:20:57767 },
768 },
Stephen Martinis1384ff92020-01-07 19:52:15769 'android-marshmallow-arm64-rel': {
770 'swarming': {
771 'shards': 25,
772 },
773 },
Brian Sheedy44a7a0032020-04-16 19:20:57774 'android-marshmallow-arm64-rel-swarming': {
775 'swarming': {
Brian Sheedy180c2dd2020-04-22 19:34:31776 'service_account': '[email protected]'
Brian Sheedy44a7a0032020-04-16 19:20:57777 },
778 },
Haiyang Pan742760c2021-02-12 03:21:41779 'android-marshmallow-x86-rel': {
780 'args': [
781 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_m.chrome_public_test_apk.filter',
782 ],
783 'swarming': {
784 # TODO(crbug.com/1127110): Revisit shards and machine_type if there
785 # are n2 machines available in the test pool.
786 'shards': 25,
787 'dimension_sets': [
788 {
789 'machine_type': 'e2-standard-8', # use 8-core to shorten runtime
790 },
791 ],
792 },
793 # TODD(crbug.com/1127110): Remove experimental once it works fine.
Haiyang Pana4b003a22021-02-13 01:36:29794 'experiment_percentage': 100,
Haiyang Pan742760c2021-02-12 03:21:41795 },
Haiyang Pan765477d2020-09-22 17:59:55796 'android-marshmallow-x86-rel-non-cq': {
Haiyang Pan37fbd7a42020-06-03 03:27:37797 'args': [
798 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_m.chrome_public_test_apk.filter',
799 ],
800 },
Stephen Martinis1384ff92020-01-07 19:52:15801 'android-pie-arm64-rel': {
802 'args': [
803 '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_arm64_rel.chrome_public_test_apk.filter', # https://crbug.com/1010211
804 ],
Haiyang Pan43640ee2020-02-13 01:38:00805 },
Haiyang Pan08d09dc2020-04-01 16:11:21806 'android-pie-x86-rel': {
Haiyang Pan43640ee2020-02-13 01:38:00807 'args': [
Haiyang Pan71373072020-03-02 19:57:49808 '--avd-config=../../tools/android/avd/proto/generic_playstore_android28.textpb',
809 # https://crbug.com/1046059
Haiyang Pan23f64f52020-06-04 01:23:32810 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_p.chrome_public_test_apk.filter',
Haiyang Pan43640ee2020-02-13 01:38:00811 ],
Haiyang Pan71373072020-03-02 19:57:49812 'swarming': {
813 'named_caches': [
814 {
815 'name': 'avd_generic_playstore_android28',
816 'path': '.android',
817 },
818 {
819 'name': 'system_images_android_28_google_apis_playstore_x86',
820 'path': '.emulator_sdk',
821 },
Haiyang Pan980402822020-10-07 23:24:56822 ],
823 'dimension_sets': [
824 {
825 'machine_type': 'n1-standard-8', # use 8-core to shorten runtime
826 },
827 ],
Haiyang Pan71373072020-03-02 19:57:49828 },
John Budorick34009472018-04-03 17:38:44829 },
Kenneth Russelleb60cbd22017-12-05 07:54:28830 },
831 },
832 'chrome_public_test_vr_apk': {
Nico Weberb0b3f5862018-07-13 18:45:15833 'remove_from': [
Brian Sheedy29ac5692021-01-06 17:41:49834 # Decided to no longer run VR tests on L, crbug.com/1159619.
835 'Lollipop Phone Tester',
bsheedy410dd7c2018-06-15 22:42:09836 'Lollipop Tablet Tester',
837 'Marshmallow Tablet Tester',
Brian Sheedy29ac5692021-01-06 17:41:49838 'android-lollipop-arm-rel',
Haiyang Pan2486dcb2020-09-18 17:53:06839 'android-marshmallow-x86-rel-non-cq',
Haiyang Pan08d09dc2020-04-01 16:11:21840 'android-pie-x86-rel',
Andrew Luo38b311f2019-10-04 03:42:09841 'android-pie-arm64-rel', # https://crbug.com/1010211
bsheedydf58b4e2018-11-01 19:42:16842 'ToTAndroid',
843 'ToTAndroidCFI',
John Budorick27d2d44e2019-05-20 20:26:09844 'android-asan', # https://crbug.com/964562
Yun Liu7cfd28a2019-10-30 01:57:12845 'android-code-coverage-native', # https://crbug.com/1018780
bsheedy410dd7c2018-06-15 22:42:09846 ],
Haiyang Pan363c59a2020-07-23 05:47:04847 'modifications': {
Brian Sheedy4dc4a6f2020-09-17 22:18:50848 # Use "--remove-system-package" according to crbug.com/931947#c1
Haiyang Pan363c59a2020-07-23 05:47:04849 'android-nougat-arm64-rel': {
850 'args': [
Brian Sheedy4dc4a6f2020-09-17 22:18:50851 # Applying a mixin via an exception doesn't work, so manually apply
852 # the same arguments as the 'vr_instrumentation_test' mixin.
853 '--remove-system-package=com.google.vr.vrcore',
854 '--additional-apk=//third_party/gvr-android-sdk/test-apks/vr_services/vr_services_current.apk',
855 ],
Brian Sheedy4a652b72020-12-17 23:59:49856 },
Haiyang Pan363c59a2020-07-23 05:47:04857 },
Kenneth Russelleb60cbd22017-12-05 07:54:28858 },
bsheedy75a4dd52018-11-27 23:24:30859 'chrome_public_test_vr_apk-vega': {
860 'modifications': {
bsheedy75a4dd52018-11-27 23:24:30861 'Oreo Phone Tester': {
862 'swarming': {
863 'dimension_sets': [
864 {
865 'device_os': 'OVR1.180808.003',
866 'device_type': 'vega',
867 'os': 'Android',
868 },
869 ],
870 },
871 }
872 }
873 },
Ian Struiksmaeb285db02020-10-20 22:19:34874 'chrome_sizes': {
875 'modifications': {
876 'win-chrome': {
877 'swarming': {
878 # TODO(crbug.com/1124829): Remove this exception once pool
879 # chrome.tests is migrated to 1909.
880 'dimension_sets': [
881 {
882 'os': 'Windows-10-15063',
883 },
884 ],
885 },
886 },
887 'win64-chrome': {
888 'swarming': {
889 # TODO(crbug.com/1124829): Remove this exception once pool
890 # chrome.tests is migrated to 1909.
891 'dimension_sets': [
892 {
893 'os': 'Windows-10-15063',
894 },
895 ],
896 },
897 },
898 },
899 },
Takuto Ikuta1b749b902019-04-11 18:05:53900 'chromedriver_py_tests': {
901 'remove_from': [
902 # Timeout happens sometimes (crbug.com/951799).
Takuto Ikuta1b749b902019-04-11 18:05:53903 'Win10 Tests x64 (dbg)',
904 ],
905 },
Yun Liu3e759dbb2019-11-01 19:25:52906 'components_browsertests': {
907 'remove_from': [
908 'android-code-coverage-native', # crbug/1018434
909 ],
910 },
Kenneth Russelleb60cbd22017-12-05 07:54:28911 'components_unittests': {
Yun Liu3e759dbb2019-11-01 19:25:52912 'remove_from': [
Garrett Beaty47a2d802020-11-10 20:50:53913 # https://crbug.com/1147531 - covered on lollipop
914 'android-marshmallow-arm64-rel',
Stephen Roeac495972020-02-25 23:32:41915 'Fuchsia ARM64', # https://crbug.com/961457
Yun Liu16394ab32019-11-19 16:37:57916 'Fuchsia x64', # https://crbug.com/961457
Yun Liu3e759dbb2019-11-01 19:25:52917 'android-code-coverage-native', # crbug/1018431
Stephen Roe2cfe780f2020-07-13 21:52:51918 'fuchsia-fyi-arm64-dbg', # https://crbug.com/961457
Kevin Marshallce2afe1b2019-12-06 00:49:21919 'fuchsia-fyi-arm64-rel', # https://crbug.com/961457
920 'fuchsia-fyi-x64-dbg', # https://crbug.com/961457
921 'fuchsia-fyi-x64-rel', # https://crbug.com/961457
Yun Liu3e759dbb2019-11-01 19:25:52922 ],
Kenneth Russelleb60cbd22017-12-05 07:54:28923 'modifications': {
John Budorick5052d552017-12-13 02:59:34924 'Linux ASan LSan Tests (1)': {
925 # These are very slow on the ASAN trybot for some reason.
926 # crbug.com/794372
927 'swarming': {
928 'shards': 5,
929 },
930 },
Takuto Ikuta54671d972018-07-19 19:06:35931 'Linux Chromium OS ASan LSan Tests (1)': {
932 # These are very slow on the ASAN trybot for some reason.
933 # crbug.com/794372
934 'swarming': {
935 'shards': 5,
936 },
937 },
Erik Chen681dc0282019-11-26 22:54:49938 'Linux TSan Tests': {
939 'swarming': {
940 'shards': 2,
941 },
942 },
Omer Katz7d2be652020-01-22 18:13:46943 'linux-blink-heap-concurrent-marking-tsan-rel': {
944 'swarming': {
945 'shards': 2,
946 },
947 },
Sven Zheng80734f12020-08-06 06:50:39948 # https://crbug.com/1111979,
Sven Zheng19767e52020-08-24 23:33:40949 'linux-lacros-rel': {
950 'args': [
James Cookd98c3322021-01-28 17:35:34951 '--test-launcher-filter-file=../../testing/buildbot/filters/lacros.components_unittests.filter',
Sven Zheng19767e52020-08-24 23:33:40952 ],
953 },
954 # https://crbug.com/1111979,
Sven Zheng5c9d3e342020-08-11 21:39:43955 'linux-lacros-tester-rel': {
Sven Zheng5c9d3e342020-08-11 21:39:43956 'args': [
James Cookd98c3322021-01-28 17:35:34957 '--test-launcher-filter-file=../../testing/buildbot/filters/lacros.components_unittests.filter',
Sven Zheng5c9d3e342020-08-11 21:39:43958 ],
Sven Zheng80734f12020-08-06 06:50:39959 },
960 },
Sven Zheng577fe5ff2020-08-03 22:06:44961 },
Kenneth Russelleb60cbd22017-12-05 07:54:28962 'content_browsertests': {
Brad Halla36886c2019-02-26 16:52:29963 'remove_from': [
Brad Halla36886c2019-02-26 16:52:29964 'CrWinAsan(dll)', # https://crbug.com/935598
Yun Liu42f79ea2019-11-19 01:21:18965 'android-code-coverage-native', # crbug/1018434
Haiyang Pan62a7ae52020-11-19 23:54:55966 'android-lollipop-arm-rel', # crbug.com/1133002
Yuke Liaod7da81b2020-03-20 18:57:57967 # http://crbug.com/1060245#c30: due to low utility and capacity.
968 'android-marshmallow-arm64-rel',
Brad Halla36886c2019-02-26 16:52:29969 ],
Kenneth Russelleb60cbd22017-12-05 07:54:28970 'modifications': {
Kenneth Russellfbda3c532017-12-08 23:57:24971 'Cast Audio Linux': {
972 'args': [
Nico Weber02f30392018-07-16 18:39:43973 '--test-launcher-filter-file=../../testing/buildbot/filters/cast-linux.content_browsertests.filter',
Kenneth Russellfbda3c532017-12-08 23:57:24974 ],
Kenneth Russellfbda3c532017-12-08 23:57:24975 },
976 'Cast Linux': {
977 'args': [
Nico Weber02f30392018-07-16 18:39:43978 '--test-launcher-filter-file=../../testing/buildbot/filters/cast-linux.content_browsertests.filter',
Kenneth Russellfbda3c532017-12-08 23:57:24979 ],
Kenneth Russellfbda3c532017-12-08 23:57:24980 },
Erik Chenb681c8c2019-11-25 22:52:52981 'Linux ASan LSan Tests (1)': {
982 'swarming': {
983 'shards': 12,
984 },
985 },
Chris Cunninghame1a04ea2019-04-24 01:49:32986 'Linux ASan Tests (sandboxed)': {
987 'swarming': {
John Abd-El-Malek3a631612020-07-08 21:40:41988 'shards': 10, # https://crbug.com/1103330
Chris Cunninghame1a04ea2019-04-24 01:49:32989 },
990 },
Erik Chen681dc0282019-11-26 22:54:49991 'Linux TSan Tests': {
992 'swarming': {
993 'shards': 15,
994 },
995 },
Stephen Martinis1384ff92020-01-07 19:52:15996 'Lollipop Phone Tester': {
997 'swarming': {
Haiyang Panbbd866d2020-09-16 00:48:38998 'shards': 10,
Stephen Martinis1384ff92020-01-07 19:52:15999 },
1000 },
Sergey Silkinfe96b352020-10-19 20:41:341001 'Lollipop Tablet Tester': {
1002 'args': [
1003 '--test-launcher-filter-file=../../testing/buildbot/filters/android.lollipop_tablet_tester.content_browsertests.filter',
1004 ],
1005 },
1006 'Marshmallow Tablet Tester': {
1007 'args': [
1008 '--test-launcher-filter-file=../../testing/buildbot/filters/android.marshmallow_tablet_tester.content_browsertests.filter',
1009 ],
1010 },
Sergey Silkin1fe10e82020-10-30 19:36:581011 'WebRTC Chromium FYI Android Tests (dbg) (L Nexus5)': {
1012 'args': [
1013 '--test-launcher-filter-file=../../testing/buildbot/filters/chromium.webrtc.fyi.android.tests.dbg.content_browsertests.filter',
1014 ],
1015 },
1016 'WebRTC Chromium FYI Android Tests (dbg) (M Nexus5X)': {
1017 'args': [
1018 '--test-launcher-filter-file=../../testing/buildbot/filters/chromium.webrtc.fyi.android.tests.dbg.content_browsertests.filter',
1019 ],
1020 }
1021 ,
Stephen Martinis1384ff92020-01-07 19:52:151022 'Win10 Tests x64': {
1023 # crbug.com/868082
1024 'args': [
1025 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
1026 ],
1027 },
1028 'Win10 Tests x64 (dbg)': {
1029 'experiment_percentage': 100,
1030 # crbug.com/868082
1031 'args': [
1032 '--disable-features=WebRTC-H264WithOpenH264FFmpeg',
Stephen Martinis1384ff92020-01-07 19:52:151033 ],
1034 },
1035 'android-arm64-proguard-rel': {
1036 'swarming': {
1037 'shards': 16,
1038 },
1039 },
1040 'android-asan': {
1041 'args': [
1042 '--test-launcher-filter-file=../../testing/buildbot/filters/android.asan.content_browsertests.filter',
1043 ],
1044 'swarming': {
1045 'shards': 18,
1046 },
1047 },
Stephen Martinis1384ff92020-01-07 19:52:151048 'android-marshmallow-arm64-rel': {
1049 'swarming': {
1050 'shards': 16,
1051 },
1052 },
Haiyang Pan2486dcb2020-09-18 17:53:061053 'android-marshmallow-x86-rel-non-cq': {
John Budoricka4e23882020-02-28 18:36:431054 'args': [
Haiyang Pan12d5acd2020-06-01 20:54:571055 '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_m.content_browsertests.filter',
John Budoricka4e23882020-02-28 18:36:431056 ],
Haiyang Panc47f6d12020-08-19 18:34:491057 'swarming': {
1058 'shards': 20,
1059 },
John Budoricka4e23882020-02-28 18:36:431060 },
Haiyang Pan363c59a2020-07-23 05:47:041061 'android-nougat-arm64-rel': {
1062 'swarming': {
1063 'shards': 16,
1064 },
1065 # TODO(crbug.com/1108055): Remove this filter
1066 'args': [
1067 '--gtest_filter=-BackgroundTracingManagerBrowserTest.PerfettoSystemBackgroundScenario*',
1068 ],
1069 },
Haiyang Pan08d09dc2020-04-01 16:11:211070 'android-pie-x86-rel': {
John Budoricka4e23882020-02-28 18:36:431071 'args': [
Haiyang Pan12d5acd2020-06-01 20:54:57