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 | { |
Chong Gu | a10cd30 | 2022-01-14 19:22:19 | [diff] [blame] | 26 | 'accessibility_unittests':{ |
| 27 | 'modifications': { |
| 28 | 'fuchsia-fyi-x64-asan': { |
| 29 | 'args': [ |
| 30 | '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.lsan.accessibility_unittests.filter', |
| 31 | ], |
| 32 | }, |
| 33 | }, |
| 34 | }, |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 35 | 'android_browsertests': { |
| 36 | 'modifications': { |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 37 | 'android-11-x86-rel': { |
Haiyang Pan | 0ea9b3ef | 2022-01-21 21:58:14 | [diff] [blame] | 38 | 'args': [ |
| 39 | # https://crbug.com/1289764 |
| 40 | '--gtest_filter=-All/ChromeBrowsingDataLifetimeManagerScheduledRemovalTest.History/*', |
| 41 | ], |
Haiyang Pan | ca7fcec | 2021-03-19 02:11:10 | [diff] [blame] | 42 | 'swarming': { |
| 43 | 'shards': 2, |
| 44 | }, |
| 45 | }, |
Struan Shrimpton | e772d72f | 2021-12-15 07:50:09 | [diff] [blame] | 46 | 'android-marshmallow-arm64-rel': { |
| 47 | 'swarming': { |
Struan Shrimpton | 4b7abc0 | 2021-12-16 01:36:59 | [diff] [blame] | 48 | 'quickrun_shards': 3, |
Struan Shrimpton | e772d72f | 2021-12-15 07:50:09 | [diff] [blame] | 49 | }, |
| 50 | }, |
Greg Guterman | ea66116 | 2021-11-17 00:46:43 | [diff] [blame] | 51 | 'android-marshmallow-arm64-rel-rts': { |
| 52 | 'swarming': { |
| 53 | 'shards': 2, |
| 54 | }, |
| 55 | }, |
Haiyang Pan | b991f56 | 2021-08-10 17:46:46 | [diff] [blame] | 56 | 'android-marshmallow-x86-rel': { |
| 57 | 'swarming': { |
| 58 | 'shards': 2, |
Struan Shrimpton | 4b7abc0 | 2021-12-16 01:36:59 | [diff] [blame] | 59 | 'quickrun_shards': 6, |
Haiyang Pan | b991f56 | 2021-08-10 17:46:46 | [diff] [blame] | 60 | }, |
| 61 | }, |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 62 | 'android-pie-arm64-rel': { |
Andrew Luo | be83fd8 | 2019-12-19 03:07:58 | [diff] [blame] | 63 | 'args': [ |
| 64 | '--gtest_filter=-ImportantSitesUtilBrowserTest.DSENotConsideredImportantInRegularMode', # https://crbug.com/1034001 |
| 65 | ], |
Haiyang Pan | fbd2b48 | 2020-09-23 23:41:25 | [diff] [blame] | 66 | # TODO(crbug.com/1111436): Move this back to walleye if/when additional |
| 67 | # capacity has been deployed. |
| 68 | 'swarming': { |
| 69 | 'dimension_sets': [ |
| 70 | { |
| 71 | 'device_type': 'sailfish', |
| 72 | }, |
| 73 | ], |
Haiyang Pan | 1678f0c0 | 2021-03-09 23:05:09 | [diff] [blame] | 74 | 'shards': 2, |
Struan Shrimpton | 4b7abc0 | 2021-12-16 01:36:59 | [diff] [blame] | 75 | 'quickrun_shards': 6, |
Haiyang Pan | fbd2b48 | 2020-09-23 23:41:25 | [diff] [blame] | 76 | }, |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 77 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 78 | 'android-pie-x86-rel': { |
John Budorick | 191adfcd | 2020-01-29 18:19:04 | [diff] [blame] | 79 | 'args': [ |
| 80 | '--gtest_filter=-ImportantSitesUtilBrowserTest.DSENotConsideredImportantInRegularMode', # https://crbug.com/1034001 |
| 81 | ], |
Haiyang Pan | 7cd609d | 2021-04-08 20:17:24 | [diff] [blame] | 82 | 'swarming': { |
| 83 | 'shards': 2, |
| 84 | }, |
John Budorick | 191adfcd | 2020-01-29 18:19:04 | [diff] [blame] | 85 | }, |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 86 | }, |
| 87 | }, |
Sven Zheng | c60debc | 2020-09-10 18:40:52 | [diff] [blame] | 88 | 'android_sync_integration_tests': { |
| 89 | 'remove_from': [ |
Haiyang Pan | 6b8e4cf | 2021-08-02 21:38:28 | [diff] [blame] | 90 | # Remove from CQ bots due to capacity. |
| 91 | 'android-marshmallow-arm64-rel', |
Greg Guterman | ea66116 | 2021-11-17 00:46:43 | [diff] [blame] | 92 | 'android-marshmallow-arm64-rel-rts', |
Sven Zheng | c60debc | 2020-09-10 18:40:52 | [diff] [blame] | 93 | ], |
| 94 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 95 | 'android_webview_unittests': { |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 96 | }, |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 97 | 'angle_end2end_tests': { |
Yuly Novikov | 60cbf64 | 2020-11-19 20:43:15 | [diff] [blame] | 98 | 'modifications': { |
Yuly Novikov | 80d2e67 | 2021-02-13 00:16:04 | [diff] [blame] | 99 | 'win10-angle-x64-intel': { |
| 100 | 'args': [ |
| 101 | '--max-processes=1', |
| 102 | ], |
| 103 | }, |
Yuly Novikov | 60cbf64 | 2020-11-19 20:43:15 | [diff] [blame] | 104 | }, |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 105 | }, |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 106 | 'angle_unittests': { |
| 107 | 'remove_from': [ |
| 108 | # On Android, these are already run on the main waterfall. |
| 109 | 'Android FYI Release (Nexus 5X)', |
Yuly Novikov | c1117ae8 | 2021-01-15 22:33:36 | [diff] [blame] | 110 | # Times out listing tests crbug.com/1167314 |
| 111 | 'android-asan', |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 112 | # Does not currently work on Lacros configurations. |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 113 | 'linux-lacros-code-coverage', |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 114 | 'linux-lacros-tester-rel', |
| 115 | 'linux-lacros-tester-fyi-rel', |
Yuke Liao | f27ebe5 | 2021-08-05 22:12:40 | [diff] [blame] | 116 | 'linux-lacros-dbg-tests-fyi', |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 117 | ], |
Chong Gu | a10cd30 | 2022-01-14 19:22:19 | [diff] [blame] | 118 | 'modifications': { |
| 119 | # anglebug.com/6894 |
| 120 | 'fuchsia-fyi-x64-asan': { |
| 121 | 'args': [ |
| 122 | # crbug.com/ |
| 123 | '--gtest_filter=-ConstructCompilerTest.DefaultParameters', |
| 124 | ], |
| 125 | }, |
| 126 | }, |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 127 | }, |
| 128 | 'angle_white_box_tests': { |
Yuly Novikov | 60cbf64 | 2020-11-19 20:43:15 | [diff] [blame] | 129 | 'modifications': { |
Yuly Novikov | 80d2e67 | 2021-02-13 00:16:04 | [diff] [blame] | 130 | 'win10-angle-x64-intel': { |
| 131 | 'args': [ |
| 132 | '--max-processes=1', |
| 133 | ], |
| 134 | }, |
Yuly Novikov | 60cbf64 | 2020-11-19 20:43:15 | [diff] [blame] | 135 | }, |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 136 | }, |
Yuke Liao | b6beaeca | 2021-04-29 23:41:51 | [diff] [blame] | 137 | 'aura_unittests_amd64-generic': { |
| 138 | 'remove_from': [ |
| 139 | # TODO(crbug.com/1204231): Re-enable. |
| 140 | 'lacros-amd64-generic-rel', |
| 141 | ] |
| 142 | }, |
Yuke Liao | 79a8cf5 | 2021-06-11 18:14:34 | [diff] [blame] | 143 | 'aura_unittests_eve': { |
| 144 | 'remove_from': [ |
| 145 | # TODO(crbug.com/1204231): Re-enable. |
| 146 | 'lacros-amd64-generic-rel', |
| 147 | ] |
| 148 | }, |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 149 | 'base_unittests': { |
| 150 | 'modifications': { |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 151 | 'android-11-x86-rel': { |
Haiyang Pan | c7c009e | 2021-03-18 19:31:23 | [diff] [blame] | 152 | 'args': [ |
Haiyang Pan | c08d0221 | 2021-10-18 18:58:38 | [diff] [blame] | 153 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.base_unittests.filter', |
| 154 | ], |
| 155 | }, |
| 156 | 'android-12-x64-fyi-rel': { |
| 157 | 'args': [ |
| 158 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.base_unittests.filter', |
| 159 | '--gtest_filter=-ModuleCacheTest.CheckAgainstProcMaps', # crbug.com/1260521 |
Haiyang Pan | c7c009e | 2021-03-18 19:31:23 | [diff] [blame] | 160 | ], |
| 161 | }, |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 162 | 'fuchsia-code-coverage': { |
| 163 | 'swarming': { |
| 164 | 'shards': 5, |
| 165 | }, |
| 166 | }, |
Chong Gu | a10cd30 | 2022-01-14 19:22:19 | [diff] [blame] | 167 | 'fuchsia-fyi-x64-asan': { |
| 168 | 'args': [ |
| 169 | '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.lsan.base_unittests.filter', |
| 170 | ], |
| 171 | }, |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 172 | }, |
| 173 | }, |
Haiyang Pan | 363c59a | 2020-07-23 05:47:04 | [diff] [blame] | 174 | 'blink_platform_unittests': { |
| 175 | 'modifications': { |
Haiyang Pan | fbd2b48 | 2020-09-23 23:41:25 | [diff] [blame] | 176 | 'android-pie-arm64-rel': { |
| 177 | # TODO(crbug.com/1111436): Move this back to walleye if/when additional |
| 178 | # capacity has been deployed. |
| 179 | 'swarming': { |
| 180 | 'dimension_sets': [ |
| 181 | { |
| 182 | 'device_type': 'sailfish', |
| 183 | }, |
| 184 | ], |
| 185 | }, |
| 186 | }, |
Chong Gu | 5248145 | 2021-04-02 17:52:41 | [diff] [blame] | 187 | 'fuchsia-code-coverage': { |
| 188 | 'swarming': { |
| 189 | 'shards': 5, |
| 190 | }, |
| 191 | }, |
Haiyang Pan | 363c59a | 2020-07-23 05:47:04 | [diff] [blame] | 192 | }, |
| 193 | }, |
Chong Gu | 7604641 | 2021-09-22 17:49:21 | [diff] [blame] | 194 | 'blink_unittests': { |
Chong Gu | c2d145e | 2021-03-31 19:55:34 | [diff] [blame] | 195 | 'modifications': { |
| 196 | 'fuchsia-code-coverage': { |
| 197 | 'swarming': { |
| 198 | 'shards': 30, |
| 199 | }, |
| 200 | }, |
| 201 | }, |
| 202 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 203 | 'blink_web_tests': { |
| 204 | 'remove_from': [ |
Ilia Samsonov | ca3dfd5 | 2020-08-07 18:39:01 | [diff] [blame] | 205 | 'Mac10.11 Tests', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 206 | 'Win 7 Tests x64 (1)', # 64-bit win is unsupported by the layout tests. |
| 207 | 'Win10 Tests x64 (dbg)', |
| 208 | ], |
| 209 | 'modifications': { |
| 210 | 'Fuchsia x64': { |
| 211 | 'args': [ |
| 212 | '--platform=fuchsia', |
Weizhong Xia | 3fdef5ca | 2022-01-04 21:50:20 | [diff] [blame] | 213 | '--jobs=1', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 214 | ], |
| 215 | 'swarming': { |
| 216 | 'shards': 1, |
| 217 | }, |
| 218 | }, |
| 219 | 'Linux Tests': { |
| 220 | "args": [ |
| 221 | "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw", |
| 222 | ], |
Struan Shrimpton | 57c594e4 | 2022-01-25 17:59:13 | [diff] [blame] | 223 | 'swarming': { |
| 224 | 'quickrun_shards': 18, |
| 225 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 226 | }, |
| 227 | 'Linux Tests (dbg)(1)': { |
| 228 | 'args': [ |
| 229 | '--debug', |
| 230 | ], |
| 231 | 'swarming': { |
Sven Zheng | 439fcdf | 2021-07-13 20:14:57 | [diff] [blame] | 232 | 'shards': 30, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 233 | }, |
| 234 | }, |
Xianzhu Wang | e6dec15 | 2021-08-02 19:54:53 | [diff] [blame] | 235 | 'Mac10.12 Tests': { |
| 236 | 'swarming': { |
| 237 | 'shards': 25, |
| 238 | }, |
| 239 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 240 | 'Mac10.13 Tests': { |
| 241 | 'swarming': { |
| 242 | 'dimension_sets': [ |
| 243 | { |
Erik Staab | 59591f3 | 2020-08-25 23:07:07 | [diff] [blame] | 244 | 'gpu': None, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 245 | }, |
| 246 | ], |
| 247 | 'shards': 25, |
| 248 | }, |
| 249 | }, |
Zhaoyang Li | 69e2e00 | 2021-02-19 21:57:35 | [diff] [blame] | 250 | 'Mac10.15 Tests': { |
| 251 | 'swarming': { |
| 252 | 'dimension_sets': [ |
| 253 | { |
| 254 | 'gpu': None, |
| 255 | }, |
| 256 | ], |
| 257 | 'shards': 25, |
| 258 | }, |
| 259 | }, |
Lindsay Pasricha | 8d9a0c3 | 2021-12-08 17:08:29 | [diff] [blame] | 260 | 'Mac11 Tests': { |
| 261 | 'swarming': { |
| 262 | 'dimension_sets': [ |
| 263 | { |
| 264 | 'gpu': None, |
| 265 | }, |
| 266 | ], |
| 267 | 'shards': 25, |
Struan Shrimpton | 57c594e4 | 2022-01-25 17:59:13 | [diff] [blame] | 268 | 'quickrun_shards': 26, |
Lindsay Pasricha | 8d9a0c3 | 2021-12-08 17:08:29 | [diff] [blame] | 269 | }, |
| 270 | }, |
Zhaoyang Li | 9357e1e1 | 2021-12-07 18:53:17 | [diff] [blame] | 271 | 'Mac11 Tests (dbg)': { |
| 272 | 'experiment_percentage': 100, |
| 273 | 'args': [ |
| 274 | '--debug', |
| 275 | ], |
| 276 | 'swarming': { |
| 277 | 'shards': 40, |
| 278 | }, |
| 279 | }, |
Chong Gu | 75af969a | 2021-03-22 14:46:14 | [diff] [blame] | 280 | 'ToTFuchsia x64': { |
| 281 | 'args': [ |
| 282 | '--platform=fuchsia', |
| 283 | ], |
| 284 | 'swarming': { |
| 285 | 'shards': 1, |
| 286 | }, |
| 287 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 288 | 'V8 Blink Linux Debug': { |
Michael Achenbach | 455d3924 | 2020-06-22 13:33:45 | [diff] [blame] | 289 | # This builder compiles Chromium in release mode, but V8 in debug. |
| 290 | # TODO(machenbach): Change name and out directory of this builder to |
| 291 | # something less confusing. |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 292 | 'args': [ |
Michael Achenbach | 455d3924 | 2020-06-22 13:33:45 | [diff] [blame] | 293 | '-t', |
| 294 | 'Debug', |
| 295 | '--release', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 296 | ], |
| 297 | }, |
| 298 | 'V8 Blink Linux Future': { |
| 299 | 'args': [ |
Brian Sheedy | 10ddf0a | 2021-08-16 23:19:07 | [diff] [blame] | 300 | '--flag-specific=future-js', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 301 | ], |
| 302 | }, |
| 303 | 'WebKit Linux ASAN': { |
| 304 | 'args': [ |
| 305 | '--additional-expectations', |
| 306 | '../../third_party/blink/web_tests/ASANExpectations', |
Weizhong Xia | 91b5336 | 2022-01-05 17:13:35 | [diff] [blame] | 307 | '--timeout-ms', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 308 | '48000', |
| 309 | '--enable-sanitizer', |
| 310 | ], |
| 311 | 'swarming': { |
| 312 | 'shards': 20, |
| 313 | }, |
| 314 | }, |
| 315 | 'WebKit Linux Leak': { |
| 316 | 'args': [ |
| 317 | '--additional-expectations', |
| 318 | '../../third_party/blink/web_tests/LeakExpectations', |
Weizhong Xia | 91b5336 | 2022-01-05 17:13:35 | [diff] [blame] | 319 | '--timeout-ms', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 320 | '48000', |
| 321 | '--enable-leak-detection', |
| 322 | ], |
| 323 | 'swarming': { |
| 324 | 'shards': 10, |
| 325 | }, |
| 326 | }, |
| 327 | 'WebKit Linux MSAN': { |
| 328 | 'args': [ |
| 329 | '--additional-expectations', |
| 330 | '../../third_party/blink/web_tests/MSANExpectations', |
Weizhong Xia | 91b5336 | 2022-01-05 17:13:35 | [diff] [blame] | 331 | '--timeout-ms', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 332 | '66000', |
| 333 | '--enable-sanitizer', |
| 334 | ], |
| 335 | 'swarming': { |
| 336 | 'expiration': 36000, |
| 337 | 'hard_timeout': 10800, |
| 338 | 'io_timeout': 3600, |
| 339 | 'shards': 20, |
| 340 | }, |
| 341 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 342 | 'WebKit Linux layout_ng_disabled Builder': { |
| 343 | 'args': [ |
Brian Sheedy | 10ddf0a | 2021-08-16 23:19:07 | [diff] [blame] | 344 | '--flag-specific=disable-layout-ng', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 345 | ], |
Stephen Martinis | 6eb8a557 | 2021-03-02 00:23:08 | [diff] [blame] | 346 | 'swarming': { |
| 347 | 'shards': 20, |
| 348 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 349 | }, |
| 350 | 'Win10 Tests x64': { |
| 351 | 'args': [ |
| 352 | '--target', |
Takuto Ikuta | b28b582e | 2021-02-10 01:41:21 | [diff] [blame] | 353 | 'Release_x64', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 354 | ], |
| 355 | 'swarming': { |
| 356 | "shards": 28 |
| 357 | }, |
| 358 | }, |
| 359 | 'Win10 Tests x64 (dbg)': { |
| 360 | 'args': [ |
| 361 | '--debug', |
| 362 | '--target', |
Takuto Ikuta | b28b582e | 2021-02-10 01:41:21 | [diff] [blame] | 363 | 'Debug_x64', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 364 | ], |
| 365 | }, |
Kuan Huang | a89737d | 2022-01-07 19:42:11 | [diff] [blame] | 366 | 'Win11 Tests x64': { |
| 367 | 'args': [ |
| 368 | '--target', |
| 369 | 'Release_x64', |
| 370 | ], |
| 371 | 'swarming': { |
| 372 | "shards": 28 |
| 373 | }, |
| 374 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 375 | 'Win7 Tests (dbg)(1)': { |
| 376 | 'args': [ |
| 377 | '--debug', |
Weizhong Xia | 91b5336 | 2022-01-05 17:13:35 | [diff] [blame] | 378 | '--timeout-ms', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 379 | '60000' |
| 380 | ], |
| 381 | 'experiment_percentage': 100, |
| 382 | # TODO(kbr): the "Windows-7-SP1" Swarming dimension set is implicit, |
| 383 | # from prefered_os_dimension in |
| 384 | # tools/build/scripts/slave/recipe_modules/swarming/api.py. Ideally, |
| 385 | # Swarming dimensions would be either specified for all testers on the |
| 386 | # waterfall (and therefore, explicitly specified for all tests in the |
| 387 | # generated JSON), or this would be removed, and the implicit one used. |
| 388 | 'swarming': { |
| 389 | 'dimension_sets': [ |
| 390 | { |
| 391 | 'os': 'Windows-7-SP1', |
| 392 | } |
| 393 | ], |
| 394 | }, |
| 395 | }, |
| 396 | # tryserver.chromium.android |
| 397 | 'android_blink_rel': { |
| 398 | 'args': [ |
| 399 | '--release', |
| 400 | '--android', |
| 401 | # TODO(crbug.com/912120): Breakpad was entirely disabled on |
| 402 | # Android. Remove this when it no longer affects Android crash |
| 403 | # log handling. |
| 404 | '--disable-breakpad', |
| 405 | # TODO(crbug.com/875172): run on the real GPU since the |
| 406 | # software fallback, SwiftShader, isn't yet for 32-bit ARM. |
| 407 | '--additional-driver-flag=--use-gpu-in-tests', |
| 408 | ], |
| 409 | }, |
| 410 | 'devtools_frontend_linux_blink_light_rel': { |
| 411 | 'args': [ |
| 412 | 'http/tests/devtools', |
| 413 | ], |
| 414 | 'swarming': { |
| 415 | 'shards': 4, |
| 416 | }, |
| 417 | }, |
Takuto Ikuta | bace8f8 | 2022-01-26 23:47:47 | [diff] [blame] | 418 | 'devtools_frontend_linux_blink_light_rel_fastbuild': { |
| 419 | 'args': [ |
| 420 | 'http/tests/devtools', |
| 421 | ], |
| 422 | 'swarming': { |
| 423 | 'shards': 4, |
| 424 | }, |
| 425 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 426 | 'fuchsia-fyi-x64-rel': { |
| 427 | 'args': [ |
| 428 | '--platform=fuchsia', |
| 429 | ], |
| 430 | 'swarming': { |
| 431 | 'shards': 1, |
| 432 | }, |
| 433 | }, |
Mathias Carlen | 30968a6 | 2020-03-31 08:47:04 | [diff] [blame] | 434 | 'linux-autofill-assistant': { |
| 435 | 'args': [ |
| 436 | '--release', |
| 437 | ], |
| 438 | }, |
Yuzu Saijo | 9709bcc | 2020-03-18 09:12:20 | [diff] [blame] | 439 | 'linux-bfcache-rel': { |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 440 | 'args': [ |
Brian Sheedy | 10ddf0a | 2021-08-16 23:19:07 | [diff] [blame] | 441 | '--flag-specific=enable-back-forward-cache-same-site', |
Hiroshige Hayashizaki | 7012037 | 2021-10-04 07:24:30 | [diff] [blame] | 442 | # TODO(crbug.com/1255537): Re-enable the test. |
| 443 | '--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] | 444 | ], |
| 445 | }, |
| 446 | 'linux-blink-animation-use-time-delta': { |
| 447 | 'args': [ |
| 448 | '--debug', |
| 449 | ], |
| 450 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 451 | 'linux-blink-heap-concurrent-marking-tsan-rel': { |
| 452 | 'args': [ |
| 453 | '--release', |
Brian Sheedy | 10ddf0a | 2021-08-16 23:19:07 | [diff] [blame] | 454 | '--flag-specific=enable-blink-heap-concurrent-marking', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 455 | ], |
| 456 | }, |
Daniel Libby | 178c983 | 2020-10-08 20:36:14 | [diff] [blame] | 457 | 'linux-blink-web-tests-force-accessibility-rel': { |
| 458 | 'args': [ |
Brian Sheedy | 10ddf0a | 2021-08-16 23:19:07 | [diff] [blame] | 459 | '--flag-specific=force-renderer-accessibility', |
Daniel Libby | 178c983 | 2020-10-08 20:36:14 | [diff] [blame] | 460 | ], |
| 461 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 462 | 'linux-code-coverage': { |
| 463 | 'args': [ |
| 464 | '--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw', |
| 465 | ], |
| 466 | 'swarming': { |
| 467 | 'shards': 20, |
| 468 | }, |
| 469 | }, |
Aaron Gable | 40f79aa | 2020-03-21 01:21:15 | [diff] [blame] | 470 | 'linux-layout-tests-edit-ng': { |
| 471 | 'args': [ |
Brian Sheedy | 10ddf0a | 2021-08-16 23:19:07 | [diff] [blame] | 472 | '--flag-specific=enable-editing-ng', |
Aaron Gable | 40f79aa | 2020-03-21 01:21:15 | [diff] [blame] | 473 | ], |
| 474 | }, |
Stephanie Kim | 5c7f31d | 2021-04-27 18:00:06 | [diff] [blame] | 475 | 'linux-xenial-rel': { |
| 476 | "args": [ |
| 477 | "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw", |
| 478 | ], |
| 479 | }, |
Lindsay Pasricha | 60535a2 | 2021-12-13 16:50:24 | [diff] [blame] | 480 | # TODO (crbug.com/1254971) Re-enable once fixed |
| 481 | 'mac-osxbeta-rel': { |
| 482 | 'experiment_percentage': 0, |
| 483 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 484 | 'mac10.12-blink-rel-dummy': { |
| 485 | 'swarming': { |
| 486 | 'shards': 20, |
| 487 | }, |
| 488 | }, |
| 489 | 'mac10.13-blink-rel-dummy': { |
| 490 | 'swarming': { |
| 491 | 'shards': 20, |
| 492 | }, |
| 493 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 494 | 'mac10.14-blink-rel-dummy': { |
| 495 | 'swarming': { |
Xinan Lin | d2f9171 | 2021-04-29 21:13:56 | [diff] [blame] | 496 | # Increase timeout and reduce shards. |
| 497 | # See https://crbug.com/1203565. |
| 498 | 'shards': 12, |
| 499 | 'hard_timeout': 1800, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 500 | }, |
| 501 | }, |
Ilia Samsonov | 7efe05e | 2020-05-07 19:00:46 | [diff] [blame] | 502 | 'mac10.15-blink-rel-dummy': { |
| 503 | 'swarming': { |
| 504 | 'shards': 20, |
| 505 | }, |
| 506 | }, |
Ilia Samsonov | dd271c6c2 | 2020-09-08 22:24:44 | [diff] [blame] | 507 | 'mac11.0-blink-rel-dummy': { |
| 508 | 'swarming': { |
Dirk Pranke | 2cc6179 | 2021-06-10 20:24:54 | [diff] [blame] | 509 | 'shards': 12, |
| 510 | 'hard_timeout': 1800, |
Ilia Samsonov | dd271c6c2 | 2020-09-08 22:24:44 | [diff] [blame] | 511 | }, |
| 512 | }, |
Preethi Mohan | d030de4 | 2021-07-22 21:12:13 | [diff] [blame] | 513 | 'win10.20h2-blink-rel-dummy': { |
| 514 | 'swarming': { |
Preethi Mohan | d044dd0 | 2021-09-06 15:59:42 | [diff] [blame] | 515 | 'shards': 14, |
Preethi Mohan | d030de4 | 2021-07-22 21:12:13 | [diff] [blame] | 516 | 'hard_timeout': 1200, |
| 517 | }, |
| 518 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 519 | }, |
| 520 | }, |
John Budorick | ca99585 | 2019-06-26 16:55:55 | [diff] [blame] | 521 | 'breakpad_unittests': { |
| 522 | 'modifications': { |
| 523 | 'android-asan': { |
| 524 | 'args': [ |
| 525 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.asan.breakpad_unittests.filter', |
| 526 | ], |
| 527 | }, |
| 528 | }, |
| 529 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 530 | 'browser_tests': { |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 531 | 'remove_from': [ |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 532 | 'CrWinAsan(dll)', # https://crbug.com/935598 |
Nico Weber | 3af4da7 | 2018-02-27 01:59:41 | [diff] [blame] | 533 | 'linux-win_cross-rel', |
Nico Weber | dae13cd9 | 2018-12-14 13:56:26 | [diff] [blame] | 534 | 'ToTLinuxTSan', # https://crbug.com/368525 |
Scott Violet | 3bd7ddbb | 2022-01-15 00:04:20 | [diff] [blame] | 535 | 'Mac10.11 Tests', # https://crbug.com/1263696 |
Lindsay Pasricha | b3f72db | 2021-09-22 22:05:46 | [diff] [blame] | 536 | # 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] | 537 | # off CQ. |
Gary Tong | d5f5a74 | 2021-01-29 00:01:13 | [diff] [blame] | 538 | 'Mac10.13 Tests', # https://crbug.com/1042757 |
Zhaoyang Li | 69e2e00 | 2021-02-19 21:57:35 | [diff] [blame] | 539 | 'Mac10.15 Tests', # https://crbug.com/1042757 |
Zhaoyang Li | 9357e1e1 | 2021-12-07 18:53:17 | [diff] [blame] | 540 | 'Mac11 Tests (dbg)', # https://crbug.com/1201386 |
Lindsay Pasricha | 8155d05 | 2021-04-22 00:06:43 | [diff] [blame] | 541 | 'mac-code-coverage', # https://crbug.com/1201386 |
Nico Weber | d3695968 | 2018-04-12 03:33:46 | [diff] [blame] | 542 | 'Linux TSan Tests', # https://crbug.com/368525 |
Stephen Martinis | e701f5a | 2018-05-04 01:25:11 | [diff] [blame] | 543 | 'Win10 Tests x64 (dbg)', |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 544 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 545 | 'modifications': { |
Nico Weber | 3f91979 | 2020-06-12 23:34:52 | [diff] [blame] | 546 | 'CrWinAsan': { |
| 547 | # These are very slow on the ASAN trybot for some reason. |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 548 | # crbug.com/1257927 |
Nico Weber | 3f91979 | 2020-06-12 23:34:52 | [diff] [blame] | 549 | 'swarming': { |
| 550 | 'shards': 40, |
| 551 | }, |
| 552 | }, |
| 553 | 'CrWinAsan(dll)': { |
| 554 | # These are very slow on the ASAN trybot for some reason. |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 555 | # crbug.com/1257927 |
Nico Weber | 3f91979 | 2020-06-12 23:34:52 | [diff] [blame] | 556 | 'swarming': { |
| 557 | 'shards': 40, |
| 558 | }, |
| 559 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 560 | 'Linux - Future (dbg)': { # client.v8.chromium |
Yuke Liao | ea70f47 | 2019-12-19 06:03:36 | [diff] [blame] | 561 | 'swarming': { |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 562 | 'shards': 10, |
Yuke Liao | ea70f47 | 2019-12-19 06:03:36 | [diff] [blame] | 563 | }, |
| 564 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 565 | 'Linux ASan LSan Tests (1)': { |
| 566 | # These are very slow on the ASAN trybot for some reason. |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 567 | # crbug.com/1257927 |
Roberto Carrillo | 2c9ec97 | 2019-03-20 03:11:19 | [diff] [blame] | 568 | 'swarming': { |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 569 | 'shards': 40, |
Struan Shrimpton | e772d72f | 2021-12-15 07:50:09 | [diff] [blame] | 570 | 'quickrun_shards': 80 |
Roberto Carrillo | 2c9ec97 | 2019-03-20 03:11:19 | [diff] [blame] | 571 | }, |
| 572 | }, |
Chris Cunningham | 1d0e9e1 | 2020-02-26 22:56:40 | [diff] [blame] | 573 | 'Linux ASan Tests (sandboxed)': { |
| 574 | 'swarming': { |
John Abd-El-Malek | 3a63161 | 2020-07-08 21:40:41 | [diff] [blame] | 575 | 'shards': 30, # https://crbug.com/1103330 |
Chris Cunningham | 1d0e9e1 | 2020-02-26 22:56:40 | [diff] [blame] | 576 | }, |
| 577 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 578 | 'Linux Chromium OS ASan LSan Tests (1)': { |
| 579 | # These are very slow on the ASAN trybot for some reason. |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 580 | # crbug.com/1257927 |
Roberto Carrillo | 5a5c98dc | 2019-10-30 22:33:51 | [diff] [blame] | 581 | 'swarming': { |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 582 | 'shards': 50, |
Roberto Carrillo | 5a5c98dc | 2019-10-30 22:33:51 | [diff] [blame] | 583 | }, |
| 584 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 585 | 'Linux ChromiumOS MSan Tests': { |
| 586 | # These are very slow on the Chrome OS MSAN trybot for some reason. |
| 587 | # crbug.com/865455 |
Kenneth Russell | 56a3e86 | 2017-12-08 03:11:34 | [diff] [blame] | 588 | 'swarming': { |
Ben Pastene | 44221d3 | 2020-05-21 23:38:36 | [diff] [blame] | 589 | 'shards': 32, |
Kenneth Russell | 56a3e86 | 2017-12-08 03:11:34 | [diff] [blame] | 590 | }, |
Ben Pastene | 44221d3 | 2020-05-21 23:38:36 | [diff] [blame] | 591 | 'args': [ |
| 592 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.msan.browser_tests.oobe_negative.filter', |
| 593 | ], |
Kenneth Russell | 56a3e86 | 2017-12-08 03:11:34 | [diff] [blame] | 594 | }, |
Struan Shrimpton | f5b2b55 | 2022-01-20 20:37:39 | [diff] [blame] | 595 | 'Linux Tests': { |
| 596 | 'swarming': { |
| 597 | 'quickrun_shards': 15, |
| 598 | }, |
| 599 | }, |
Maksim Sisov | c81d284c | 2021-10-05 17:54:35 | [diff] [blame] | 600 | # https://crbug.com/1084469 |
| 601 | 'Linux Tests (Wayland)': { |
| 602 | 'args': [ |
| 603 | '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.wayland_browser_tests.filter', |
| 604 | ], |
Struan Shrimpton | e772d72f | 2021-12-15 07:50:09 | [diff] [blame] | 605 | 'swarming': { |
| 606 | 'quickrun_shards': 24, |
| 607 | }, |
Maksim Sisov | c81d284c | 2021-10-05 17:54:35 | [diff] [blame] | 608 | }, |
John Budorick | 614f91a | 2020-03-30 20:34:55 | [diff] [blame] | 609 | 'Linux Tests (dbg)(1)': { |
| 610 | # crbug.com/1066161 |
| 611 | 'swarming': { |
| 612 | 'shards': 20, |
| 613 | }, |
| 614 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 615 | 'Mac ASan 64 Tests (1)': { |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 616 | 'swarming': { |
Stephen Martinis | cd3c383 | 2020-11-19 22:01:24 | [diff] [blame] | 617 | 'shards': 30, |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 618 | }, |
Lindsay Pasricha | 8155d05 | 2021-04-22 00:06:43 | [diff] [blame] | 619 | # crbug.com/1196416 |
| 620 | 'args': [ |
| 621 | '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac-rel.browser_tests.filter', |
| 622 | ], |
Lindsay Pasricha | b3f72db | 2021-09-22 22:05:46 | [diff] [blame] | 623 | 'experiment_percentage': 100, # https://crbug.com/1251657 |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 624 | }, |
Sven Zheng | 3f1462569 | 2021-08-24 06:28:27 | [diff] [blame] | 625 | # TODO(crbug.com/1232535) Remove once the bug is resolved. |
| 626 | 'Mac10.11 Tests': { |
| 627 | 'args': [ |
| 628 | '--test-launcher-print-timestamps', |
| 629 | ], |
| 630 | }, |
Lindsay Pasricha | 76f44d2 | 2021-04-07 16:16:26 | [diff] [blame] | 631 | 'Mac10.15 Tests': { |
| 632 | # crbug.com/1042757 |
| 633 | 'swarming': { |
| 634 | 'dimension_sets': [ |
| 635 | { |
| 636 | # These shards are liable to time out when running on macmini7,1. |
| 637 | 'cores': '8|12', |
| 638 | } |
| 639 | ], |
| 640 | }, |
| 641 | # crbug.com/1196416 |
| 642 | 'args': [ |
| 643 | '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac-rel.browser_tests.filter', |
| 644 | ], |
| 645 | }, |
Lindsay Pasricha | f876259 | 2021-12-02 23:43:09 | [diff] [blame] | 646 | 'Mac11 Tests': { |
| 647 | 'ci_only': True, |
| 648 | }, |
Zhaoyang Li | 9357e1e1 | 2021-12-07 18:53:17 | [diff] [blame] | 649 | 'Mac11 Tests (dbg)': { |
| 650 | # crbug.com/1042757 |
| 651 | 'swarming': { |
| 652 | 'dimension_sets': [ |
| 653 | { |
| 654 | # These shards are liable to time out when running on macmini7,1. |
| 655 | 'cores': '8|12', |
| 656 | } |
| 657 | ], |
| 658 | }, |
| 659 | # crbug.com/1196416 |
| 660 | 'args': [ |
| 661 | '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac-rel.browser_tests.filter', |
| 662 | ], |
| 663 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 664 | 'ToTWin(dbg)': { |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 665 | 'swarming': { |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 666 | 'shards': 20, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 667 | }, |
| 668 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 669 | 'ToTWin64(dbg)': { |
Kenneth Russell | 8ceeabf | 2017-12-11 17:53:28 | [diff] [blame] | 670 | 'swarming': { |
| 671 | 'shards': 20, |
| 672 | }, |
| 673 | }, |
Kenneth Russell | 6c83d21 | 2018-07-27 20:52:59 | [diff] [blame] | 674 | 'Win10 Tests x64': { |
| 675 | # crbug.com/868082 |
| 676 | 'args': [ |
| 677 | '--disable-features=WebRTC-H264WithOpenH264FFmpeg', |
| 678 | ], |
Takuto Ikuta | c9c269a | 2019-01-10 22:40:25 | [diff] [blame] | 679 | 'swarming': { |
| 680 | # This is for slow test execution that often becomes a critical path of |
| 681 | # swarming jobs. crbug.com/868114 |
| 682 | 'shards': 15, |
Struan Shrimpton | a1ab767 | 2022-01-13 18:02:51 | [diff] [blame] | 683 | 'quickrun_shards': 40, |
Takuto Ikuta | c9c269a | 2019-01-10 22:40:25 | [diff] [blame] | 684 | } |
Kenneth Russell | 6c83d21 | 2018-07-27 20:52:59 | [diff] [blame] | 685 | }, |
Kuan Huang | a89737d | 2022-01-07 19:42:11 | [diff] [blame] | 686 | 'Win11 Tests x64': { |
| 687 | # crbug.com/868082 |
| 688 | 'args': [ |
| 689 | '--disable-features=WebRTC-H264WithOpenH264FFmpeg', |
| 690 | ], |
| 691 | 'swarming': { |
| 692 | # This is for slow test execution that often becomes a critical path of |
| 693 | # swarming jobs. crbug.com/868114 |
| 694 | 'shards': 15, |
| 695 | 'quickrun_shards': 30, |
| 696 | } |
| 697 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 698 | 'Win7 Tests (1)': { |
| 699 | # This is for slow test execution that often becomes a critical path of |
| 700 | # swarming jobs. crbug.com/868114 |
| 701 | 'swarming': { |
| 702 | 'shards': 15, |
| 703 | }, |
| 704 | }, |
| 705 | 'Win7 Tests (dbg)(1)': { |
Pavol Marko | c579e07 | 2019-12-05 22:42:02 | [diff] [blame] | 706 | 'swarming': { |
| 707 | 'shards': 20, |
| 708 | }, |
| 709 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 710 | 'linux-chromeos-chrome': { |
| 711 | # TODO(https://crbug.com/932269): Promote out of experiment when the |
| 712 | # tests are green. |
| 713 | 'args': [ |
| 714 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.browser_tests.filter', |
| 715 | ], |
| 716 | }, |
| 717 | 'linux-chromeos-code-coverage': { |
Nico Weber | 0c2861b | 2018-12-14 18:05:16 | [diff] [blame] | 718 | 'swarming': { |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 719 | 'shards': 50, |
| 720 | }, |
| 721 | }, |
| 722 | 'linux-chromeos-dbg': { |
| 723 | 'swarming': { |
Garrett Beaty | d81c918 | 2021-05-12 02:52:50 | [diff] [blame] | 724 | 'shards': 40, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 725 | }, |
| 726 | }, |
| 727 | 'linux-chromeos-rel': { |
| 728 | 'swarming': { |
| 729 | 'shards': 20, |
Struan Shrimpton | e772d72f | 2021-12-15 07:50:09 | [diff] [blame] | 730 | 'quickrun_shards': 40, |
Stephanie Kim | e9008f7 | 2020-03-05 23:01:16 | [diff] [blame] | 731 | 'dimension_sets': [ |
| 732 | { |
| 733 | 'kvm': '1', |
| 734 | }, |
| 735 | ], |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 736 | }, |
| 737 | }, |
| 738 | 'linux-code-coverage': { |
Yuke Liao | 58e1d20 | 2020-03-20 23:02:01 | [diff] [blame] | 739 | 'args': [ |
| 740 | '--no-sandbox', |
| 741 | ], |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 742 | 'swarming': { |
| 743 | 'shards': 50, |
| 744 | }, |
| 745 | }, |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 746 | 'linux-lacros-code-coverage': { |
| 747 | 'args': [ |
Ben Pastene | d1b2fd19 | 2021-05-11 19:10:18 | [diff] [blame] | 748 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.browser_tests.filter', |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 749 | ], |
| 750 | }, |
Jieting Yang | bf15db67 | 2021-10-04 19:18:37 | [diff] [blame] | 751 | 'linux-lacros-dbg-tests-fyi': { |
| 752 | 'args': [ |
| 753 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.browser_tests.filter', |
| 754 | ], |
| 755 | }, |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 756 | 'linux-lacros-tester-rel': { |
| 757 | 'args': [ |
Ben Pastene | d1b2fd19 | 2021-05-11 19:10:18 | [diff] [blame] | 758 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.browser_tests.filter', |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 759 | ], |
Struan Shrimpton | e772d72f | 2021-12-15 07:50:09 | [diff] [blame] | 760 | 'swarming': { |
| 761 | 'quickrun_shards': 20, |
| 762 | }, |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 763 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 764 | 'linux-trusty-rel': { |
| 765 | 'args': [ |
John Budorick | 79ec901 | 2020-01-08 21:56:31 | [diff] [blame] | 766 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux_trusty_rel.browser_tests.filter', |
| 767 | ], |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 768 | }, |
Kuan Huang | 235b014 | 2021-10-19 18:59:28 | [diff] [blame] | 769 | 'mac-code-coverage': { |
| 770 | 'args': [ |
| 771 | '--coverage-continuous-mode=1', |
| 772 | ], |
| 773 | }, |
Lindsay Pasricha | 8bbc338 | 2022-01-31 22:54:54 | [diff] [blame] | 774 | 'mac-osxbeta-rel': { |
| 775 | 'swarming': { |
| 776 | 'shards': 12, |
| 777 | }, |
| 778 | }, |
Kuan Huang | 83a1c92 | 2021-09-08 22:00:27 | [diff] [blame] | 779 | 'mac11-arm64-rel-tests': { |
Kuan Huang | 199112a5 | 2021-08-23 17:37:19 | [diff] [blame] | 780 | 'ci_only': False, # https://crbug.com/1234525 |
Lindsay Pasricha | 3643206 | 2021-10-27 20:43:30 | [diff] [blame] | 781 | 'args': [ |
| 782 | # crbug.com/1262402 |
| 783 | '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac11-arm64-rel.browser_tests.filter', |
Lindsay Pasricha | 7cb620d | 2022-01-28 23:47:01 | [diff] [blame] | 784 | ], |
| 785 | 'swarming': { |
| 786 | 'shards': 20, |
| 787 | }, |
Kuan Huang | 199112a5 | 2021-08-23 17:37:19 | [diff] [blame] | 788 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 789 | 'win-asan': { |
Nico Weber | 3f91979 | 2020-06-12 23:34:52 | [diff] [blame] | 790 | # These are very slow on the ASAN trybot for some reason. |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 791 | # crbug.com/1257927 |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 792 | 'swarming': { |
Nico Weber | 3f91979 | 2020-06-12 23:34:52 | [diff] [blame] | 793 | 'shards': 40, |
Nico Weber | 0c2861b | 2018-12-14 18:05:16 | [diff] [blame] | 794 | }, |
| 795 | }, |
Yuki Yamada | 70190fc | 2021-10-28 09:00:27 | [diff] [blame] | 796 | 'win-backuprefptr-x64-fyi-rel': { |
| 797 | 'args': [ |
| 798 | '--test-launcher-filter-file=../../testing/buildbot/filters/win_backuprefptr_fyi.browser_tests.filter', |
| 799 | ], |
| 800 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 801 | }, |
| 802 | }, |
Erik Chen | 681dc028 | 2019-11-26 22:54:49 | [diff] [blame] | 803 | 'cc_unittests': { |
| 804 | 'modifications': { |
| 805 | 'Linux TSan Tests': { |
| 806 | 'swarming': { |
| 807 | 'shards': 3, |
| 808 | }, |
| 809 | }, |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 810 | 'android-11-x86-rel': { |
Haiyang Pan | cf76586 | 2021-03-18 20:39:15 | [diff] [blame] | 811 | # https://crbug.com/1039860 |
| 812 | 'args': [ |
Haiyang Pan | 11d8bd5 | 2021-11-19 21:22:54 | [diff] [blame] | 813 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11_12.cc_unittests.filter', |
| 814 | ], |
| 815 | }, |
| 816 | 'android-12-x64-fyi-rel': { |
| 817 | # https://crbug.com/1039860 |
| 818 | 'args': [ |
| 819 | '--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] | 820 | ], |
| 821 | }, |
Haiyang Pan | 6b8e4cf | 2021-08-02 21:38:28 | [diff] [blame] | 822 | 'android-marshmallow-x86-rel': { |
John Budorick | fa8f1da9 | 2020-01-15 18:11:38 | [diff] [blame] | 823 | # https://crbug.com/1039860 |
| 824 | 'args': [ |
| 825 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.cc_unittests.filter', |
| 826 | ], |
| 827 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 828 | 'android-pie-x86-rel': { |
John Budorick | fa8f1da9 | 2020-01-15 18:11:38 | [diff] [blame] | 829 | # https://crbug.com/1039860 |
| 830 | 'args': [ |
| 831 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.cc_unittests.filter', |
| 832 | ], |
| 833 | }, |
Struan Shrimpton | a1ab767 | 2022-01-13 18:02:51 | [diff] [blame] | 834 | 'chromeos-amd64-generic-rel': { |
| 835 | 'swarming': { |
| 836 | 'quickrun_shards': 2, |
| 837 | }, |
| 838 | }, |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 839 | 'fuchsia-code-coverage': { |
| 840 | 'swarming': { |
| 841 | 'shards': 4, |
| 842 | }, |
| 843 | }, |
Chong Gu | b244646 | 2021-08-19 18:44:08 | [diff] [blame] | 844 | 'fuchsia-fyi-arm64-dbg': { |
| 845 | 'args': [ |
| 846 | '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.debug.cc_unittests.filter', |
| 847 | ], |
| 848 | }, |
Erik Chen | 681dc028 | 2019-11-26 22:54:49 | [diff] [blame] | 849 | }, |
| 850 | }, |
Prakhar | 94f444a | 2020-10-08 07:30:08 | [diff] [blame] | 851 | 'check_static_initializers': { |
| 852 | 'modifications': { |
| 853 | 'Mac Builder': { |
| 854 | 'args': [ |
| 855 | '--allow-coverage-initializer', |
| 856 | ], |
| 857 | }, |
| 858 | }, |
| 859 | }, |
Ben Pastene | 7a05a8f | 2020-11-12 17:25:51 | [diff] [blame] | 860 | 'chrome_all_tast_tests': { |
| 861 | 'modifications': { |
Struan Shrimpton | 4b7abc0 | 2021-12-16 01:36:59 | [diff] [blame] | 862 | 'chromeos-amd64-generic-rel': { |
| 863 | 'swarming': { |
Struan Shrimpton | 57c594e4 | 2022-01-25 17:59:13 | [diff] [blame] | 864 | 'quickrun_shards': 8, |
Struan Shrimpton | 4b7abc0 | 2021-12-16 01:36:59 | [diff] [blame] | 865 | }, |
| 866 | }, |
Ben Pastene | 7a05a8f | 2020-11-12 17:25:51 | [diff] [blame] | 867 | 'chromeos-betty-pi-arc-cfi-thin-lto-chrome': { |
| 868 | 'args': [ |
| 869 | # This bot sets symbol_level=2, which doesn't fit inside a normal VM. |
| 870 | '--strip-chrome', |
| 871 | ], |
| 872 | }, |
| 873 | }, |
| 874 | }, |
Andrew Luo | d252791ac | 2019-10-15 00:28:13 | [diff] [blame] | 875 | 'chrome_java_test_pagecontroller_tests': { |
Haiyang Pan | fbd2b48 | 2020-09-23 23:41:25 | [diff] [blame] | 876 | 'modifications': { |
| 877 | 'android-pie-arm64-rel': { |
| 878 | # TODO(crbug.com/1111436): Move this back to walleye if/when additional |
| 879 | # capacity has been deployed. |
| 880 | 'swarming': { |
| 881 | 'dimension_sets': [ |
| 882 | { |
| 883 | 'device_type': 'sailfish', |
| 884 | }, |
| 885 | ], |
| 886 | }, |
| 887 | }, |
| 888 | }, |
Andrew Luo | d252791ac | 2019-10-15 00:28:13 | [diff] [blame] | 889 | }, |
Stephanie Kim | 07761d2 | 2021-11-25 00:21:18 | [diff] [blame] | 890 | 'chrome_junit_tests': { |
| 891 | 'modifications': { |
| 892 | 'android-marshmallow-arm64-rel': { |
| 893 | 'args': [ |
| 894 | # Too many shards can lead to race conditions (crbug/1272066) |
| 895 | '--shards=8', |
| 896 | ], |
| 897 | }, |
| 898 | }, |
| 899 | }, |
Yun Liu | 7cfd28a | 2019-10-30 01:57:12 | [diff] [blame] | 900 | 'chrome_public_smoke_test': { |
| 901 | 'remove_from': [ |
Ben Joyce | 02dc809 | 2021-03-04 21:48:19 | [diff] [blame] | 902 | 'android-code-coverage-native', # Does not generate profraw data. |
Ben Joyce | 46ca601 | 2021-03-31 19:19:25 | [diff] [blame] | 903 | 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data. |
Yun Liu | 7cfd28a | 2019-10-30 01:57:12 | [diff] [blame] | 904 | ], |
| 905 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 906 | 'chrome_public_test_apk': { |
John Budorick | 27d2d44e | 2019-05-20 20:26:09 | [diff] [blame] | 907 | 'remove_from': [ |
| 908 | 'android-asan', # https://crbug.com/964562 |
Ben Joyce | 02dc809 | 2021-03-04 21:48:19 | [diff] [blame] | 909 | 'android-code-coverage-native', # Does not generate profraw data. |
Ben Joyce | 46ca601 | 2021-03-31 19:19:25 | [diff] [blame] | 910 | 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data. |
John Budorick | 27d2d44e | 2019-05-20 20:26:09 | [diff] [blame] | 911 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 912 | 'modifications': { |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 913 | 'Marshmallow 64 bit Tester': { |
| 914 | 'swarming': { |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 915 | 'shards': 14, |
| 916 | }, |
| 917 | }, |
Arthur Wang | 5dd7b07c | 2020-04-04 01:05:22 | [diff] [blame] | 918 | 'Marshmallow Tablet Tester': { |
| 919 | 'args': [ |
| 920 | '--timeout-scale', |
| 921 | '2.0', |
| 922 | ], |
| 923 | }, |
Ben Pastene | c73e96e9 | 2018-07-12 01:40:35 | [diff] [blame] | 924 | 'Oreo Phone Tester': { |
bsheedy | 0183346 | 2018-12-07 01:05:57 | [diff] [blame] | 925 | # TODO(https://crbug.com/884413): Re-enable this once the tests are |
| 926 | # either passing or there is more capacity. |
| 927 | 'experiment_percentage': 0, |
Ben Pastene | c73e96e9 | 2018-07-12 01:40:35 | [diff] [blame] | 928 | }, |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 929 | 'android-11-x86-rel': { |
Haiyang Pan | b80557c | 2021-03-13 03:01:44 | [diff] [blame] | 930 | 'args': [ |
| 931 | '--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] | 932 | '--timeout-scale=2.0', |
Haiyang Pan | b80557c | 2021-03-13 03:01:44 | [diff] [blame] | 933 | ], |
Haiyang Pan | 68a39c0 | 2021-11-11 21:12:21 | [diff] [blame] | 934 | }, |
| 935 | 'android-12-x64-fyi-rel': { |
| 936 | 'args': [ |
| 937 | '--timeout-scale=2.0', |
| 938 | ], |
Haiyang Pan | b80557c | 2021-03-13 03:01:44 | [diff] [blame] | 939 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 940 | 'android-arm64-proguard-rel': { |
| 941 | 'swarming': { |
| 942 | 'shards': 25, |
| 943 | }, |
| 944 | }, |
Brian Sheedy | 44a7a003 | 2020-04-16 19:20:57 | [diff] [blame] | 945 | 'android-marshmallow-arm64-rel-swarming': { |
| 946 | 'swarming': { |
Brian Sheedy | 180c2dd | 2020-04-22 19:34:31 | [diff] [blame] | 947 | 'service_account': '[email protected]' |
Brian Sheedy | 44a7a003 | 2020-04-16 19:20:57 | [diff] [blame] | 948 | }, |
| 949 | }, |
Haiyang Pan | 742760c | 2021-02-12 03:21:41 | [diff] [blame] | 950 | 'android-marshmallow-x86-rel': { |
| 951 | 'args': [ |
| 952 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_m.chrome_public_test_apk.filter', |
| 953 | ], |
| 954 | 'swarming': { |
| 955 | # TODO(crbug.com/1127110): Revisit shards and machine_type if there |
| 956 | # are n2 machines available in the test pool. |
| 957 | 'shards': 25, |
Haiyang Pan | 742760c | 2021-02-12 03:21:41 | [diff] [blame] | 958 | }, |
Haiyang Pan | 37fbd7a4 | 2020-06-03 03:27:37 | [diff] [blame] | 959 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 960 | 'android-pie-arm64-rel': { |
| 961 | 'args': [ |
| 962 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_arm64_rel.chrome_public_test_apk.filter', # https://crbug.com/1010211 |
| 963 | ], |
Stephen Martinis | d05530d | 2021-07-27 22:50:22 | [diff] [blame] | 964 | 'ci_only': True, # https://crbug.com/1233700 |
Haiyang Pan | 43640ee | 2020-02-13 01:38:00 | [diff] [blame] | 965 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 966 | 'android-pie-x86-rel': { |
Haiyang Pan | 43640ee | 2020-02-13 01:38:00 | [diff] [blame] | 967 | 'args': [ |
Haiyang Pan | 7137307 | 2020-03-02 19:57:49 | [diff] [blame] | 968 | # https://crbug.com/1046059 |
Haiyang Pan | 23f64f5 | 2020-06-04 01:23:32 | [diff] [blame] | 969 | '--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] | 970 | ], |
Haiyang Pan | 7137307 | 2020-03-02 19:57:49 | [diff] [blame] | 971 | 'swarming': { |
Haiyang Pan | 58a6db2 | 2021-07-30 01:08:26 | [diff] [blame] | 972 | # See https://crbug.com/1230192, runs of 40-60 minutes at 20 shards. |
| 973 | 'shards': 30, |
| 974 | }, |
| 975 | }, |
| 976 | }, |
| 977 | }, |
| 978 | 'chrome_public_test_apk_with_playstore': { |
| 979 | 'remove_from': [ |
| 980 | # Android Emulator does not ship playstore image on Marshmallow. |
| 981 | 'android-marshmallow-x86-rel', |
| 982 | ], |
| 983 | 'modifications': { |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 984 | 'android-11-x86-rel': { |
Haiyang Pan | 58a6db2 | 2021-07-30 01:08:26 | [diff] [blame] | 985 | 'args': [ |
| 986 | '--avd-config=../../tools/android/avd/proto/generic_playstore_android30.textpb', |
| 987 | ], |
| 988 | 'swarming': { |
| 989 | # soft affinity so that bots with caches will be picked first |
| 990 | 'optional_dimensions': { |
| 991 | '60': [ |
| 992 | { |
Haiyang Pan | 68a39c0 | 2021-11-11 21:12:21 | [diff] [blame] | 993 | 'caches': 'avd_generic_playstore_android30', |
Haiyang Pan | 58a6db2 | 2021-07-30 01:08:26 | [diff] [blame] | 994 | } |
| 995 | ], |
| 996 | }, |
| 997 | 'named_caches': [ |
| 998 | { |
| 999 | 'name': 'avd_generic_playstore_android30', |
| 1000 | 'path': '.android', |
| 1001 | }, |
| 1002 | { |
| 1003 | 'name': 'system_images_android_30_google_apis_playstore_x86', |
| 1004 | 'path': '.emulator_sdk', |
| 1005 | }, |
| 1006 | ], |
| 1007 | }, |
| 1008 | }, |
Haiyang Pan | 68a39c0 | 2021-11-11 21:12:21 | [diff] [blame] | 1009 | 'android-12-x64-fyi-rel': { |
| 1010 | 'args': [ |
| 1011 | '--avd-config=../../tools/android/avd/proto/generic_playstore_android31.textpb', |
| 1012 | ], |
| 1013 | 'swarming': { |
| 1014 | # soft affinity so that bots with caches will be picked first |
| 1015 | 'optional_dimensions': { |
| 1016 | '60': [ |
| 1017 | { |
| 1018 | 'caches': 'avd_generic_playstore_android31', |
| 1019 | } |
| 1020 | ], |
| 1021 | }, |
| 1022 | 'named_caches': [ |
| 1023 | { |
| 1024 | 'name': 'avd_generic_playstore_android31', |
| 1025 | 'path': '.android', |
| 1026 | }, |
| 1027 | { |
| 1028 | 'name': 'system_images_android_31_google_apis_playstore_x64', |
| 1029 | 'path': '.emulator_sdk', |
| 1030 | }, |
| 1031 | ], |
| 1032 | }, |
| 1033 | }, |
Haiyang Pan | 58a6db2 | 2021-07-30 01:08:26 | [diff] [blame] | 1034 | 'android-pie-x86-rel': { |
| 1035 | 'args': [ |
| 1036 | '--avd-config=../../tools/android/avd/proto/generic_playstore_android28.textpb', |
| 1037 | ], |
| 1038 | 'swarming': { |
Haiyang Pan | 2c43830 | 2021-06-11 23:50:38 | [diff] [blame] | 1039 | # soft affinity so that bots with caches will be picked first |
| 1040 | 'optional_dimensions': { |
| 1041 | '60': [ |
| 1042 | { |
| 1043 | 'caches': 'avd_generic_playstore_android28', |
| 1044 | } |
| 1045 | ], |
| 1046 | }, |
Haiyang Pan | 7137307 | 2020-03-02 19:57:49 | [diff] [blame] | 1047 | 'named_caches': [ |
| 1048 | { |
| 1049 | 'name': 'avd_generic_playstore_android28', |
| 1050 | 'path': '.android', |
| 1051 | }, |
| 1052 | { |
| 1053 | 'name': 'system_images_android_28_google_apis_playstore_x86', |
| 1054 | 'path': '.emulator_sdk', |
| 1055 | }, |
Haiyang Pan | 98040282 | 2020-10-07 23:24:56 | [diff] [blame] | 1056 | ], |
Haiyang Pan | 7137307 | 2020-03-02 19:57:49 | [diff] [blame] | 1057 | }, |
John Budorick | 3400947 | 2018-04-03 17:38:44 | [diff] [blame] | 1058 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1059 | }, |
| 1060 | }, |
| 1061 | 'chrome_public_test_vr_apk': { |
Nico Weber | b0b3f586 | 2018-07-13 18:45:15 | [diff] [blame] | 1062 | 'remove_from': [ |
Ben Joyce | 3e04386 | 2021-10-20 23:57:24 | [diff] [blame] | 1063 | # Decided to no longer run VR tests on M, crbug.com/1159619. |
bsheedy | 410dd7c | 2018-06-15 22:42:09 | [diff] [blame] | 1064 | 'Marshmallow Tablet Tester', |
Haiyang Pan | d12ff546 | 2021-07-12 17:29:02 | [diff] [blame] | 1065 | |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 1066 | 'android-pie-arm64-rel', # https://crbug.com/1010211 |
bsheedy | df58b4e | 2018-11-01 19:42:16 | [diff] [blame] | 1067 | 'ToTAndroid', |
John Budorick | 27d2d44e | 2019-05-20 20:26:09 | [diff] [blame] | 1068 | 'android-asan', # https://crbug.com/964562 |
Ben Joyce | 02dc809 | 2021-03-04 21:48:19 | [diff] [blame] | 1069 | 'android-code-coverage-native', # Does not generate profraw data. |
Ben Joyce | 46ca601 | 2021-03-31 19:19:25 | [diff] [blame] | 1070 | 'android-pie-arm64-coverage-experimental-rel', # Does not generate profraw data. |
bsheedy | 410dd7c | 2018-06-15 22:42:09 | [diff] [blame] | 1071 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1072 | }, |
bsheedy | 75a4dd5 | 2018-11-27 23:24:30 | [diff] [blame] | 1073 | 'chrome_public_test_vr_apk-vega': { |
| 1074 | 'modifications': { |
bsheedy | 75a4dd5 | 2018-11-27 23:24:30 | [diff] [blame] | 1075 | 'Oreo Phone Tester': { |
| 1076 | 'swarming': { |
| 1077 | 'dimension_sets': [ |
| 1078 | { |
| 1079 | 'device_os': 'OVR1.180808.003', |
| 1080 | 'device_type': 'vega', |
| 1081 | 'os': 'Android', |
| 1082 | }, |
| 1083 | ], |
| 1084 | }, |
| 1085 | } |
| 1086 | } |
| 1087 | }, |
Ian Struiksma | eb285db0 | 2020-10-20 22:19:34 | [diff] [blame] | 1088 | 'chrome_sizes': { |
| 1089 | 'modifications': { |
Yuke Liao | 97568030 | 2021-02-18 18:34:54 | [diff] [blame] | 1090 | 'lacros-amd64-generic-chrome': { |
| 1091 | 'swarming': { |
| 1092 | 'dimension_sets': [ |
| 1093 | { |
Yuke Liao | 31225ee3 | 2021-03-17 23:21:33 | [diff] [blame] | 1094 | 'cpu': 'x86-64', |
Ben Pastene | ddd3da7 | 2021-09-23 17:41:35 | [diff] [blame] | 1095 | 'os': 'Ubuntu-18.04', |
Yuke Liao | 97568030 | 2021-02-18 18:34:54 | [diff] [blame] | 1096 | }, |
| 1097 | ], |
| 1098 | }, |
| 1099 | }, |
Ben Pastene | e9536c8 | 2021-10-19 01:48:57 | [diff] [blame] | 1100 | 'lacros-arm-generic-chrome': { |
| 1101 | 'swarming': { |
| 1102 | 'dimension_sets': [ |
| 1103 | { |
| 1104 | 'cpu': 'x86-64', |
| 1105 | 'os': 'Ubuntu-18.04', |
| 1106 | }, |
| 1107 | ], |
| 1108 | }, |
| 1109 | }, |
Ian Struiksma | eb285db0 | 2020-10-20 22:19:34 | [diff] [blame] | 1110 | }, |
| 1111 | }, |
Takuto Ikuta | 1b749b90 | 2019-04-11 18:05:53 | [diff] [blame] | 1112 | 'chromedriver_py_tests': { |
| 1113 | 'remove_from': [ |
| 1114 | # Timeout happens sometimes (crbug.com/951799). |
Takuto Ikuta | 1b749b90 | 2019-04-11 18:05:53 | [diff] [blame] | 1115 | 'Win10 Tests x64 (dbg)', |
| 1116 | ], |
| 1117 | }, |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 1118 | 'components_browsertests': { |
| 1119 | 'modifications': { |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 1120 | 'android-11-x86-rel': { |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 1121 | 'swarming': { |
| 1122 | 'shards': 2, |
| 1123 | }, |
| 1124 | }, |
Struan Shrimpton | f5b2b55 | 2022-01-20 20:37:39 | [diff] [blame] | 1125 | 'android-marshmallow-arm64-rel': { |
| 1126 | 'swarming': { |
| 1127 | 'quickrun_shards': 2, |
| 1128 | }, |
| 1129 | }, |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 1130 | }, |
| 1131 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1132 | 'components_unittests': { |
Yun Liu | 3e759dbb | 2019-11-01 19:25:52 | [diff] [blame] | 1133 | 'remove_from': [ |
Ben Joyce | 68c5c85 | 2021-10-16 23:55:16 | [diff] [blame] | 1134 | # https://crbug.com/1147531 - covered on marshmallow emulator. |
Garrett Beaty | 47a2d80 | 2020-11-10 20:50:53 | [diff] [blame] | 1135 | 'android-marshmallow-arm64-rel', |
Greg Guterman | ea66116 | 2021-11-17 00:46:43 | [diff] [blame] | 1136 | 'android-marshmallow-arm64-rel-rts', |
Yun Liu | 3e759dbb | 2019-11-01 19:25:52 | [diff] [blame] | 1137 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1138 | 'modifications': { |
John Budorick | 5052d55 | 2017-12-13 02:59:34 | [diff] [blame] | 1139 | 'Linux ASan LSan Tests (1)': { |
| 1140 | # These are very slow on the ASAN trybot for some reason. |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 1141 | # crbug.com/1257927 |
John Budorick | 5052d55 | 2017-12-13 02:59:34 | [diff] [blame] | 1142 | 'swarming': { |
| 1143 | 'shards': 5, |
| 1144 | }, |
| 1145 | }, |
Takuto Ikuta | 54671d97 | 2018-07-19 19:06:35 | [diff] [blame] | 1146 | 'Linux Chromium OS ASan LSan Tests (1)': { |
| 1147 | # These are very slow on the ASAN trybot for some reason. |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 1148 | # crbug.com/1257927 |
Takuto Ikuta | 54671d97 | 2018-07-19 19:06:35 | [diff] [blame] | 1149 | 'swarming': { |
| 1150 | 'shards': 5, |
| 1151 | }, |
| 1152 | }, |
Erik Chen | 681dc028 | 2019-11-26 22:54:49 | [diff] [blame] | 1153 | 'Linux TSan Tests': { |
| 1154 | 'swarming': { |
| 1155 | 'shards': 2, |
| 1156 | }, |
| 1157 | }, |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 1158 | 'android-11-x86-rel': { |
Haiyang Pan | 799282f | 2021-03-25 19:38:31 | [diff] [blame] | 1159 | 'args': [ |
Haiyang Pan | e521cf69 | 2021-11-30 00:35:23 | [diff] [blame] | 1160 | # TODO(crbug.com/1192348): Fix the test failure |
| 1161 | '--gtest_filter=-FieldFormatterTest.DifferentLocales', |
Haiyang Pan | 799282f | 2021-03-25 19:38:31 | [diff] [blame] | 1162 | ], |
| 1163 | }, |
Haiyang Pan | 2877f06 | 2021-11-18 01:06:06 | [diff] [blame] | 1164 | 'android-12-x64-fyi-rel': { |
| 1165 | 'args': [ |
| 1166 | # TODO(crbug.com/1192348): Fix the test failure |
| 1167 | '--gtest_filter=-FieldFormatterTest.DifferentLocales', |
| 1168 | ], |
| 1169 | }, |
Omer Katz | 7d2be65 | 2020-01-22 18:13:46 | [diff] [blame] | 1170 | 'linux-blink-heap-concurrent-marking-tsan-rel': { |
| 1171 | 'swarming': { |
| 1172 | 'shards': 2, |
| 1173 | }, |
| 1174 | }, |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 1175 | # https://crbug.com/1111979, |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 1176 | 'linux-lacros-code-coverage': { |
| 1177 | 'args': [ |
| 1178 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.components_unittests.filter', |
| 1179 | ], |
| 1180 | }, |
| 1181 | # https://crbug.com/1111979, |
Yuke Liao | a0db474 | 2021-08-09 18:28:33 | [diff] [blame] | 1182 | 'linux-lacros-dbg-tests-fyi': { |
| 1183 | 'args': [ |
| 1184 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.components_unittests.filter', |
| 1185 | ], |
| 1186 | }, |
| 1187 | # https://crbug.com/1111979, |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 1188 | 'linux-lacros-tester-rel': { |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 1189 | 'args': [ |
Yuke Liao | 56a437dd | 2021-05-05 04:53:40 | [diff] [blame] | 1190 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux-lacros.components_unittests.filter', |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 1191 | ], |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 1192 | }, |
| 1193 | }, |
Sven Zheng | 577fe5ff | 2020-08-03 22:06:44 | [diff] [blame] | 1194 | }, |
Chong Gu | 7604641 | 2021-09-22 17:49:21 | [diff] [blame] | 1195 | 'compositor_unittests': { |
Chong Gu | b244646 | 2021-08-19 18:44:08 | [diff] [blame] | 1196 | 'modifications': { |
| 1197 | 'fuchsia-fyi-arm64-dbg': { |
| 1198 | 'args': [ |
| 1199 | '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.debug.compositor_unittests.filter', |
| 1200 | ], |
| 1201 | }, |
| 1202 | }, |
| 1203 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1204 | 'content_browsertests': { |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 1205 | 'remove_from': [ |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 1206 | 'CrWinAsan(dll)', # https://crbug.com/935598 |
Chong Gu | 0ed5dcda | 2021-07-15 21:26:11 | [diff] [blame] | 1207 | '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] | 1208 | 'android-marshmallow-arm64-rel-rts', |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [
|