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