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 | }, |
Arthur Sonzogni | 90f6df1 | 2022-02-02 14:28:32 | [diff] [blame] | 439 | 'linux-bfcache-rel': { |
| 440 | 'args': [ |
| 441 | '--flag-specific=enable-back-forward-cache-same-site', |
| 442 | # TODO(crbug.com/1255537): Re-enable the test. |
| 443 | '--ignore-tests=external/wpt/html/browsers/browsing-the-web/back-forward-cache/events.html', |
| 444 | ], |
| 445 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 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 |
|