Avi Drissman | dfd88085 | 2022-09-15 20:11:09 | [diff] [blame] | 1 | # Copyright 2017 The Chromium Authors |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | # This is a .pyl, or "Python Literal", file. You can treat it just like a |
| 6 | # .json file, with the following exceptions: |
| 7 | # * all keys must be quoted (use single quotes, please); |
| 8 | # * comments are allowed, using '#' syntax; and |
| 9 | # * trailing commas are allowed. |
| 10 | |
| 11 | # Exceptions to the common test suites can only include removal from |
| 12 | # particular bots, and modifications on particular bots. By design, |
| 13 | # it's not possible to add one-off tests to bots. Instead they have to |
| 14 | # be added to one of the test suites in test_suites.pyl. |
| 15 | # |
Jeff Yoon | e2188f6 | 2020-08-24 20:55:57 | [diff] [blame] | 16 | # Note that if you are excluding with variants, you will need to exclude |
| 17 | # per variant, with the identifier appended to the test suite name. |
| 18 | # For example, if you have ios_chrome_ui_eg2tests_module with variant |
| 19 | # SIM_IPHONE_6S_14_0 (identifier = "iPhone 6s 14.0"), you |
| 20 | # must exclude with the test name as: |
| 21 | # "ios_chrome_ui_eg2tests_module_iPhone 6s 14.0" |
| 22 | |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 23 | # The goal is to drive the number of exceptions to zero, to make all |
| 24 | # the bots behave similarly. |
| 25 | { |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 26 | 'android_browsertests': { |
| 27 | 'modifications': { |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 28 | 'android-11-x86-rel': { |
Haiyang Pan | 0ea9b3ef | 2022-01-21 21:58:14 | [diff] [blame] | 29 | 'args': [ |
| 30 | # https://crbug.com/1289764 |
| 31 | '--gtest_filter=-All/ChromeBrowsingDataLifetimeManagerScheduledRemovalTest.History/*', |
| 32 | ], |
Haiyang Pan | ca7fcec | 2021-03-19 02:11:10 | [diff] [blame] | 33 | }, |
Haiyang Pan | c119266 | 2022-03-09 00:09:02 | [diff] [blame] | 34 | 'android-12-x64-rel': { |
Haiyang Pan | 18b448d7 | 2022-12-13 21:33:44 | [diff] [blame] | 35 | # TODO(crbug.com/1225851): Remove experiment and ci_only |
| 36 | # once the test suite is stable. |
| 37 | 'ci_only': True, |
| 38 | 'experiment_percentage': 100, |
Haiyang Pan | c119266 | 2022-03-09 00:09:02 | [diff] [blame] | 39 | 'args': [ |
| 40 | # https://crbug.com/1289764 |
| 41 | '--gtest_filter=-All/ChromeBrowsingDataLifetimeManagerScheduledRemovalTest.History/*', |
| 42 | ], |
Haiyang Pan | 1b8faa20b | 2023-02-10 23:44:36 | [diff] [blame] | 43 | }, |
| 44 | 'android-12l-x64-dbg-tests': { |
| 45 | 'args': [ |
| 46 | # https://crbug.com/1289764 |
| 47 | '--gtest_filter=-All/ChromeBrowsingDataLifetimeManagerScheduledRemovalTest.History/*', |
| 48 | ], |
| 49 | }, |
| 50 | 'android-13-x64-rel': { |
| 51 | 'args': [ |
| 52 | # https://crbug.com/1414886 |
| 53 | '--gtest_filter=-OfferNotificationControllerAndroidBrowserTestForMessagesUi.MessageShown', |
| 54 | ], |
Haiyang Pan | c119266 | 2022-03-09 00:09:02 | [diff] [blame] | 55 | }, |
Haiyang Pan | cf24ceb | 2022-03-17 02:31:30 | [diff] [blame] | 56 | 'android-nougat-x86-rel': { |
James Shen | fb767a1 | 2023-02-17 01:47:29 | [diff] [blame] | 57 | 'ci_only': True, |
Haiyang Pan | cf24ceb | 2022-03-17 02:31:30 | [diff] [blame] | 58 | 'swarming': { |
Stephanie Kim | 53cc82d | 2022-11-01 19:42:57 | [diff] [blame] | 59 | 'shards': 9, |
Haiyang Pan | cf24ceb | 2022-03-17 02:31:30 | [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 | ], |
James Shen | c9d4b2b | 2022-08-24 06:14:24 | [diff] [blame] | 74 | 'shards': 3, |
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': { |
Ben Joyce | 5bb3fad | 2022-09-23 06:05:18 | [diff] [blame] | 83 | 'dimension_sets': [ |
| 84 | { |
Haiyang Pan | e35ae64 | 2022-11-18 00:34:15 | [diff] [blame] | 85 | 'cores': '8', # crbug.com/1292221 |
Ben Joyce | 5bb3fad | 2022-09-23 06:05:18 | [diff] [blame] | 86 | }, |
| 87 | ], |
Haiyang Pan | 7cd609d | 2021-04-08 20:17:24 | [diff] [blame] | 88 | }, |
John Budorick | 191adfcd | 2020-01-29 18:19:04 | [diff] [blame] | 89 | }, |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 90 | }, |
| 91 | }, |
Sven Zheng | c60debc | 2020-09-10 18:40:52 | [diff] [blame] | 92 | 'android_sync_integration_tests': { |
James Shen | 9e4c19e | 2022-04-15 17:57:50 | [diff] [blame] | 93 | 'modifications': { |
| 94 | 'android-12-x64-rel': { |
| 95 | 'swarming': { |
| 96 | 'shards': 3, |
| 97 | }, |
| 98 | }, |
Stephanie Kim | 1119236 | 2022-11-04 18:17:44 | [diff] [blame] | 99 | 'android-nougat-x86-rel': { |
James Shen | 7481051 | 2023-02-22 20:27:39 | [diff] [blame] | 100 | 'ci_only': True, |
Stephanie Kim | 1119236 | 2022-11-04 18:17:44 | [diff] [blame] | 101 | 'swarming': { |
| 102 | 'shards': 2, |
| 103 | }, |
| 104 | }, |
James Shen | 9e4c19e | 2022-04-15 17:57:50 | [diff] [blame] | 105 | }, |
Sven Zheng | c60debc | 2020-09-10 18:40:52 | [diff] [blame] | 106 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 107 | 'android_webview_unittests': { |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 108 | }, |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 109 | 'angle_unittests': { |
| 110 | 'remove_from': [ |
| 111 | # On Android, these are already run on the main waterfall. |
| 112 | 'Android FYI Release (Nexus 5X)', |
Yuly Novikov | c1117ae8 | 2021-01-15 22:33:36 | [diff] [blame] | 113 | # Times out listing tests crbug.com/1167314 |
| 114 | 'android-asan', |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 115 | # Does not currently work on Lacros configurations. |
Sven Zheng | 93bfaa9 | 2022-06-09 17:06:03 | [diff] [blame] | 116 | 'linux-lacros-asan-lsan-rel', |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 117 | 'linux-lacros-code-coverage', |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 118 | 'linux-lacros-tester-rel', |
| 119 | 'linux-lacros-tester-fyi-rel', |
Yuke Liao | f27ebe5 | 2021-08-05 22:12:40 | [diff] [blame] | 120 | 'linux-lacros-dbg-tests-fyi', |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 121 | ], |
Chong Gu | a10cd30 | 2022-01-14 19:22:19 | [diff] [blame] | 122 | 'modifications': { |
| 123 | # anglebug.com/6894 |
| 124 | 'fuchsia-fyi-x64-asan': { |
| 125 | 'args': [ |
| 126 | # crbug.com/ |
| 127 | '--gtest_filter=-ConstructCompilerTest.DefaultParameters', |
| 128 | ], |
| 129 | }, |
| 130 | }, |
Jamie Madill | c9ae75d | 2020-10-23 19:19:48 | [diff] [blame] | 131 | }, |
Eriko Kurimoto | 61a8533 | 2022-10-19 05:19:45 | [diff] [blame] | 132 | 'ash_crosapi_tests': { |
| 133 | 'remove_from': [ |
| 134 | # Disabling MSan tests since linux-chromeos chrome crashes on MSan build. |
| 135 | # TODO(crbug.com/1376064): Re-enable. |
| 136 | 'Linux ChromiumOS MSan Tests', |
| 137 | ] |
| 138 | }, |
Sven Zheng | ef0d087 | 2022-04-04 22:13:29 | [diff] [blame] | 139 | 'aura_unittests amd64-generic': { |
Yuke Liao | b6beaeca | 2021-04-29 23:41:51 | [diff] [blame] | 140 | 'remove_from': [ |
| 141 | # TODO(crbug.com/1204231): Re-enable. |
| 142 | 'lacros-amd64-generic-rel', |
| 143 | ] |
| 144 | }, |
Sven Zheng | ef0d087 | 2022-04-04 22:13:29 | [diff] [blame] | 145 | 'aura_unittests eve': { |
Yuke Liao | 79a8cf5 | 2021-06-11 18:14:34 | [diff] [blame] | 146 | 'remove_from': [ |
| 147 | # TODO(crbug.com/1204231): Re-enable. |
| 148 | 'lacros-amd64-generic-rel', |
| 149 | ] |
| 150 | }, |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 151 | 'base_unittests': { |
| 152 | 'modifications': { |
Ben Joyce | a031911 | 2022-11-15 23:53:12 | [diff] [blame] | 153 | 'ToTAndroid': { |
| 154 | 'args': [ |
| 155 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_tot.base_unittests.filter', |
| 156 | ], |
| 157 | }, |
Haiyang Pan | 2a55a45 | 2022-03-03 08:18:33 | [diff] [blame] | 158 | 'android-12-x64-rel': { |
Haiyang Pan | c08d0221 | 2021-10-18 18:58:38 | [diff] [blame] | 159 | 'args': [ |
Haiyang Pan | 32338b7 | 2023-02-08 23:48:58 | [diff] [blame] | 160 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.base_unittests.filter', |
| 161 | ], |
| 162 | }, |
| 163 | 'android-12l-x64-dbg-tests': { |
| 164 | 'args': [ |
| 165 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.base_unittests.filter', |
| 166 | ], |
| 167 | }, |
| 168 | 'android-13-x64-rel': { |
| 169 | 'args': [ |
| 170 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.base_unittests.filter', |
Haiyang Pan | c7c009e | 2021-03-18 19:31:23 | [diff] [blame] | 171 | ], |
| 172 | }, |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 173 | 'fuchsia-code-coverage': { |
| 174 | 'swarming': { |
| 175 | 'shards': 5, |
| 176 | }, |
| 177 | }, |
Chong Gu | a10cd30 | 2022-01-14 19:22:19 | [diff] [blame] | 178 | 'fuchsia-fyi-x64-asan': { |
| 179 | 'args': [ |
| 180 | '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.lsan.base_unittests.filter', |
| 181 | ], |
| 182 | }, |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 183 | }, |
| 184 | }, |
James Shen | 5df9af87 | 2022-10-28 01:32:15 | [diff] [blame] | 185 | 'bf_cache_content_browsertests': { |
| 186 | 'modifications': { |
| 187 | 'android-bfcache-rel': { |
| 188 | 'args': [ |
James Shen | ea29185 | 2022-11-08 04:19:45 | [diff] [blame] | 189 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_n.content_browsertests.filter', |
James Shen | 5df9af87 | 2022-10-28 01:32:15 | [diff] [blame] | 190 | ], |
James Shen | 2c574ce0 | 2022-11-03 22:59:23 | [diff] [blame] | 191 | 'swarming': { |
| 192 | 'shards': 15, |
| 193 | }, |
James Shen | 5df9af87 | 2022-10-28 01:32:15 | [diff] [blame] | 194 | } |
| 195 | } |
| 196 | }, |
Haiyang Pan | 363c59a | 2020-07-23 05:47:04 | [diff] [blame] | 197 | 'blink_platform_unittests': { |
| 198 | 'modifications': { |
James Shen | 08835667 | 2022-06-28 01:21:14 | [diff] [blame] | 199 | # TODO(crbug.com/1303439): Remove this filter |
| 200 | 'android-nougat-x86-rel': { |
| 201 | 'args': [ |
| 202 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_n.blink_platform_unittests.filter', |
| 203 | ], |
| 204 | }, |
Haiyang Pan | fbd2b48 | 2020-09-23 23:41:25 | [diff] [blame] | 205 | 'android-pie-arm64-rel': { |
| 206 | # TODO(crbug.com/1111436): Move this back to walleye if/when additional |
| 207 | # capacity has been deployed. |
| 208 | 'swarming': { |
| 209 | 'dimension_sets': [ |
| 210 | { |
| 211 | 'device_type': 'sailfish', |
| 212 | }, |
| 213 | ], |
| 214 | }, |
| 215 | }, |
Chong Gu | 5248145 | 2021-04-02 17:52:41 | [diff] [blame] | 216 | 'fuchsia-code-coverage': { |
| 217 | 'swarming': { |
| 218 | 'shards': 5, |
| 219 | }, |
| 220 | }, |
Haiyang Pan | 363c59a | 2020-07-23 05:47:04 | [diff] [blame] | 221 | }, |
| 222 | }, |
Brian Sheedy | 944d062 | 2022-07-27 20:42:42 | [diff] [blame] | 223 | 'blink_pytype': { |
| 224 | 'remove_from': [ |
| 225 | 'linux-code-coverage', |
| 226 | ], |
| 227 | }, |
Chong Gu | 7604641 | 2021-09-22 17:49:21 | [diff] [blame] | 228 | 'blink_unittests': { |
Chong Gu | c2d145e | 2021-03-31 19:55:34 | [diff] [blame] | 229 | 'modifications': { |
| 230 | 'fuchsia-code-coverage': { |
| 231 | 'swarming': { |
| 232 | 'shards': 30, |
| 233 | }, |
| 234 | }, |
| 235 | }, |
| 236 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 237 | 'blink_web_tests': { |
| 238 | 'remove_from': [ |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 239 | 'Win10 Tests x64 (dbg)', |
Rahul Kumar Adudodla | 1aba3360 | 2022-10-12 22:41:14 | [diff] [blame] | 240 | 'mac-osxbeta-rel', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 241 | ], |
| 242 | 'modifications': { |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 243 | 'Linux Tests': { |
| 244 | "args": [ |
| 245 | "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw", |
| 246 | ], |
Struan Shrimpton | 57c594e4 | 2022-01-25 17:59:13 | [diff] [blame] | 247 | 'swarming': { |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 248 | 'shards': 8, |
Struan Shrimpton | 57c594e4 | 2022-01-25 17:59:13 | [diff] [blame] | 249 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 250 | }, |
| 251 | 'Linux Tests (dbg)(1)': { |
| 252 | 'args': [ |
| 253 | '--debug', |
| 254 | ], |
| 255 | 'swarming': { |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 256 | 'shards': 12, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 257 | }, |
| 258 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 259 | 'Mac10.13 Tests': { |
| 260 | 'swarming': { |
| 261 | 'dimension_sets': [ |
| 262 | { |
Erik Staab | 59591f3 | 2020-08-25 23:07:07 | [diff] [blame] | 263 | 'gpu': None, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 264 | }, |
| 265 | ], |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 266 | 'shards': 10, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 267 | }, |
| 268 | }, |
Zhaoyang Li | 69e2e00 | 2021-02-19 21:57:35 | [diff] [blame] | 269 | 'Mac10.15 Tests': { |
| 270 | 'swarming': { |
| 271 | 'dimension_sets': [ |
| 272 | { |
| 273 | 'gpu': None, |
| 274 | }, |
| 275 | ], |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 276 | 'shards': 10, |
Zhaoyang Li | 69e2e00 | 2021-02-19 21:57:35 | [diff] [blame] | 277 | }, |
| 278 | }, |
Lindsay Pasricha | 8d9a0c3 | 2021-12-08 17:08:29 | [diff] [blame] | 279 | 'Mac11 Tests': { |
| 280 | 'swarming': { |
| 281 | 'dimension_sets': [ |
| 282 | { |
| 283 | 'gpu': None, |
| 284 | }, |
| 285 | ], |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 286 | 'shards': 12, |
Lindsay Pasricha | 8d9a0c3 | 2021-12-08 17:08:29 | [diff] [blame] | 287 | }, |
| 288 | }, |
Yue She | 0cad292 | 2022-06-24 15:06:07 | [diff] [blame] | 289 | 'Mac12 Tests': { |
| 290 | 'swarming': { |
| 291 | 'dimension_sets': [ |
| 292 | { |
| 293 | 'gpu': None, |
| 294 | }, |
| 295 | ], |
Lindsay Pasricha | df6edb6 | 2022-07-06 22:08:35 | [diff] [blame] | 296 | 'shards': 12, |
Struan Shrimpton | 5786bfd0 | 2023-01-11 00:47:54 | [diff] [blame] | 297 | 'inverse_quickrun_shards': 24, |
Yue She | 0cad292 | 2022-06-24 15:06:07 | [diff] [blame] | 298 | }, |
| 299 | }, |
Cameron Higgins | 7558b16 | 2022-06-10 18:53:07 | [diff] [blame] | 300 | 'Mac12 Tests (dbg)': { |
Zhaoyang Li | 9357e1e1 | 2021-12-07 18:53:17 | [diff] [blame] | 301 | 'experiment_percentage': 100, |
| 302 | 'args': [ |
| 303 | '--debug', |
| 304 | ], |
| 305 | 'swarming': { |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 306 | 'shards': 16, |
Zhaoyang Li | 9357e1e1 | 2021-12-07 18:53:17 | [diff] [blame] | 307 | }, |
| 308 | }, |
Chong Gu | 75af969a | 2021-03-22 14:46:14 | [diff] [blame] | 309 | 'ToTFuchsia x64': { |
| 310 | 'args': [ |
| 311 | '--platform=fuchsia', |
| 312 | ], |
| 313 | 'swarming': { |
| 314 | 'shards': 1, |
| 315 | }, |
| 316 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 317 | 'V8 Blink Linux Debug': { |
Michael Achenbach | 455d3924 | 2020-06-22 13:33:45 | [diff] [blame] | 318 | # This builder compiles Chromium in release mode, but V8 in debug. |
| 319 | # TODO(machenbach): Change name and out directory of this builder to |
| 320 | # something less confusing. |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 321 | 'args': [ |
Michael Achenbach | 455d3924 | 2020-06-22 13:33:45 | [diff] [blame] | 322 | '-t', |
| 323 | 'Debug', |
| 324 | '--release', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 325 | ], |
| 326 | }, |
| 327 | 'V8 Blink Linux Future': { |
| 328 | 'args': [ |
Brian Sheedy | 10ddf0a | 2021-08-16 23:19:07 | [diff] [blame] | 329 | '--flag-specific=future-js', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 330 | ], |
| 331 | }, |
| 332 | 'WebKit Linux ASAN': { |
| 333 | 'args': [ |
| 334 | '--additional-expectations', |
| 335 | '../../third_party/blink/web_tests/ASANExpectations', |
Weizhong Xia | 91b5336 | 2022-01-05 17:13:35 | [diff] [blame] | 336 | '--timeout-ms', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 337 | '48000', |
| 338 | '--enable-sanitizer', |
| 339 | ], |
| 340 | 'swarming': { |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 341 | 'shards': 8, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 342 | }, |
| 343 | }, |
| 344 | 'WebKit Linux Leak': { |
| 345 | 'args': [ |
| 346 | '--additional-expectations', |
| 347 | '../../third_party/blink/web_tests/LeakExpectations', |
Weizhong Xia | 91b5336 | 2022-01-05 17:13:35 | [diff] [blame] | 348 | '--timeout-ms', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 349 | '48000', |
| 350 | '--enable-leak-detection', |
| 351 | ], |
| 352 | 'swarming': { |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 353 | 'shards': 4, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 354 | }, |
| 355 | }, |
| 356 | 'WebKit Linux MSAN': { |
| 357 | 'args': [ |
| 358 | '--additional-expectations', |
| 359 | '../../third_party/blink/web_tests/MSANExpectations', |
Weizhong Xia | 91b5336 | 2022-01-05 17:13:35 | [diff] [blame] | 360 | '--timeout-ms', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 361 | '66000', |
| 362 | '--enable-sanitizer', |
| 363 | ], |
| 364 | 'swarming': { |
| 365 | 'expiration': 36000, |
| 366 | 'hard_timeout': 10800, |
| 367 | 'io_timeout': 3600, |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 368 | 'shards': 8, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 369 | }, |
| 370 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 371 | 'Win10 Tests x64': { |
| 372 | 'args': [ |
| 373 | '--target', |
Takuto Ikuta | b28b582e | 2021-02-10 01:41:21 | [diff] [blame] | 374 | 'Release_x64', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 375 | ], |
| 376 | 'swarming': { |
Struan Shrimpton | 5786bfd0 | 2023-01-11 00:47:54 | [diff] [blame] | 377 | "shards": 12, |
| 378 | "inverse_quickrun_shards": 24, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 379 | }, |
| 380 | }, |
| 381 | 'Win10 Tests x64 (dbg)': { |
| 382 | 'args': [ |
| 383 | '--debug', |
| 384 | '--target', |
Takuto Ikuta | b28b582e | 2021-02-10 01:41:21 | [diff] [blame] | 385 | 'Debug_x64', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 386 | ], |
| 387 | }, |
Kuan Huang | a89737d | 2022-01-07 19:42:11 | [diff] [blame] | 388 | 'Win11 Tests x64': { |
| 389 | 'args': [ |
| 390 | '--target', |
| 391 | 'Release_x64', |
| 392 | ], |
| 393 | 'swarming': { |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 394 | "shards": 12 |
Kuan Huang | a89737d | 2022-01-07 19:42:11 | [diff] [blame] | 395 | }, |
| 396 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 397 | # tryserver.chromium.android |
| 398 | 'android_blink_rel': { |
| 399 | 'args': [ |
| 400 | '--release', |
| 401 | '--android', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 402 | # TODO(crbug.com/875172): run on the real GPU since the |
| 403 | # software fallback, SwiftShader, isn't yet for 32-bit ARM. |
| 404 | '--additional-driver-flag=--use-gpu-in-tests', |
| 405 | ], |
| 406 | }, |
| 407 | 'devtools_frontend_linux_blink_light_rel': { |
| 408 | 'args': [ |
| 409 | 'http/tests/devtools', |
| 410 | ], |
| 411 | 'swarming': { |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 412 | 'shards': 2, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 413 | }, |
| 414 | }, |
Takuto Ikuta | bace8f8 | 2022-01-26 23:47:47 | [diff] [blame] | 415 | 'devtools_frontend_linux_blink_light_rel_fastbuild': { |
| 416 | 'args': [ |
| 417 | 'http/tests/devtools', |
| 418 | ], |
| 419 | 'swarming': { |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 420 | 'shards': 2, |
Takuto Ikuta | bace8f8 | 2022-01-26 23:47:47 | [diff] [blame] | 421 | }, |
| 422 | }, |
David Dorwin | f060a72d | 2022-10-05 22:09:03 | [diff] [blame] | 423 | 'fuchsia-x64-cast-receiver-rel': { |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 424 | 'args': [ |
| 425 | '--platform=fuchsia', |
David Dorwin | f060a72d | 2022-10-05 22:09:03 | [diff] [blame] | 426 | '--jobs=1', |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 427 | ], |
| 428 | 'swarming': { |
| 429 | 'shards': 1, |
| 430 | }, |
| 431 | }, |
David Dorwin | f060a72d | 2022-10-05 22:09:03 | [diff] [blame] | 432 | 'fuchsia-x64-chrome-rel': { |
David Dorwin | 49b2ddb | 2022-09-08 20:49:43 | [diff] [blame] | 433 | 'args': [ |
| 434 | '--platform=fuchsia', |
David Dorwin | 49b2ddb | 2022-09-08 20:49:43 | [diff] [blame] | 435 | ], |
| 436 | 'swarming': { |
| 437 | 'shards': 1, |
| 438 | }, |
| 439 | }, |
| 440 | 'fuchsia-x64-rel': { |
| 441 | 'args': [ |
| 442 | '--platform=fuchsia', |
| 443 | '--jobs=1', |
| 444 | ], |
| 445 | 'swarming': { |
| 446 | 'shards': 1, |
| 447 | }, |
| 448 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 449 | 'linux-blink-animation-use-time-delta': { |
| 450 | 'args': [ |
| 451 | '--debug', |
| 452 | ], |
| 453 | }, |
Jonathan Lee | d3ba7bf | 2023-01-13 21:15:16 | [diff] [blame] | 454 | 'linux-blink-rel': { |
| 455 | 'swarming': { |
| 456 | 'hard_timeout': 2400, |
| 457 | }, |
| 458 | }, |
Daniel Libby | 178c983 | 2020-10-08 20:36:14 | [diff] [blame] | 459 | 'linux-blink-web-tests-force-accessibility-rel': { |
| 460 | 'args': [ |
Brian Sheedy | 10ddf0a | 2021-08-16 23:19:07 | [diff] [blame] | 461 | '--flag-specific=force-renderer-accessibility', |
Daniel Libby | 178c983 | 2020-10-08 20:36:14 | [diff] [blame] | 462 | ], |
| 463 | }, |
W. James MacLean | ce9b3a6 | 2022-10-05 16:58:58 | [diff] [blame] | 464 | 'linux-blink-wpt-reset-rel': { |
| 465 | 'args': [ |
| 466 | '--additional-driver-flag=--force-browsing-instance-reset-between-tests', |
| 467 | ], |
| 468 | # The flag above will slow the tests down, and we don't want the bot to |
| 469 | # timeout, so set a higher timeout here. |
| 470 | # TODO(wjmaclean): It would be nice if we could somehow specify a delta |
| 471 | # to the default/inherited timeout instead of an absolute. |
| 472 | 'swarming': { |
| 473 | 'hard_timeout': 1500, |
| 474 | }, |
| 475 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 476 | 'linux-code-coverage': { |
| 477 | 'args': [ |
| 478 | '--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw', |
| 479 | ], |
| 480 | 'swarming': { |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 481 | 'shards': 8, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 482 | }, |
| 483 | }, |
Aaron Gable | 40f79aa | 2020-03-21 01:21:15 | [diff] [blame] | 484 | 'linux-layout-tests-edit-ng': { |
| 485 | 'args': [ |
Brian Sheedy | 10ddf0a | 2021-08-16 23:19:07 | [diff] [blame] | 486 | '--flag-specific=enable-editing-ng', |
Aaron Gable | 40f79aa | 2020-03-21 01:21:15 | [diff] [blame] | 487 | ], |
| 488 | }, |
Thiago Perrotta | 6148746 | 2023-01-20 12:52:32 | [diff] [blame] | 489 | 'linux-rel-cft': { |
| 490 | "args": [ |
| 491 | "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw", |
| 492 | ], |
| 493 | 'swarming': { |
| 494 | 'shards': 8, |
| 495 | }, |
| 496 | }, |
Thiago Perrotta | a289bad | 2023-01-20 12:44:39 | [diff] [blame] | 497 | 'mac-rel-cft': { |
| 498 | 'swarming': { |
| 499 | 'dimension_sets': [ |
| 500 | { |
| 501 | 'gpu': None, |
| 502 | }, |
| 503 | ], |
| 504 | 'shards': 12, |
| 505 | 'inverse_quickrun_shards': 24, |
| 506 | }, |
| 507 | }, |
Riley Wong | 89d6dc7 | 2022-09-08 20:29:07 | [diff] [blame] | 508 | 'mac10.13-blink-rel': { |
| 509 | 'swarming': { |
| 510 | 'shards': 1, |
| 511 | }, |
| 512 | }, |
Riley Wong | 89d6dc7 | 2022-09-08 20:29:07 | [diff] [blame] | 513 | 'mac10.14-blink-rel': { |
| 514 | 'swarming': { |
| 515 | 'shards': 1, |
| 516 | }, |
| 517 | }, |
Riley Wong | 89d6dc7 | 2022-09-08 20:29:07 | [diff] [blame] | 518 | 'mac10.15-blink-rel': { |
| 519 | 'swarming': { |
| 520 | 'shards': 8, |
Weizhong Xia | 21063c7 | 2022-11-09 23:48:30 | [diff] [blame] | 521 | 'hard_timeout': 2400, |
Riley Wong | 89d6dc7 | 2022-09-08 20:29:07 | [diff] [blame] | 522 | }, |
| 523 | }, |
Riley Wong | c20ba4a | 2022-09-12 17:06:31 | [diff] [blame] | 524 | 'mac11.0-blink-rel': { |
| 525 | 'swarming': { |
| 526 | 'shards': 5, |
Weizhong Xia | 21063c7 | 2022-11-09 23:48:30 | [diff] [blame] | 527 | 'hard_timeout': 2400, |
| 528 | }, |
| 529 | }, |
| 530 | 'mac11.0.arm64-blink-rel': { |
| 531 | 'swarming': { |
| 532 | 'hard_timeout': 2400, |
| 533 | }, |
| 534 | }, |
| 535 | 'mac12.0-blink-rel': { |
| 536 | 'swarming': { |
| 537 | 'hard_timeout': 2400, |
| 538 | }, |
| 539 | }, |
| 540 | 'mac12.0.arm64-blink-rel': { |
| 541 | 'swarming': { |
| 542 | 'hard_timeout': 2400, |
Riley Wong | c20ba4a | 2022-09-12 17:06:31 | [diff] [blame] | 543 | }, |
| 544 | }, |
Thiago Perrotta | 770925d4 | 2023-01-17 18:38:51 | [diff] [blame] | 545 | 'win-rel-cft': { |
| 546 | 'args': [ |
| 547 | '--target', |
| 548 | 'Release_x64', |
| 549 | ], |
Thiago Perrotta | 314f7b0 | 2023-01-19 21:30:53 | [diff] [blame] | 550 | 'swarming': { |
| 551 | "shards": 12, |
| 552 | "inverse_quickrun_shards": 24, |
| 553 | }, |
Thiago Perrotta | 770925d4 | 2023-01-17 18:38:51 | [diff] [blame] | 554 | }, |
Ben Pastene | ebad8fc | 2022-08-12 23:34:28 | [diff] [blame] | 555 | 'win10-rel-no-external-ip': { |
| 556 | 'args': [ |
| 557 | '--target', |
| 558 | 'Release_x64', |
| 559 | ], |
| 560 | 'swarming': { |
| 561 | "shards": 12 |
| 562 | }, |
| 563 | }, |
Riley Wong | 5feb0eb | 2022-08-05 15:49:26 | [diff] [blame] | 564 | 'win10.20h2-blink-rel': { |
| 565 | 'swarming': { |
| 566 | 'shards': 6, |
Weizhong Xia | 21063c7 | 2022-11-09 23:48:30 | [diff] [blame] | 567 | 'hard_timeout': 2400, |
Riley Wong | 5feb0eb | 2022-08-05 15:49:26 | [diff] [blame] | 568 | }, |
| 569 | }, |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 570 | 'win11-blink-rel': { |
| 571 | 'swarming': { |
Weizhong Xia | 21063c7 | 2022-11-09 23:48:30 | [diff] [blame] | 572 | 'hard_timeout': 2400, |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 573 | }, |
| 574 | 'args': [ |
| 575 | '--target', |
| 576 | 'Release_x64', |
| 577 | ], |
| 578 | }, |
| 579 | }, |
| 580 | }, |
| 581 | 'blink_wpt_tests': { |
| 582 | 'remove_from': [ |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 583 | 'Win10 Tests x64 (dbg)', |
Weizhong Xia | 6d85a44 | 2022-06-23 17:17:06 | [diff] [blame] | 584 | 'devtools_frontend_linux_blink_light_rel', |
| 585 | 'devtools_frontend_linux_blink_light_rel_fastbuild', |
Rahul Kumar Adudodla | 35da216b | 2022-11-21 19:48:20 | [diff] [blame] | 586 | 'mac-osxbeta-rel', |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 587 | ], |
| 588 | 'modifications': { |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 589 | 'Linux Tests': { |
| 590 | "args": [ |
| 591 | "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw", |
| 592 | ], |
| 593 | 'swarming': { |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 594 | 'shards': 10, |
| 595 | }, |
| 596 | }, |
| 597 | 'Linux Tests (dbg)(1)': { |
| 598 | 'args': [ |
| 599 | '--debug', |
| 600 | ], |
| 601 | 'swarming': { |
| 602 | 'shards': 18, |
| 603 | }, |
| 604 | }, |
| 605 | 'Mac10.13 Tests': { |
| 606 | 'swarming': { |
| 607 | 'dimension_sets': [ |
| 608 | { |
| 609 | 'gpu': None, |
| 610 | }, |
| 611 | ], |
| 612 | 'shards': 15, |
| 613 | }, |
| 614 | }, |
| 615 | 'Mac10.15 Tests': { |
| 616 | 'swarming': { |
| 617 | 'dimension_sets': [ |
| 618 | { |
| 619 | 'gpu': None, |
| 620 | }, |
| 621 | ], |
| 622 | 'shards': 15, |
| 623 | }, |
| 624 | }, |
| 625 | 'Mac11 Tests': { |
| 626 | 'swarming': { |
| 627 | 'dimension_sets': [ |
| 628 | { |
| 629 | 'gpu': None, |
| 630 | }, |
| 631 | ], |
| 632 | 'shards': 18, |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 633 | }, |
| 634 | }, |
Lindsay Pasricha | df6edb6 | 2022-07-06 22:08:35 | [diff] [blame] | 635 | 'Mac12 Tests': { |
Jie Sheng | cc95e74 | 2022-11-15 16:26:53 | [diff] [blame] | 636 | 'args': [ |
| 637 | '--driver-logging', |
| 638 | ], |
Lindsay Pasricha | df6edb6 | 2022-07-06 22:08:35 | [diff] [blame] | 639 | 'swarming': { |
| 640 | 'dimension_sets': [ |
| 641 | { |
| 642 | 'gpu': None, |
| 643 | }, |
| 644 | ], |
| 645 | 'shards': 18, |
Struan Shrimpton | 5786bfd0 | 2023-01-11 00:47:54 | [diff] [blame] | 646 | 'inverse_quickrun_shards': 36, |
Lindsay Pasricha | df6edb6 | 2022-07-06 22:08:35 | [diff] [blame] | 647 | }, |
| 648 | }, |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 649 | 'Mac12 Tests (dbg)': { |
| 650 | 'experiment_percentage': 100, |
| 651 | 'args': [ |
| 652 | '--debug', |
| 653 | ], |
| 654 | 'swarming': { |
| 655 | 'shards': 24, |
| 656 | }, |
| 657 | }, |
| 658 | 'ToTFuchsia x64': { |
| 659 | 'args': [ |
| 660 | '--platform=fuchsia', |
| 661 | ], |
| 662 | 'swarming': { |
| 663 | 'shards': 1, |
| 664 | }, |
| 665 | }, |
| 666 | 'V8 Blink Linux Debug': { |
| 667 | # This builder compiles Chromium in release mode, but V8 in debug. |
| 668 | # TODO(machenbach): Change name and out directory of this builder to |
| 669 | # something less confusing. |
| 670 | 'args': [ |
| 671 | '-t', |
| 672 | 'Debug', |
| 673 | '--release', |
| 674 | ], |
| 675 | }, |
| 676 | 'V8 Blink Linux Future': { |
| 677 | 'args': [ |
| 678 | '--flag-specific=future-js', |
| 679 | ], |
| 680 | }, |
| 681 | 'WebKit Linux ASAN': { |
| 682 | 'args': [ |
| 683 | '--additional-expectations', |
| 684 | '../../third_party/blink/web_tests/ASANExpectations', |
| 685 | '--timeout-ms', |
| 686 | '48000', |
| 687 | '--enable-sanitizer', |
| 688 | ], |
| 689 | 'swarming': { |
| 690 | 'shards': 12, |
| 691 | }, |
| 692 | }, |
| 693 | 'WebKit Linux Leak': { |
| 694 | 'args': [ |
| 695 | '--additional-expectations', |
| 696 | '../../third_party/blink/web_tests/LeakExpectations', |
| 697 | '--timeout-ms', |
| 698 | '48000', |
| 699 | '--enable-leak-detection', |
| 700 | ], |
| 701 | 'swarming': { |
| 702 | 'shards': 6, |
| 703 | }, |
| 704 | }, |
| 705 | 'WebKit Linux MSAN': { |
| 706 | 'args': [ |
| 707 | '--additional-expectations', |
| 708 | '../../third_party/blink/web_tests/MSANExpectations', |
| 709 | '--timeout-ms', |
| 710 | '66000', |
| 711 | '--enable-sanitizer', |
| 712 | ], |
| 713 | 'swarming': { |
| 714 | 'expiration': 36000, |
| 715 | 'hard_timeout': 10800, |
| 716 | 'io_timeout': 3600, |
| 717 | 'shards': 12, |
| 718 | }, |
| 719 | }, |
| 720 | 'Win10 Tests x64': { |
| 721 | 'args': [ |
| 722 | '--target', |
| 723 | 'Release_x64', |
| 724 | ], |
| 725 | 'swarming': { |
Struan Shrimpton | 5786bfd0 | 2023-01-11 00:47:54 | [diff] [blame] | 726 | "shards": 18, |
| 727 | "inverse_quickrun_shards": 36, |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 728 | }, |
| 729 | }, |
| 730 | 'Win10 Tests x64 (dbg)': { |
| 731 | 'args': [ |
| 732 | '--debug', |
| 733 | '--target', |
| 734 | 'Debug_x64', |
| 735 | ], |
| 736 | }, |
| 737 | 'Win11 Tests x64': { |
| 738 | 'args': [ |
| 739 | '--target', |
| 740 | 'Release_x64', |
| 741 | ], |
| 742 | 'swarming': { |
| 743 | "shards": 18 |
| 744 | }, |
| 745 | }, |
| 746 | # tryserver.chromium.android |
| 747 | 'android_blink_rel': { |
| 748 | 'args': [ |
| 749 | '--release', |
| 750 | '--android', |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 751 | # TODO(crbug.com/875172): run on the real GPU since the |
| 752 | # software fallback, SwiftShader, isn't yet for 32-bit ARM. |
| 753 | '--additional-driver-flag=--use-gpu-in-tests', |
| 754 | ], |
| 755 | }, |
David Dorwin | f060a72d | 2022-10-05 22:09:03 | [diff] [blame] | 756 | 'fuchsia-x64-cast-receiver-rel': { |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 757 | 'args': [ |
| 758 | '--platform=fuchsia', |
David Dorwin | f060a72d | 2022-10-05 22:09:03 | [diff] [blame] | 759 | '--jobs=1', |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 760 | ], |
| 761 | 'swarming': { |
| 762 | 'shards': 1, |
| 763 | }, |
| 764 | }, |
David Dorwin | f060a72d | 2022-10-05 22:09:03 | [diff] [blame] | 765 | 'fuchsia-x64-chrome-rel': { |
David Dorwin | 49b2ddb | 2022-09-08 20:49:43 | [diff] [blame] | 766 | 'args': [ |
| 767 | '--platform=fuchsia', |
David Dorwin | 49b2ddb | 2022-09-08 20:49:43 | [diff] [blame] | 768 | ], |
| 769 | 'swarming': { |
| 770 | 'shards': 1, |
| 771 | }, |
| 772 | }, |
| 773 | 'fuchsia-x64-rel': { |
| 774 | 'args': [ |
| 775 | '--platform=fuchsia', |
| 776 | '--jobs=1', |
| 777 | ], |
| 778 | 'swarming': { |
| 779 | 'shards': 1, |
| 780 | }, |
| 781 | }, |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 782 | 'linux-bfcache-rel': { |
| 783 | 'args': [ |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 784 | # TODO(crbug.com/1255537): Re-enable the test. |
| 785 | '--ignore-tests=external/wpt/html/browsers/browsing-the-web/back-forward-cache/events.html', |
| 786 | ], |
| 787 | }, |
| 788 | 'linux-blink-animation-use-time-delta': { |
| 789 | 'args': [ |
| 790 | '--debug', |
| 791 | ], |
| 792 | }, |
Jonathan Lee | d3ba7bf | 2023-01-13 21:15:16 | [diff] [blame] | 793 | 'linux-blink-rel': { |
| 794 | 'swarming': { |
| 795 | 'hard_timeout': 2400, |
| 796 | }, |
| 797 | }, |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 798 | 'linux-blink-web-tests-force-accessibility-rel': { |
| 799 | 'args': [ |
| 800 | '--flag-specific=force-renderer-accessibility', |
| 801 | ], |
| 802 | }, |
W. James MacLean | ce9b3a6 | 2022-10-05 16:58:58 | [diff] [blame] | 803 | 'linux-blink-wpt-reset-rel': { |
| 804 | 'args': [ |
| 805 | '--additional-driver-flag=--force-browsing-instance-reset-between-tests', |
| 806 | ], |
| 807 | }, |
Weizhong Xia | 8b78642 | 2022-06-23 14:46:51 | [diff] [blame] | 808 | 'linux-code-coverage': { |
| 809 | 'args': [ |
| 810 | '--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw', |
| 811 | ], |
| 812 | 'swarming': { |
| 813 | 'shards': 12, |
| 814 | }, |
| 815 | }, |
| 816 | 'linux-layout-tests-edit-ng': { |
| 817 | 'args': [ |
| 818 | '--flag-specific=enable-editing-ng', |
| 819 | ], |
| 820 | }, |
Thiago Perrotta | 6148746 | 2023-01-20 12:52:32 | [diff] [blame] | 821 | 'linux-rel-cft': { |
| 822 | "args": [ |
| 823 | "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw", |
| 824 | ], |
| 825 | 'swarming': { |
| 826 | 'shards': 10, |
| 827 | }, |
| 828 | }, |
Thiago Perrotta | a289bad | 2023-01-20 12:44:39 | [diff] [blame] | 829 | 'mac-rel-cft': { |
| 830 | 'args': [ |
| 831 | '--driver-logging', |
| 832 | ], |
| 833 | 'swarming': { |
| 834 | 'dimension_sets': [ |
| 835 | { |
| 836 | 'gpu': None, |
| 837 | }, |
| 838 | ], |
| 839 | 'shards': 18, |
| 840 | 'inverse_quickrun_shards': 36, |
| 841 | }, |
| 842 | }, |
Riley Wong | 89d6dc7 | 2022-09-08 20:29:07 | [diff] [blame] | 843 | 'mac10.13-blink-rel': { |
| 844 | 'swarming': { |
| 845 | 'shards': 1, |
| 846 | }, |
| 847 | }, |
Riley Wong | 89d6dc7 | 2022-09-08 20:29:07 | [diff] [blame] | 848 | 'mac10.14-blink-rel': { |
| 849 | 'swarming': { |
| 850 | 'shards': 1, |
| 851 | }, |
| 852 | }, |
Riley Wong | 89d6dc7 | 2022-09-08 20:29:07 | [diff] [blame] | 853 | 'mac10.15-blink-rel': { |
| 854 | 'swarming': { |
| 855 | 'shards': 12, |
Weizhong Xia | 21063c7 | 2022-11-09 23:48:30 | [diff] [blame] | 856 | 'hard_timeout': 2400, |
Riley Wong | 89d6dc7 | 2022-09-08 20:29:07 | [diff] [blame] | 857 | }, |
| 858 | }, |
Riley Wong | c20ba4a | 2022-09-12 17:06:31 | [diff] [blame] | 859 | 'mac11.0-blink-rel': { |
| 860 | 'swarming': { |
| 861 | 'shards': 7, |
Weizhong Xia | 21063c7 | 2022-11-09 23:48:30 | [diff] [blame] | 862 | 'hard_timeout': 2400, |
| 863 | }, |
| 864 | }, |
| 865 | 'mac11.0.arm64-blink-rel': { |
| 866 | 'swarming': { |
| 867 | 'hard_timeout': 2400, |
| 868 | }, |
| 869 | }, |
| 870 | 'mac12.0-blink-rel': { |
| 871 | 'swarming': { |
| 872 | 'hard_timeout': 2400, |
| 873 | }, |
| 874 | }, |
| 875 | 'mac12.0.arm64-blink-rel': { |
| 876 | 'swarming': { |
| 877 | 'hard_timeout': 2400, |
Riley Wong | c20ba4a | 2022-09-12 17:06:31 | [diff] [blame] | 878 | }, |
| 879 | }, |
Thiago Perrotta | 770925d4 | 2023-01-17 18:38:51 | [diff] [blame] | 880 | 'win-rel-cft': { |
| 881 | 'args': [ |
| 882 | '--target', |
| 883 | 'Release_x64', |
| 884 | ], |
Thiago Perrotta | 314f7b0 | 2023-01-19 21:30:53 | [diff] [blame] | 885 | 'swarming': { |
| 886 | "shards": 18, |
| 887 | "inverse_quickrun_shards": 36, |
| 888 | }, |
Thiago Perrotta | 770925d4 | 2023-01-17 18:38:51 | [diff] [blame] | 889 | }, |
Ben Pastene | ebad8fc | 2022-08-12 23:34:28 | [diff] [blame] | 890 | 'win10-rel-no-external-ip': { |
| 891 | 'args': [ |
| 892 | '--target', |
| 893 | 'Release_x64', |
| 894 | ], |
| 895 | 'swarming': { |
| 896 | "shards": 18 |
| 897 | }, |
| 898 | }, |
Riley Wong | 5feb0eb | 2022-08-05 15:49:26 | [diff] [blame] | 899 | 'win10.20h2-blink-rel': { |
| 900 | 'swarming': { |
| 901 | 'shards': 9, |
Weizhong Xia | 21063c7 | 2022-11-09 23:48:30 | [diff] [blame] | 902 | 'hard_timeout': 2400, |
Riley Wong | 5feb0eb | 2022-08-05 15:49:26 | [diff] [blame] | 903 | }, |
| 904 | }, |
Riley Wong | 5fc2276 | 2022-06-15 20:25:07 | [diff] [blame] | 905 | 'win11-blink-rel': { |
| 906 | 'swarming': { |
Weizhong Xia | 21063c7 | 2022-11-09 23:48:30 | [diff] [blame] | 907 | 'hard_timeout': 2400, |
Riley Wong | 5fc2276 | 2022-06-15 20:25:07 | [diff] [blame] | 908 | }, |
| 909 | 'args': [ |
| 910 | '--target', |
| 911 | 'Release_x64', |
| 912 | ], |
Thiago Perrotta | 770925d4 | 2023-01-17 18:38:51 | [diff] [blame] | 913 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 914 | }, |
| 915 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 916 | 'browser_tests': { |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 917 | 'remove_from': [ |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 918 | 'CrWinAsan(dll)', # https://crbug.com/935598 |
Nico Weber | 3af4da7 | 2018-02-27 01:59:41 | [diff] [blame] | 919 | 'linux-win_cross-rel', |
Nico Weber | dae13cd9 | 2018-12-14 13:56:26 | [diff] [blame] | 920 | 'ToTLinuxTSan', # https://crbug.com/368525 |
Lindsay Pasricha | b3f72db | 2021-09-22 22:05:46 | [diff] [blame] | 921 | # 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] | 922 | # off CQ. |
Gary Tong | d5f5a74 | 2021-01-29 00:01:13 | [diff] [blame] | 923 | 'Mac10.13 Tests', # https://crbug.com/1042757 |
Zhaoyang Li | 69e2e00 | 2021-02-19 21:57:35 | [diff] [blame] | 924 | 'Mac10.15 Tests', # https://crbug.com/1042757 |
Cameron Higgins | 7558b16 | 2022-06-10 18:53:07 | [diff] [blame] | 925 | 'Mac12 Tests (dbg)', # https://crbug.com/1201386 |
Lindsay Pasricha | 8155d05 | 2021-04-22 00:06:43 | [diff] [blame] | 926 | 'mac-code-coverage', # https://crbug.com/1201386 |
Lindsay Pasricha | 2322791 | 2023-01-11 22:36:34 | [diff] [blame] | 927 | 'mac11-arm64-rel-tests', # https://crbug.com/1406364 |
| 928 | 'mac12-arm64-rel-tests', # https://crbug.com/1406364 |
Nico Weber | d3695968 | 2018-04-12 03:33:46 | [diff] [blame] | 929 | 'Linux TSan Tests', # https://crbug.com/368525 |
Stephen Martinis | e701f5a | 2018-05-04 01:25:11 | [diff] [blame] | 930 | 'Win10 Tests x64 (dbg)', |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 931 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 932 | 'modifications': { |
Nico Weber | 3f91979 | 2020-06-12 23:34:52 | [diff] [blame] | 933 | 'CrWinAsan': { |
| 934 | # These are very slow on the ASAN trybot for some reason. |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 935 | # crbug.com/1257927 |
Nico Weber | 3f91979 | 2020-06-12 23:34:52 | [diff] [blame] | 936 | 'swarming': { |
| 937 | 'shards': 40, |
| 938 | }, |
| 939 | }, |
| 940 | 'CrWinAsan(dll)': { |
| 941 | # These are very slow on the ASAN trybot for some reason. |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 942 | # crbug.com/1257927 |
Nico Weber | 3f91979 | 2020-06-12 23:34:52 | [diff] [blame] | 943 | 'swarming': { |
| 944 | 'shards': 40, |
| 945 | }, |
| 946 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 947 | 'Linux - Future (dbg)': { # client.v8.chromium |
Yuke Liao | ea70f47 | 2019-12-19 06:03:36 | [diff] [blame] | 948 | 'swarming': { |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 949 | 'shards': 10, |
Yuke Liao | ea70f47 | 2019-12-19 06:03:36 | [diff] [blame] | 950 | }, |
| 951 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 952 | 'Linux ASan LSan Tests (1)': { |
Gregory Guterman | b6f9a97 | 2022-09-27 20:17:58 | [diff] [blame] | 953 | 'ci_only': True, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 954 | # These are very slow on the ASAN trybot for some reason. |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 955 | # crbug.com/1257927 |
Roberto Carrillo | 2c9ec97 | 2019-03-20 03:11:19 | [diff] [blame] | 956 | 'swarming': { |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 957 | 'shards': 40, |
Roberto Carrillo | 2c9ec97 | 2019-03-20 03:11:19 | [diff] [blame] | 958 | }, |
| 959 | }, |
Chris Cunningham | 1d0e9e1 | 2020-02-26 22:56:40 | [diff] [blame] | 960 | 'Linux ASan Tests (sandboxed)': { |
| 961 | 'swarming': { |
John Abd-El-Malek | 3a63161 | 2020-07-08 21:40:41 | [diff] [blame] | 962 | 'shards': 30, # https://crbug.com/1103330 |
Chris Cunningham | 1d0e9e1 | 2020-02-26 22:56:40 | [diff] [blame] | 963 | }, |
| 964 | }, |
Titouan Rigoudy | 3fbe274 | 2022-09-09 17:10:14 | [diff] [blame] | 965 | 'Linux CFI': { |
| 966 | 'swarming': { |
| 967 | 'shards': 20, # https://crbug.com/1361973 |
| 968 | }, |
| 969 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 970 | 'Linux Chromium OS ASan LSan Tests (1)': { |
| 971 | # These are very slow on the ASAN trybot for some reason. |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 972 | # crbug.com/1257927 |
Roberto Carrillo | 5a5c98dc | 2019-10-30 22:33:51 | [diff] [blame] | 973 | 'swarming': { |
Chris Cunningham | 74217f3 | 2022-05-02 18:47:23 | [diff] [blame] | 974 | 'shards': 60, |
Roberto Carrillo | 5a5c98dc | 2019-10-30 22:33:51 | [diff] [blame] | 975 | }, |
| 976 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 977 | 'Linux ChromiumOS MSan Tests': { |
Alexis Hetu | a804f741 | 2022-05-13 17:04:20 | [diff] [blame] | 978 | # These are very slow on the Chrome OS MSAN trybot, most likely because browser_tests on cros has ~40% more tests. Also, these tests |
| 979 | # run on ash, which means every test starts and shuts down ash, which most likely explains why it takes longer than on other platforms. |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 980 | # crbug.com/865455 |
Kenneth Russell | 56a3e86 | 2017-12-08 03:11:34 | [diff] [blame] | 981 | 'swarming': { |
Tom Anderson | 1e776fcd | 2023-01-06 19:53:29 | [diff] [blame] | 982 | 'shards': 64, |
Kenneth Russell | 56a3e86 | 2017-12-08 03:11:34 | [diff] [blame] | 983 | }, |
Ben Pastene | 44221d3 | 2020-05-21 23:38:36 | [diff] [blame] | 984 | 'args': [ |
| 985 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.msan.browser_tests.oobe_negative.filter', |
| 986 | ], |
Kenneth Russell | 56a3e86 | 2017-12-08 03:11:34 | [diff] [blame] | 987 | }, |
Struan Shrimpton | a9b1d51 | 2022-09-13 16:09:42 | [diff] [blame] | 988 | 'Linux MSan Tests': { |
| 989 | 'swarming': { |
Ben Pastene | 6c4db11 | 2022-10-21 18:55:34 | [diff] [blame] | 990 | 'shards': 15, |
Struan Shrimpton | a9b1d51 | 2022-09-13 16:09:42 | [diff] [blame] | 991 | }, |
| 992 | }, |
Struan Shrimpton | f5b2b55 | 2022-01-20 20:37:39 | [diff] [blame] | 993 | 'Linux Tests': { |
| 994 | 'swarming': { |
Stephanie Kim | 8332c7dd | 2022-11-07 20:03:49 | [diff] [blame] | 995 | 'shards': 20, |
Struan Shrimpton | f5b2b55 | 2022-01-20 20:37:39 | [diff] [blame] | 996 | }, |
| 997 | }, |
Maksim Sisov | c81d284c | 2021-10-05 17:54:35 | [diff] [blame] | 998 | # https://crbug.com/1084469 |
| 999 | 'Linux Tests (Wayland)': { |
| 1000 | 'args': [ |
| 1001 | '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.wayland_browser_tests.filter', |
| 1002 | ], |
Struan Shrimpton | e772d72f | 2021-12-15 07:50:09 | [diff] [blame] | 1003 | 'swarming': { |
Stephanie Kim | 8332c7dd | 2022-11-07 20:03:49 | [diff] [blame] | 1004 | 'shards': 20, |
Struan Shrimpton | e772d72f | 2021-12-15 07:50:09 | [diff] [blame] | 1005 | 'quickrun_shards': 24, |
| 1006 | }, |
Maksim Sisov | c81d284c | 2021-10-05 17:54:35 | [diff] [blame] | 1007 | }, |
John Budorick | 614f91a | 2020-03-30 20:34:55 | [diff] [blame] | 1008 | 'Linux Tests (dbg)(1)': { |
| 1009 | # crbug.com/1066161 |
| 1010 | 'swarming': { |
| 1011 | 'shards': 20, |
| 1012 | }, |
| 1013 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1014 | 'Mac ASan 64 Tests (1)': { |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 1015 | 'swarming': { |
Stephen Martinis | cd3c383 | 2020-11-19 22:01:24 | [diff] [blame] | 1016 | 'shards': 30, |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 1017 | }, |
Lindsay Pasricha | 8155d05 | 2021-04-22 00:06:43 | [diff] [blame] | 1018 | # crbug.com/1196416 |
| 1019 | 'args': [ |
| 1020 | '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac-rel.browser_tests.filter', |
| 1021 | ], |
Lindsay Pasricha | b3f72db | 2021-09-22 22:05:46 | [diff] [blame] | 1022 | 'experiment_percentage': 100, # https://crbug.com/1251657 |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 1023 | }, |
Lindsay Pasricha | 76f44d2 | 2021-04-07 16:16:26 | [diff] [blame] | 1024 | 'Mac10.15 Tests': { |
| 1025 | # crbug.com/1042757 |
| 1026 | 'swarming': { |
| 1027 | 'dimension_sets': [ |
| 1028 | { |
| 1029 | # These shards are liable to time out when running on macmini7,1. |
| 1030 | 'cores': '8|12', |
| 1031 | } |
| 1032 | ], |
| 1033 | }, |
| 1034 | # crbug.com/1196416 |
| 1035 | 'args': [ |
| 1036 | '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac-rel.browser_tests.filter', |
| 1037 | ], |
| 1038 | }, |
Lindsay Pasricha | f876259 | 2021-12-02 23:43:09 | [diff] [blame] | 1039 | 'Mac11 Tests': { |
| 1040 | 'ci_only': True, |
Lindsay Pasricha | ee30f25 | 2022-10-11 22:02:48 | [diff] [blame] | 1041 | 'swarming': { |
| 1042 | 'shards': 20, # crbug.com/1366016 |
| 1043 | }, |
Lindsay Pasricha | f876259 | 2021-12-02 23:43:09 | [diff] [blame] | 1044 | }, |
Yue She | 0cad292 | 2022-06-24 15:06:07 | [diff] [blame] | 1045 | 'Mac12 Tests': { |
| 1046 | 'ci_only': True, |
Titouan Rigoudy | cd0e6dd7 | 2022-09-09 13:18:20 | [diff] [blame] | 1047 | 'swarming': { |
| 1048 | 'shards': 20, # crbug.com/1361887 |
| 1049 | }, |
Yue She | 0cad292 | 2022-06-24 15:06:07 | [diff] [blame] | 1050 | }, |
Cameron Higgins | 7558b16 | 2022-06-10 18:53:07 | [diff] [blame] | 1051 | 'Mac12 Tests (dbg)': { |
Zhaoyang Li | 9357e1e1 | 2021-12-07 18:53:17 | [diff] [blame] | 1052 | # crbug.com/1042757 |
| 1053 | 'swarming': { |
| 1054 | 'dimension_sets': [ |
| 1055 | { |
| 1056 | # These shards are liable to time out when running on macmini7,1. |
| 1057 | 'cores': '8|12', |
| 1058 | } |
| 1059 | ], |
| 1060 | }, |
| 1061 | # crbug.com/1196416 |
| 1062 | 'args': [ |
| 1063 | '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac-rel.browser_tests.filter', |
| 1064 | ], |
| 1065 | }, |
Tom Anderson | 482eab1 | 2023-01-10 00:05:37 | [diff] [blame] | 1066 | 'ToTLinuxMSan': { |
| 1067 | 'swarming': { |
| 1068 | 'shards': 24, |
| 1069 | }, |
| 1070 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1071 | 'ToTWin(dbg)': { |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1072 | 'swarming': { |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 1073 | 'shards': 20, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1074 | }, |
| 1075 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1076 | 'ToTWin64(dbg)': { |
Kenneth Russell | 8ceeabf | 2017-12-11 17:53:28 | [diff] [blame] | 1077 | 'swarming': { |
| 1078 | 'shards': 20, |
| 1079 | }, |
| 1080 | }, |
Kenneth Russell | 6c83d21 | 2018-07-27 20:52:59 | [diff] [blame] | 1081 | 'Win10 Tests x64': { |
| 1082 | # crbug.com/868082 |
| 1083 | 'args': [ |
| 1084 | '--disable-features=WebRTC-H264WithOpenH264FFmpeg', |
| 1085 | ], |
Takuto Ikuta | c9c269a | 2019-01-10 22:40:25 | [diff] [blame] | 1086 | 'swarming': { |
| 1087 | # This is for slow test execution that often becomes a critical path of |
| 1088 | # swarming jobs. crbug.com/868114 |
Stephanie Kim | a57b46a | 2022-10-27 22:09:03 | [diff] [blame] | 1089 | 'shards': 55, |
Takuto Ikuta | c9c269a | 2019-01-10 22:40:25 | [diff] [blame] | 1090 | } |
Kenneth Russell | 6c83d21 | 2018-07-27 20:52:59 | [diff] [blame] | 1091 | }, |
Kuan Huang | a89737d | 2022-01-07 19:42:11 | [diff] [blame] | 1092 | 'Win11 Tests x64': { |
| 1093 | # crbug.com/868082 |
| 1094 | 'args': [ |
| 1095 | '--disable-features=WebRTC-H264WithOpenH264FFmpeg', |
| 1096 | ], |
| 1097 | 'swarming': { |
| 1098 | # This is for slow test execution that often becomes a critical path of |
| 1099 | # swarming jobs. crbug.com/868114 |
| 1100 | 'shards': 15, |
| 1101 | 'quickrun_shards': 30, |
| 1102 | } |
| 1103 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1104 | 'linux-chromeos-chrome': { |
| 1105 | # TODO(https://crbug.com/932269): Promote out of experiment when the |
| 1106 | # tests are green. |
| 1107 | 'args': [ |
| 1108 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.browser_tests.filter', |
| 1109 | ], |
Ben Pastene | 3747309 | 2022-08-02 19:16:46 | [diff] [blame] | 1110 | 'swarming': { |
| 1111 | 'shards': 20, |
| 1112 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1113 | }, |
| 1114 | 'linux-chromeos-code-coverage': { |
Nico Weber | 0c2861b | 2018-12-14 18:05:16 | [diff] [blame] | 1115 | 'swarming': { |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1116 | 'shards': 50, |
| 1117 | }, |
| 1118 | }, |
| 1119 | 'linux-chromeos-dbg': { |
| 1120 | 'swarming': { |
Chris Cunningham | 88e70de | 2022-05-02 23:39:16 | [diff] [blame] | 1121 | 'shards': 50, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1122 | }, |
| 1123 | }, |
| 1124 | 'linux-chromeos-rel': { |
| 1125 | 'swarming': { |
Stephanie Kim | c932b4c | 2022-11-01 21:29:38 | [diff] [blame] | 1126 | 'shards': 60, |
Stephanie Kim | e9008f7 | 2020-03-05 23:01:16 | [diff] [blame] | 1127 | 'dimension_sets': [ |
| 1128 | { |
| 1129 | 'kvm': '1', |
| 1130 | }, |
| 1131 | ], |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1132 | }, |
| 1133 | }, |
| 1134 | 'linux-code-coverage': { |
Yuke Liao | 58e1d20 | 2020-03-20 23:02:01 | [diff] [blame] | 1135 | 'args': [ |
| 1136 | '--no-sandbox', |
| 1137 | ], |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1138 | 'swarming': { |
| 1139 | 'shards': 50, |
| 1140 | }, |
| 1141 | }, |
Sven Zheng | 49ffa5c | 2022-09-06 18:48:26 | [diff] [blame] | 1142 | # asan tests is slower. |
| 1143 | 'linux-lacros-asan-lsan-rel': { |
| 1144 | 'swarming': { |
| 1145 | 'shards': 20, |
| 1146 | }, |
Sven Zheng | e8b0d9a6 | 2023-01-31 23:09:19 | [diff] [blame] | 1147 | # TODO(crbug.com/1324240): Enable tests. |
| 1148 | 'args': [ |
| 1149 | '--gtest_filter=-All/MultiActionAPITest.SessionStorageDoesNotPersistBetweenOpenings/*:All/MultiActionAPITest.PopupCreation/*' |
| 1150 | ], |
Sven Zheng | 49ffa5c | 2022-09-06 18:48:26 | [diff] [blame] | 1151 | }, |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 1152 | 'linux-lacros-tester-rel': { |
Struan Shrimpton | e772d72f | 2021-12-15 07:50:09 | [diff] [blame] | 1153 | 'swarming': { |
Stephanie Kim | 8332c7dd | 2022-11-07 20:03:49 | [diff] [blame] | 1154 | 'shards': 20, |
Struan Shrimpton | e772d72f | 2021-12-15 07:50:09 | [diff] [blame] | 1155 | }, |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 1156 | }, |
Thiago Perrotta | 099ea61 | 2022-12-14 17:59:40 | [diff] [blame] | 1157 | 'linux-rel-cft': { |
| 1158 | 'args': [ |
Thiago Perrotta | d12c787 | 2023-01-12 17:30:56 | [diff] [blame] | 1159 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux.linux-rel-cft.browser_tests.filter', |
Thiago Perrotta | 099ea61 | 2022-12-14 17:59:40 | [diff] [blame] | 1160 | ], |
Thiago Perrotta | 6148746 | 2023-01-20 12:52:32 | [diff] [blame] | 1161 | 'swarming': { |
| 1162 | 'shards': 20, |
| 1163 | }, |
Thiago Perrotta | 099ea61 | 2022-12-14 17:59:40 | [diff] [blame] | 1164 | }, |
Kuan Huang | 235b014 | 2021-10-19 18:59:28 | [diff] [blame] | 1165 | 'mac-code-coverage': { |
| 1166 | 'args': [ |
| 1167 | '--coverage-continuous-mode=1', |
| 1168 | ], |
| 1169 | }, |
Lindsay Pasricha | 8bbc338 | 2022-01-31 22:54:54 | [diff] [blame] | 1170 | 'mac-osxbeta-rel': { |
| 1171 | 'swarming': { |
| 1172 | 'shards': 12, |
| 1173 | }, |
| 1174 | }, |
Thiago Perrotta | 099ea61 | 2022-12-14 17:59:40 | [diff] [blame] | 1175 | 'mac-rel-cft': { |
| 1176 | 'args': [ |
Thiago Perrotta | d12c787 | 2023-01-12 17:30:56 | [diff] [blame] | 1177 | '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac-rel-cft.browser_tests.filter', |
Thiago Perrotta | 099ea61 | 2022-12-14 17:59:40 | [diff] [blame] | 1178 | ], |
Thiago Perrotta | a289bad | 2023-01-20 12:44:39 | [diff] [blame] | 1179 | 'ci_only': True, |
Thiago Perrotta | 28efe81 | 2023-01-17 19:31:27 | [diff] [blame] | 1180 | 'swarming': { |
| 1181 | 'shards': 20, # crbug.com/1361887 |
| 1182 | }, |
Thiago Perrotta | 099ea61 | 2022-12-14 17:59:40 | [diff] [blame] | 1183 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1184 | 'win-asan': { |
Kuan Huang | 1b52d44 | 2023-02-07 20:35:34 | [diff] [blame] | 1185 | # Tests shows tests run faster with fewer retries by using fewer jobs crbug.com/1411912 |
| 1186 | 'args': [ |
| 1187 | '--test-launcher-jobs=3', |
| 1188 | ], |
Nico Weber | 3f91979 | 2020-06-12 23:34:52 | [diff] [blame] | 1189 | # These are very slow on the ASAN trybot for some reason. |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 1190 | # crbug.com/1257927 |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1191 | 'swarming': { |
Kuan Huang | 1b52d44 | 2023-02-07 20:35:34 | [diff] [blame] | 1192 | 'shards': 60, |
Nico Weber | 0c2861b | 2018-12-14 18:05:16 | [diff] [blame] | 1193 | }, |
| 1194 | }, |
Yuki Yamada | 70190fc | 2021-10-28 09:00:27 | [diff] [blame] | 1195 | 'win-backuprefptr-x64-fyi-rel': { |
| 1196 | 'args': [ |
| 1197 | '--test-launcher-filter-file=../../testing/buildbot/filters/win_backuprefptr_fyi.browser_tests.filter', |
| 1198 | ], |
| 1199 | }, |
Thiago Perrotta | 099ea61 | 2022-12-14 17:59:40 | [diff] [blame] | 1200 | 'win-rel-cft': { |
| 1201 | 'args': [ |
Thiago Perrotta | 770925d4 | 2023-01-17 18:38:51 | [diff] [blame] | 1202 | # crbug.com/868082 |
| 1203 | '--disable-features=WebRTC-H264WithOpenH264FFmpeg', |
Thiago Perrotta | d12c787 | 2023-01-12 17:30:56 | [diff] [blame] | 1204 | '--test-launcher-filter-file=../../testing/buildbot/filters/win.win-rel-cft.browser_tests.filter', |
Thiago Perrotta | 099ea61 | 2022-12-14 17:59:40 | [diff] [blame] | 1205 | ], |
Thiago Perrotta | 314f7b0 | 2023-01-19 21:30:53 | [diff] [blame] | 1206 | 'swarming': { |
| 1207 | # This is for slow test execution that often becomes a critical path of |
| 1208 | # swarming jobs. crbug.com/868114 |
| 1209 | 'shards': 15, |
| 1210 | } |
Thiago Perrotta | 099ea61 | 2022-12-14 17:59:40 | [diff] [blame] | 1211 | }, |
Ben Pastene | ebad8fc | 2022-08-12 23:34:28 | [diff] [blame] | 1212 | 'win10-rel-no-external-ip': { |
| 1213 | # crbug.com/868082 |
| 1214 | 'args': [ |
| 1215 | '--disable-features=WebRTC-H264WithOpenH264FFmpeg', |
| 1216 | ], |
| 1217 | 'swarming': { |
| 1218 | 'shards': 15, |
| 1219 | } |
| 1220 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1221 | }, |
| 1222 | }, |
Erik Chen | 681dc028 | 2019-11-26 22:54:49 | [diff] [blame] | 1223 | 'cc_unittests': { |
| 1224 | 'modifications': { |
| 1225 | 'Linux TSan Tests': { |
| 1226 | 'swarming': { |
| 1227 | 'shards': 3, |
| 1228 | }, |
| 1229 | }, |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 1230 | 'android-11-x86-rel': { |
Haiyang Pan | cf76586 | 2021-03-18 20:39:15 | [diff] [blame] | 1231 | # https://crbug.com/1039860 |
| 1232 | 'args': [ |
Haiyang Pan | 11d8bd5 | 2021-11-19 21:22:54 | [diff] [blame] | 1233 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11_12.cc_unittests.filter', |
| 1234 | ], |
| 1235 | }, |
Haiyang Pan | 2a55a45 | 2022-03-03 08:18:33 | [diff] [blame] | 1236 | 'android-12-x64-rel': { |
Haiyang Pan | 11d8bd5 | 2021-11-19 21:22:54 | [diff] [blame] | 1237 | # https://crbug.com/1039860 |
| 1238 | 'args': [ |
| 1239 | '--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] | 1240 | ], |
| 1241 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 1242 | 'android-pie-x86-rel': { |
John Budorick | fa8f1da9 | 2020-01-15 18:11:38 | [diff] [blame] | 1243 | # https://crbug.com/1039860 |
| 1244 | 'args': [ |
| 1245 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.cc_unittests.filter', |
| 1246 | ], |
| 1247 | }, |
Struan Shrimpton | a1ab767 | 2022-01-13 18:02:51 | [diff] [blame] | 1248 | 'chromeos-amd64-generic-rel': { |
| 1249 | 'swarming': { |
| 1250 | 'quickrun_shards': 2, |
| 1251 | }, |
| 1252 | }, |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 1253 | 'fuchsia-code-coverage': { |
| 1254 | 'swarming': { |
| 1255 | 'shards': 4, |
| 1256 | }, |
| 1257 | }, |
Chong Gu | b244646 | 2021-08-19 18:44:08 | [diff] [blame] | 1258 | 'fuchsia-fyi-arm64-dbg': { |
| 1259 | 'args': [ |
| 1260 | '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.debug.cc_unittests.filter', |
| 1261 | ], |
| 1262 | }, |
Erik Chen | 681dc028 | 2019-11-26 22:54:49 | [diff] [blame] | 1263 | }, |
| 1264 | }, |
Prakhar | 94f444a | 2020-10-08 07:30:08 | [diff] [blame] | 1265 | 'check_static_initializers': { |
| 1266 | 'modifications': { |
| 1267 | 'Mac Builder': { |
| 1268 | 'args': [ |
| 1269 | '--allow-coverage-initializer', |
| 1270 | ], |
| 1271 | }, |
Thiago Perrotta | a289bad | 2023-01-20 12:44:39 | [diff] [blame] | 1272 | 'mac-rel-cft': { |
| 1273 | 'args': [ |
| 1274 | '--allow-coverage-initializer', |
| 1275 | ], |
| 1276 | }, |
Prakhar | 94f444a | 2020-10-08 07:30:08 | [diff] [blame] | 1277 | }, |
| 1278 | }, |
Ben Pastene | 7a05a8f | 2020-11-12 17:25:51 | [diff] [blame] | 1279 | 'chrome_all_tast_tests': { |
| 1280 | 'modifications': { |
Struan Shrimpton | 4b7abc0 | 2021-12-16 01:36:59 | [diff] [blame] | 1281 | 'chromeos-amd64-generic-rel': { |
| 1282 | 'swarming': { |
Ben Pastene | 8fdb0ea9 | 2022-06-23 18:46:58 | [diff] [blame] | 1283 | 'shards': 7, |
Struan Shrimpton | 4b7abc0 | 2021-12-16 01:36:59 | [diff] [blame] | 1284 | }, |
Ben Pastene | f3c910a7 | 2023-01-26 20:23:41 | [diff] [blame] | 1285 | 'args': [ |
| 1286 | '--tast-shard-method=hash', |
| 1287 | ], |
Struan Shrimpton | 4b7abc0 | 2021-12-16 01:36:59 | [diff] [blame] | 1288 | }, |
Ben Pastene | 7a05a8f | 2020-11-12 17:25:51 | [diff] [blame] | 1289 | 'chromeos-betty-pi-arc-cfi-thin-lto-chrome': { |
| 1290 | 'args': [ |
| 1291 | # This bot sets symbol_level=2, which doesn't fit inside a normal VM. |
| 1292 | '--strip-chrome', |
| 1293 | ], |
| 1294 | }, |
Ben Pastene | fb70e5f | 2022-11-08 04:16:42 | [diff] [blame] | 1295 | 'chromeos-betty-pi-arc-chrome': { |
| 1296 | 'swarming': { |
| 1297 | 'shards': 15, |
| 1298 | }, |
| 1299 | }, |
Alvin Jia | 47a2803 | 2022-11-07 23:09:15 | [diff] [blame] | 1300 | 'chromeos-eve-chrome': { |
| 1301 | 'swarming': { |
Alvin Jia | 1c4563f | 2023-02-07 01:39:56 | [diff] [blame] | 1302 | # Increased timeout to 3 hours due to shard timeout. |
| 1303 | 'hard_timeout': 10800, |
Alvin Jia | 47a2803 | 2022-11-07 23:09:15 | [diff] [blame] | 1304 | } |
| 1305 | }, |
Ben Pastene | f85543f | 2022-06-24 17:50:02 | [diff] [blame] | 1306 | # TODO(crbug.com/1141234): Move out of experimental if/when the bots are |
| 1307 | # stable. |
| 1308 | 'chromeos-jacuzzi-chrome': { |
| 1309 | 'experiment_percentage': 100, |
| 1310 | }, |
yoshiki iguchi | 32971c5 | 2022-07-08 16:55:01 | [diff] [blame] | 1311 | 'chromeos-kevin-chrome': { |
| 1312 | 'swarming': { |
Austin Eng | da0cb2e9 | 2022-07-11 18:08:55 | [diff] [blame] | 1313 | # Reducing parallelism due to DUT shortage (b/238271231) |
yoshiki iguchi | 32971c5 | 2022-07-08 16:55:01 | [diff] [blame] | 1314 | 'shards': 5, |
Jonathan Fan | 25f924f | 2023-02-16 18:49:54 | [diff] [blame] | 1315 | # Increased timeout to 3 hours due to shard timeout. |
| 1316 | 'hard_timeout': 10800, |
yoshiki iguchi | 32971c5 | 2022-07-08 16:55:01 | [diff] [blame] | 1317 | } |
| 1318 | }, |
Ben Pastene | 7a05a8f | 2020-11-12 17:25:51 | [diff] [blame] | 1319 | }, |
| 1320 | }, |
Andrew Luo | d252791ac | 2019-10-15 00:28:13 | [diff] [blame] | 1321 | 'chrome_java_test_pagecontroller_tests': { |
Haiyang Pan | fbd2b48 | 2020-09-23 23:41:25 | [diff] [blame] | 1322 | 'modifications': { |
| 1323 | 'android-pie-arm64-rel': { |
| 1324 | # TODO(crbug.com/1111436): Move this back to walleye if/when additional |
| 1325 | # capacity has been deployed. |
| 1326 | 'swarming': { |
| 1327 | 'dimension_sets': [ |
| 1328 | { |
| 1329 | 'device_type': 'sailfish', |
| 1330 | }, |
| 1331 | ], |
| 1332 | }, |
| 1333 | }, |
| 1334 | }, |
Andrew Luo | d252791ac | 2019-10-15 00:28:13 | [diff] [blame] | 1335 | }, |
Yun Liu | 7cfd28a | 2019-10-30 01:57:12 | [diff] [blame] | 1336 | 'chrome_public_smoke_test': { |
| 1337 | 'remove_from': [ |
Ben Joyce | 02dc809 | 2021-03-04 21:48:19 | [diff] [blame] | 1338 | 'android-code-coverage-native', # Does not generate profraw data. |
Yun Liu | 7cfd28a | 2019-10-30 01:57:12 | [diff] [blame] | 1339 | ], |
| 1340 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1341 | 'chrome_public_test_apk': { |
John Budorick | 27d2d44e | 2019-05-20 20:26:09 | [diff] [blame] | 1342 | 'remove_from': [ |
| 1343 | 'android-asan', # https://crbug.com/964562 |
Ben Joyce | 02dc809 | 2021-03-04 21:48:19 | [diff] [blame] | 1344 | 'android-code-coverage-native', # Does not generate profraw data. |
John Budorick | 27d2d44e | 2019-05-20 20:26:09 | [diff] [blame] | 1345 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1346 | 'modifications': { |
Ben Pastene | c73e96e9 | 2018-07-12 01:40:35 | [diff] [blame] | 1347 | 'Oreo Phone Tester': { |
bsheedy | 0183346 | 2018-12-07 01:05:57 | [diff] [blame] | 1348 | # TODO(https://crbug.com/884413): Re-enable this once the tests are |
| 1349 | # either passing or there is more capacity. |
| 1350 | 'experiment_percentage': 0, |
Ben Pastene | c73e96e9 | 2018-07-12 01:40:35 | [diff] [blame] | 1351 | }, |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 1352 | 'android-11-x86-rel': { |
Haiyang Pan | b80557c | 2021-03-13 03:01:44 | [diff] [blame] | 1353 | 'args': [ |
| 1354 | '--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] | 1355 | '--timeout-scale=2.0', |
Haiyang Pan | b80557c | 2021-03-13 03:01:44 | [diff] [blame] | 1356 | ], |
Haiyang Pan | c82c3fa | 2022-02-01 01:26:06 | [diff] [blame] | 1357 | # TODO(https://crbug.com/1285975) Remove experiment and enable on |
| 1358 | # trybot once the device offline issue is resolved. |
| 1359 | 'ci_only': True, |
| 1360 | 'experiment_percentage': 100, |
Haiyang Pan | 68a39c0 | 2021-11-11 21:12:21 | [diff] [blame] | 1361 | }, |
Haiyang Pan | 2a55a45 | 2022-03-03 08:18:33 | [diff] [blame] | 1362 | 'android-12-x64-rel': { |
Haiyang Pan | 68a39c0 | 2021-11-11 21:12:21 | [diff] [blame] | 1363 | 'args': [ |
Haiyang Pan | 629f4e4 | 2022-02-09 22:11:23 | [diff] [blame] | 1364 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.chrome_public_test_apk.filter', |
Haiyang Pan | 68a39c0 | 2021-11-11 21:12:21 | [diff] [blame] | 1365 | '--timeout-scale=2.0', |
| 1366 | ], |
Haiyang Pan | 2a55a45 | 2022-03-03 08:18:33 | [diff] [blame] | 1367 | # TODO(crbug.com/1225851): Remove experiment and ci_only |
| 1368 | # once the test suite is stable. |
| 1369 | 'ci_only': True, |
| 1370 | 'experiment_percentage': 100, |
Haiyang Pan | b80557c | 2021-03-13 03:01:44 | [diff] [blame] | 1371 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1372 | 'android-arm64-proguard-rel': { |
| 1373 | 'swarming': { |
| 1374 | 'shards': 25, |
| 1375 | }, |
| 1376 | }, |
James Shen | f0ce295f | 2022-07-21 01:37:17 | [diff] [blame] | 1377 | 'android-nougat-x86-rel': { |
| 1378 | 'args': [ |
| 1379 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_n.chrome_public_test_apk.filter', |
| 1380 | ], |
James Shen | 57e04ef | 2022-09-23 02:22:27 | [diff] [blame] | 1381 | 'swarming': { |
Stephanie Kim | 5e70052 | 2022-11-11 14:52:35 | [diff] [blame] | 1382 | 'shards': 75, |
James Shen | 57e04ef | 2022-09-23 02:22:27 | [diff] [blame] | 1383 | 'dimension_sets': [ |
| 1384 | { |
Haiyang Pan | ca60fce | 2022-11-16 18:10:38 | [diff] [blame] | 1385 | # use 8-core to shorten runtime |
Haiyang Pan | e35ae64 | 2022-11-18 00:34:15 | [diff] [blame] | 1386 | 'cores': '8', |
James Shen | 57e04ef | 2022-09-23 02:22:27 | [diff] [blame] | 1387 | }, |
| 1388 | ], |
| 1389 | }, |
James Shen | f0ce295f | 2022-07-21 01:37:17 | [diff] [blame] | 1390 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1391 | 'android-pie-arm64-rel': { |
| 1392 | 'args': [ |
| 1393 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_arm64_rel.chrome_public_test_apk.filter', # https://crbug.com/1010211 |
Ben Joyce | b532141 | 2022-10-26 21:05:15 | [diff] [blame] | 1394 | '--use-persistent-shell', |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1395 | ], |
Stephen Martinis | d05530d | 2021-07-27 22:50:22 | [diff] [blame] | 1396 | 'ci_only': True, # https://crbug.com/1233700 |
Haiyang Pan | 43640ee | 2020-02-13 01:38:00 | [diff] [blame] | 1397 | }, |
Ben Joyce | 6d63a58 | 2022-12-09 18:34:55 | [diff] [blame] | 1398 | 'android-pie-arm64-rel-swarming': { |
| 1399 | 'swarming': { |
| 1400 | 'service_account': '[email protected]' |
| 1401 | }, |
| 1402 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 1403 | 'android-pie-x86-rel': { |
Haiyang Pan | 43640ee | 2020-02-13 01:38:00 | [diff] [blame] | 1404 | 'args': [ |
Haiyang Pan | 7137307 | 2020-03-02 19:57:49 | [diff] [blame] | 1405 | # https://crbug.com/1046059 |
Haiyang Pan | 23f64f5 | 2020-06-04 01:23:32 | [diff] [blame] | 1406 | '--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] | 1407 | ], |
Haiyang Pan | 7137307 | 2020-03-02 19:57:49 | [diff] [blame] | 1408 | 'swarming': { |
Haiyang Pan | 58a6db2 | 2021-07-30 01:08:26 | [diff] [blame] | 1409 | # See https://crbug.com/1230192, runs of 40-60 minutes at 20 shards. |
| 1410 | 'shards': 30, |
| 1411 | }, |
| 1412 | }, |
| 1413 | }, |
| 1414 | }, |
| 1415 | 'chrome_public_test_apk_with_playstore': { |
Haiyang Pan | 58a6db2 | 2021-07-30 01:08:26 | [diff] [blame] | 1416 | 'modifications': { |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 1417 | 'android-11-x86-rel': { |
Haiyang Pan | 58a6db2 | 2021-07-30 01:08:26 | [diff] [blame] | 1418 | 'args': [ |
| 1419 | '--avd-config=../../tools/android/avd/proto/generic_playstore_android30.textpb', |
| 1420 | ], |
| 1421 | 'swarming': { |
| 1422 | # soft affinity so that bots with caches will be picked first |
| 1423 | 'optional_dimensions': { |
| 1424 | '60': [ |
| 1425 | { |
Haiyang Pan | 0fee365 | 2022-02-23 19:19:48 | [diff] [blame] | 1426 | 'caches': 'generic_playstore_android30', |
Haiyang Pan | 58a6db2 | 2021-07-30 01:08:26 | [diff] [blame] | 1427 | } |
| 1428 | ], |
| 1429 | }, |
| 1430 | 'named_caches': [ |
| 1431 | { |
Haiyang Pan | 0fee365 | 2022-02-23 19:19:48 | [diff] [blame] | 1432 | 'name': 'generic_playstore_android30', |
| 1433 | 'path': '.android_emulator/generic_playstore_android30', |
Haiyang Pan | 58a6db2 | 2021-07-30 01:08:26 | [diff] [blame] | 1434 | }, |
| 1435 | ], |
| 1436 | }, |
| 1437 | }, |
Haiyang Pan | 2a55a45 | 2022-03-03 08:18:33 | [diff] [blame] | 1438 | 'android-12-x64-rel': { |
Haiyang Pan | 68a39c0 | 2021-11-11 21:12:21 | [diff] [blame] | 1439 | 'args': [ |
| 1440 | '--avd-config=../../tools/android/avd/proto/generic_playstore_android31.textpb', |
| 1441 | ], |
| 1442 | 'swarming': { |
| 1443 | # soft affinity so that bots with caches will be picked first |
| 1444 | 'optional_dimensions': { |
| 1445 | '60': [ |
| 1446 | { |
Haiyang Pan | 0fee365 | 2022-02-23 19:19:48 | [diff] [blame] | 1447 | 'caches': 'generic_playstore_android31', |
Haiyang Pan | 68a39c0 | 2021-11-11 21:12:21 | [diff] [blame] | 1448 | } |
| 1449 | ], |
| 1450 | }, |
| 1451 | 'named_caches': [ |
| 1452 | { |
Haiyang Pan | 0fee365 | 2022-02-23 19:19:48 | [diff] [blame] | 1453 | 'name': 'generic_playstore_android31', |
| 1454 | 'path': '.android_emulator/generic_playstore_android31', |
Haiyang Pan | 68a39c0 | 2021-11-11 21:12:21 | [diff] [blame] | 1455 | }, |
| 1456 | ], |
| 1457 | }, |
| 1458 | }, |
Haiyang Pan | 58a6db2 | 2021-07-30 01:08:26 | [diff] [blame] | 1459 | 'android-pie-x86-rel': { |
| 1460 | 'args': [ |
| 1461 | '--avd-config=../../tools/android/avd/proto/generic_playstore_android28.textpb', |
| 1462 | ], |
| 1463 | 'swarming': { |
Haiyang Pan | 2c43830 | 2021-06-11 23:50:38 | [diff] [blame] | 1464 | # soft affinity so that bots with caches will be picked first |
| 1465 | 'optional_dimensions': { |
| 1466 | '60': [ |
| 1467 | { |
Haiyang Pan | 0fee365 | 2022-02-23 19:19:48 | [diff] [blame] | 1468 | 'caches': 'generic_playstore_android28', |
Haiyang Pan | 2c43830 | 2021-06-11 23:50:38 | [diff] [blame] | 1469 | } |
| 1470 | ], |
| 1471 | }, |
Haiyang Pan | 7137307 | 2020-03-02 19:57:49 | [diff] [blame] | 1472 | 'named_caches': [ |
| 1473 | { |
Haiyang Pan | 0fee365 | 2022-02-23 19:19:48 | [diff] [blame] | 1474 | 'name': 'generic_playstore_android28', |
| 1475 | 'path': '.android_emulator/generic_playstore_android28', |
Haiyang Pan | 7137307 | 2020-03-02 19:57:49 | [diff] [blame] | 1476 | }, |
Haiyang Pan | 98040282 | 2020-10-07 23:24:56 | [diff] [blame] | 1477 | ], |
Haiyang Pan | 7137307 | 2020-03-02 19:57:49 | [diff] [blame] | 1478 | }, |
John Budorick | 3400947 | 2018-04-03 17:38:44 | [diff] [blame] | 1479 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1480 | }, |
| 1481 | }, |
| 1482 | 'chrome_public_test_vr_apk': { |
Nico Weber | b0b3f586 | 2018-07-13 18:45:15 | [diff] [blame] | 1483 | 'remove_from': [ |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 1484 | 'android-pie-arm64-rel', # https://crbug.com/1010211 |
bsheedy | df58b4e | 2018-11-01 19:42:16 | [diff] [blame] | 1485 | 'ToTAndroid', |
John Budorick | 27d2d44e | 2019-05-20 20:26:09 | [diff] [blame] | 1486 | 'android-asan', # https://crbug.com/964562 |
Ben Joyce | 02dc809 | 2021-03-04 21:48:19 | [diff] [blame] | 1487 | 'android-code-coverage-native', # Does not generate profraw data. |
bsheedy | 410dd7c | 2018-06-15 22:42:09 | [diff] [blame] | 1488 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1489 | }, |
bsheedy | 75a4dd5 | 2018-11-27 23:24:30 | [diff] [blame] | 1490 | 'chrome_public_test_vr_apk-vega': { |
| 1491 | 'modifications': { |
bsheedy | 75a4dd5 | 2018-11-27 23:24:30 | [diff] [blame] | 1492 | 'Oreo Phone Tester': { |
| 1493 | 'swarming': { |
| 1494 | 'dimension_sets': [ |
| 1495 | { |
| 1496 | 'device_os': 'OVR1.180808.003', |
| 1497 | 'device_type': 'vega', |
| 1498 | 'os': 'Android', |
| 1499 | }, |
| 1500 | ], |
| 1501 | }, |
| 1502 | } |
| 1503 | } |
| 1504 | }, |
Henrique Nakashima | d99462ab | 2022-06-08 19:52:42 | [diff] [blame] | 1505 | 'chrome_public_unit_test_apk': { |
Henrique Nakashima | 4b24b55a | 2022-11-02 22:25:32 | [diff] [blame] | 1506 | 'remove_from': [ |
| 1507 | 'android-asan', # https://crbug.com/964562 |
| 1508 | 'android-code-coverage-native', # Does not generate profraw data. |
Henrique Nakashima | 4b24b55a | 2022-11-02 22:25:32 | [diff] [blame] | 1509 | ], |
Henrique Nakashima | d99462ab | 2022-06-08 19:52:42 | [diff] [blame] | 1510 | 'modifications': { |
| 1511 | 'android-12-x64-rel': { |
| 1512 | 'args': [ |
| 1513 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.chrome_public_unit_test_apk.filter', |
| 1514 | ], |
| 1515 | }, |
Haiyang Pan | 0fb3ee4 | 2023-02-14 21:04:34 | [diff] [blame] | 1516 | 'android-12l-x64-dbg-tests': { |
| 1517 | 'args': [ |
| 1518 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12l.chrome_public_unit_test_apk.filter', |
| 1519 | ], |
| 1520 | }, |
| 1521 | 'android-13-x64-rel': { |
| 1522 | 'args': [ |
| 1523 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_13.chrome_public_unit_test_apk.filter', |
| 1524 | ], |
| 1525 | }, |
Henrique Nakashima | d99462ab | 2022-06-08 19:52:42 | [diff] [blame] | 1526 | }, |
| 1527 | }, |
Nihar Damarasingu | 8def1a2 | 2022-08-18 21:15:54 | [diff] [blame] | 1528 | 'chrome_public_wpt': { |
| 1529 | 'modifications': { |
| 1530 | 'android-chrome-pie-x86-wpt-fyi-rel': { |
| 1531 | 'args': [ |
| 1532 | '--use-upstream-wpt', |
| 1533 | ], |
| 1534 | }, |
| 1535 | }, |
| 1536 | }, |
Ian Struiksma | eb285db0 | 2020-10-20 22:19:34 | [diff] [blame] | 1537 | 'chrome_sizes': { |
| 1538 | 'modifications': { |
Yuke Liao | 97568030 | 2021-02-18 18:34:54 | [diff] [blame] | 1539 | 'lacros-amd64-generic-chrome': { |
| 1540 | 'swarming': { |
| 1541 | 'dimension_sets': [ |
| 1542 | { |
Yuke Liao | 31225ee3 | 2021-03-17 23:21:33 | [diff] [blame] | 1543 | 'cpu': 'x86-64', |
Ben Pastene | ddd3da7 | 2021-09-23 17:41:35 | [diff] [blame] | 1544 | 'os': 'Ubuntu-18.04', |
Yuke Liao | 97568030 | 2021-02-18 18:34:54 | [diff] [blame] | 1545 | }, |
| 1546 | ], |
| 1547 | }, |
| 1548 | }, |
Sven Zheng | 0b608c21 | 2023-02-23 18:18:56 | [diff] [blame^] | 1549 | 'lacros-amd64-generic-chrome-skylab': { |
| 1550 | 'swarming': { |
| 1551 | 'dimension_sets': [ |
| 1552 | { |
| 1553 | 'cpu': 'x86-64', |
| 1554 | 'os': 'Ubuntu-18.04', |
| 1555 | }, |
| 1556 | ], |
| 1557 | }, |
| 1558 | }, |
Ben Pastene | e9536c8 | 2021-10-19 01:48:57 | [diff] [blame] | 1559 | 'lacros-arm-generic-chrome': { |
| 1560 | 'swarming': { |
| 1561 | 'dimension_sets': [ |
| 1562 | { |
| 1563 | 'cpu': 'x86-64', |
| 1564 | 'os': 'Ubuntu-18.04', |
| 1565 | }, |
| 1566 | ], |
| 1567 | }, |
| 1568 | }, |
Sven Zheng | 0b608c21 | 2023-02-23 18:18:56 | [diff] [blame^] | 1569 | 'lacros-arm-generic-chrome-skylab': { |
| 1570 | 'swarming': { |
| 1571 | 'dimension_sets': [ |
| 1572 | { |
| 1573 | 'cpu': 'x86-64', |
| 1574 | 'os': 'Ubuntu-18.04', |
| 1575 | }, |
| 1576 | ], |
| 1577 | }, |
| 1578 | }, |
| 1579 | 'lacros-arm64-generic-chrome-skylab': { |
| 1580 | 'swarming': { |
| 1581 | 'dimension_sets': [ |
| 1582 | { |
| 1583 | 'cpu': 'x86-64', |
| 1584 | 'os': 'Ubuntu-18.04', |
| 1585 | }, |
| 1586 | ], |
| 1587 | }, |
| 1588 | }, |
Ian Struiksma | eb285db0 | 2020-10-20 22:19:34 | [diff] [blame] | 1589 | }, |
| 1590 | }, |
Takuto Ikuta | 1b749b90 | 2019-04-11 18:05:53 | [diff] [blame] | 1591 | 'chromedriver_py_tests': { |
Ben Pastene | 1b1aa97 | 2022-09-28 17:51:01 | [diff] [blame] | 1592 | 'modifications': { |
| 1593 | 'Win10 Tests x64': { |
| 1594 | # TODO(crbug.com/1369158): Fix & re-enable. |
| 1595 | 'isolate_profile_data': False, |
| 1596 | }, |
Thiago Perrotta | 314f7b0 | 2023-01-19 21:30:53 | [diff] [blame] | 1597 | 'win-rel-cft': { |
| 1598 | # TODO(crbug.com/1369158): Fix & re-enable. |
| 1599 | 'isolate_profile_data': False, |
| 1600 | }, |
Ben Pastene | 1b1aa97 | 2022-09-28 17:51:01 | [diff] [blame] | 1601 | }, |
Takuto Ikuta | 1b749b90 | 2019-04-11 18:05:53 | [diff] [blame] | 1602 | 'remove_from': [ |
| 1603 | # Timeout happens sometimes (crbug.com/951799). |
Takuto Ikuta | 1b749b90 | 2019-04-11 18:05:53 | [diff] [blame] | 1604 | 'Win10 Tests x64 (dbg)', |
| 1605 | ], |
| 1606 | }, |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 1607 | 'components_browsertests': { |
| 1608 | 'modifications': { |
Stephanie Kim | 6b4abfd3 | 2022-11-15 20:33:37 | [diff] [blame] | 1609 | 'Linux TSan Tests': { |
| 1610 | 'swarming': { |
| 1611 | 'shards': 2, |
| 1612 | }, |
| 1613 | }, |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 1614 | 'android-11-x86-rel': { |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 1615 | 'swarming': { |
| 1616 | 'shards': 2, |
| 1617 | }, |
| 1618 | }, |
André Kempe | f30fe9d2 | 2022-02-03 10:44:29 | [diff] [blame] | 1619 | 'android-asan': { |
| 1620 | 'swarming': { |
| 1621 | 'shards': 3, |
| 1622 | }, |
| 1623 | }, |
Haiyang Pan | dcc3e01 | 2022-09-30 01:57:43 | [diff] [blame] | 1624 | 'android-nougat-x86-rel': { |
| 1625 | 'swarming': { |
Stephanie Kim | 55d87ef2 | 2022-11-08 23:00:47 | [diff] [blame] | 1626 | 'shards': 4, |
Haiyang Pan | dcc3e01 | 2022-09-30 01:57:43 | [diff] [blame] | 1627 | }, |
| 1628 | }, |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 1629 | }, |
| 1630 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1631 | 'components_unittests': { |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1632 | 'modifications': { |
John Budorick | 5052d55 | 2017-12-13 02:59:34 | [diff] [blame] | 1633 | 'Linux ASan LSan Tests (1)': { |
| 1634 | # These are very slow on the ASAN trybot for some reason. |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 1635 | # crbug.com/1257927 |
John Budorick | 5052d55 | 2017-12-13 02:59:34 | [diff] [blame] | 1636 | 'swarming': { |
| 1637 | 'shards': 5, |
| 1638 | }, |
| 1639 | }, |
Takuto Ikuta | 54671d97 | 2018-07-19 19:06:35 | [diff] [blame] | 1640 | 'Linux Chromium OS ASan LSan Tests (1)': { |
| 1641 | # These are very slow on the ASAN trybot for some reason. |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 1642 | # crbug.com/1257927 |
Takuto Ikuta | 54671d97 | 2018-07-19 19:06:35 | [diff] [blame] | 1643 | 'swarming': { |
| 1644 | 'shards': 5, |
| 1645 | }, |
| 1646 | }, |
Erik Chen | 681dc028 | 2019-11-26 22:54:49 | [diff] [blame] | 1647 | 'Linux TSan Tests': { |
| 1648 | 'swarming': { |
| 1649 | 'shards': 2, |
| 1650 | }, |
| 1651 | }, |
Lindsay Pasricha | faeaac7 | 2022-07-27 21:08:08 | [diff] [blame] | 1652 | # https://crbug.com/1344223 |
| 1653 | 'Mac10.13 Tests': { |
| 1654 | 'swarming': { |
| 1655 | 'shards': 2, |
| 1656 | }, |
| 1657 | }, |
Struan Shrimpton | 5786bfd0 | 2023-01-11 00:47:54 | [diff] [blame] | 1658 | 'Mac12 Tests': { |
| 1659 | 'swarming': { |
| 1660 | 'inverse_quickrun_shards': 2, |
| 1661 | }, |
| 1662 | }, |
| 1663 | 'Win10 Tests x64': { |
| 1664 | 'swarming': { |
| 1665 | 'inverse_quickrun_shards': 2, |
| 1666 | }, |
| 1667 | }, |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 1668 | 'android-11-x86-rel': { |
Haiyang Pan | 799282f | 2021-03-25 19:38:31 | [diff] [blame] | 1669 | 'args': [ |
Haiyang Pan | e521cf69 | 2021-11-30 00:35:23 | [diff] [blame] | 1670 | # TODO(crbug.com/1192348): Fix the test failure |
| 1671 | '--gtest_filter=-FieldFormatterTest.DifferentLocales', |
Haiyang Pan | 799282f | 2021-03-25 19:38:31 | [diff] [blame] | 1672 | ], |
| 1673 | }, |
Haiyang Pan | 2a55a45 | 2022-03-03 08:18:33 | [diff] [blame] | 1674 | 'android-12-x64-rel': { |
Haiyang Pan | 2877f06 | 2021-11-18 01:06:06 | [diff] [blame] | 1675 | 'args': [ |
| 1676 | # TODO(crbug.com/1192348): Fix the test failure |
| 1677 | '--gtest_filter=-FieldFormatterTest.DifferentLocales', |
| 1678 | ], |
| 1679 | }, |
Struan Shrimpton | 5786bfd0 | 2023-01-11 00:47:54 | [diff] [blame] | 1680 | 'android-nougat-x86-rel': { |
| 1681 | 'swarming': { |
| 1682 | 'inverse_quickrun_shards': 12, |
| 1683 | }, |
| 1684 | }, |
Thiago Perrotta | a289bad | 2023-01-20 12:44:39 | [diff] [blame] | 1685 | 'mac-rel-cft': { |
| 1686 | 'swarming': { |
| 1687 | 'inverse_quickrun_shards': 2, |
| 1688 | }, |
| 1689 | }, |
Scott Violet | 17087cd | 2022-11-15 22:29:44 | [diff] [blame] | 1690 | 'win-asan': { |
| 1691 | # With a single shard seems to hit time limit. |
| 1692 | 'swarming': { |
| 1693 | 'shards': 2, |
| 1694 | }, |
| 1695 | }, |
Thiago Perrotta | 314f7b0 | 2023-01-19 21:30:53 | [diff] [blame] | 1696 | 'win-rel-cft': { |
| 1697 | 'swarming': { |
| 1698 | 'inverse_quickrun_shards': 2, |
| 1699 | }, |
| 1700 | }, |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 1701 | }, |
Sven Zheng | 577fe5ff | 2020-08-03 22:06:44 | [diff] [blame] | 1702 | }, |
Chong Gu | 7604641 | 2021-09-22 17:49:21 | [diff] [blame] | 1703 | 'compositor_unittests': { |
Chong Gu | b244646 | 2021-08-19 18:44:08 | [diff] [blame] | 1704 | 'modifications': { |
| 1705 | 'fuchsia-fyi-arm64-dbg': { |
| 1706 | 'args': [ |
| 1707 | '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.debug.compositor_unittests.filter', |
| 1708 | ], |
| 1709 | }, |
| 1710 | }, |
| 1711 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1712 | 'content_browsertests': { |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 1713 | 'remove_from': [ |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 1714 | 'CrWinAsan(dll)', # https://crbug.com/935598 |
Rohan Pavone | df728bee2 | 2022-11-09 21:32:55 | [diff] [blame] | 1715 | # TODO(crbug.com/1371630): Enable on Fuchsia dbg/asan/clang builders. |
| 1716 | 'fuchsia-fyi-arm64-dbg', |
| 1717 | 'fuchsia-fyi-x64-asan', |
| 1718 | 'fuchsia-fyi-x64-dbg', |
| 1719 | 'ToTFuchsia x64', |
| 1720 | 'ToTFuchsiaOfficial arm64', |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 1721 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1722 | 'modifications': { |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 1723 | 'Cast Audio Linux': { |
| 1724 | 'args': [ |
Nico Weber | 02f3039 | 2018-07-16 18:39:43 | [diff] [blame] | 1725 | '--test-launcher-filter-file=../../testing/buildbot/filters/cast-linux.content_browsertests.filter', |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 1726 | ], |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 1727 | }, |
| 1728 | 'Cast Linux': { |
| 1729 | 'args': [ |
Nico Weber | 02f3039 | 2018-07-16 18:39:43 | [diff] [blame] | 1730 | '--test-launcher-filter-file=../../testing/buildbot/filters/cast-linux.content_browsertests.filter', |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 1731 | ], |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 1732 | }, |
Erik Chen | b681c8c | 2019-11-25 22:52:52 | [diff] [blame] | 1733 | 'Linux ASan LSan Tests (1)': { |
| 1734 | 'swarming': { |
Stephanie Kim | 75e95f6 | 2022-11-04 16:06:13 | [diff] [blame] | 1735 | 'shards': 24, |
Erik Chen | b681c8c | 2019-11-25 22:52:52 | [diff] [blame] | 1736 | }, |
| 1737 | }, |
Chris Cunningham | e1a04ea | 2019-04-24 01:49:32 | [diff] [blame] | 1738 | 'Linux ASan Tests (sandboxed)': { |
| 1739 | 'swarming': { |
John Abd-El-Malek | 3a63161 | 2020-07-08 21:40:41 | [diff] [blame] | 1740 | 'shards': 10, # https://crbug.com/1103330 |
Chris Cunningham | e1a04ea | 2019-04-24 01:49:32 | [diff] [blame] | 1741 | }, |
| 1742 | }, |
Erik Chen | 681dc028 | 2019-11-26 22:54:49 | [diff] [blame] | 1743 | 'Linux TSan Tests': { |
| 1744 | 'swarming': { |
Stephanie Kim | 6b4abfd3 | 2022-11-15 20:33:37 | [diff] [blame] | 1745 | 'shards': 30, |
Erik Chen | 681dc028 | 2019-11-26 22:54:49 | [diff] [blame] | 1746 | }, |
| 1747 | }, |
Lindsay Pasricha | b3f72db | 2021-09-22 22:05:46 | [diff] [blame] | 1748 | 'Mac ASan 64 Tests (1)': { # https://crbug.com/1200640 |
| 1749 | 'experiment_percentage': 100, |
| 1750 | }, |
Struan Shrimpton | 57c594e4 | 2022-01-25 17:59:13 | [diff] [blame] | 1751 | 'Mac11 Tests': { |
| 1752 | 'swarming': { |
Lindsay Pasricha | 0b5beaf | 2022-03-04 08:15:27 | [diff] [blame] | 1753 | 'shards': 12, |
Struan Shrimpton | 57c594e4 | 2022-01-25 17:59:13 | [diff] [blame] | 1754 | }, |
| 1755 | }, |
Yue She | 0cad292 | 2022-06-24 15:06:07 | [diff] [blame] | 1756 | 'Mac12 Tests': { |
| 1757 | 'swarming': { |
| 1758 | 'shards': 12, |
Struan Shrimpton | 5786bfd0 | 2023-01-11 00:47:54 | [diff] [blame] | 1759 | 'inverse_quickrun_shards': 24, |
Yue She | 0cad292 | 2022-06-24 15:06:07 | [diff] [blame] | 1760 | }, |
| 1761 | }, |
Cameron Higgins | 7558b16 | 2022-06-10 18:53:07 | [diff] [blame] | 1762 | 'Mac12 Tests (dbg)': { # https://crbug.com/1279504 |
Lindsay Pasricha | 945e4d6 | 2022-01-20 02:14:01 | [diff] [blame] | 1763 | 'swarming': { |
Lindsay Pasricha | 9ec81b5 | 2022-03-10 03:43:31 | [diff] [blame] | 1764 | 'shards': 18, |
Lindsay Pasricha | 945e4d6 | 2022-01-20 02:14:01 | [diff] [blame] | 1765 | }, |
| 1766 | }, |
Mirko Bonadei | 1bee8b0 | 2022-11-17 13:56:33 | [diff] [blame] | 1767 | 'WebRTC Chromium FYI Android Tests (dbg)': { |
| 1768 | 'args': [ |
| 1769 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromium.webrtc.fyi.android.tests.dbg.content_browsertests.filter', |
| 1770 | ], |
| 1771 | }, |
Mirko Bonadei | 1bee8b0 | 2022-11-17 13:56:33 | [diff] [blame] | 1772 | 'WebRTC Chromium FYI Android Tests ARM64 (dbg)': { |
| 1773 | 'args': [ |
| 1774 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromium.webrtc.fyi.android.tests.dbg.content_browsertests.filter', |
| 1775 | ], |
| 1776 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1777 | 'Win10 Tests x64': { |
| 1778 | # crbug.com/868082 |
| 1779 | 'args': [ |
| 1780 | '--disable-features=WebRTC-H264WithOpenH264FFmpeg', |
| 1781 | ], |
Struan Shrimpton | a1ab767 | 2022-01-13 18:02:51 | [diff] [blame] | 1782 | 'swarming': { |
| 1783 | 'quickrun_shards': 18, |
| 1784 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1785 | }, |
| 1786 | 'Win10 Tests x64 (dbg)': { |
| 1787 | 'experiment_percentage': 100, |
| 1788 | # crbug.com/868082 |
| 1789 | 'args': [ |
| 1790 | '--disable-features=WebRTC-H264WithOpenH264FFmpeg', |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1791 | ], |
| 1792 | }, |
Kuan Huang | a89737d | 2022-01-07 19:42:11 | [diff] [blame] | 1793 | 'Win11 Tests x64': { |
| 1794 | # crbug.com/868082 |
| 1795 | 'args': [ |
| 1796 | '--disable-features=WebRTC-H264WithOpenH264FFmpeg', |
| 1797 | ], |
| 1798 | }, |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 1799 | 'android-11-x86-rel': { |
Haiyang Pan | 566e265 | 2022-01-25 07:01:52 | [diff] [blame] | 1800 | # TODO(crbug.com/1137474): Remove ci_only and experiment_percentage |
| 1801 | # after the test suite is green. |
| 1802 | 'ci_only': True, |
Haiyang Pan | 10f029c | 2021-07-30 23:17:56 | [diff] [blame] | 1803 | 'experiment_percentage': 100, |
Haiyang Pan | 51450ab | 2021-03-23 00:48:57 | [diff] [blame] | 1804 | # TODO(crbug.com/1137474): Revisit the shard number once failed tests |
| 1805 | # are fixed. |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 1806 | 'swarming': { |
Haiyang Pan | 51450ab | 2021-03-23 00:48:57 | [diff] [blame] | 1807 | 'shards': 30, |
Haiyang Pan | 45e77dda | 2021-07-01 22:23:29 | [diff] [blame] | 1808 | 'dimension_sets': [ |
| 1809 | { |
Haiyang Pan | ca60fce | 2022-11-16 18:10:38 | [diff] [blame] | 1810 | # use 8-core to shorten runtime |
Haiyang Pan | e35ae64 | 2022-11-18 00:34:15 | [diff] [blame] | 1811 | 'cores': '8', |
Haiyang Pan | 45e77dda | 2021-07-01 22:23:29 | [diff] [blame] | 1812 | }, |
| 1813 | ], |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 1814 | }, |
| 1815 | }, |
Haiyang Pan | 2a55a45 | 2022-03-03 08:18:33 | [diff] [blame] | 1816 | 'android-12-x64-rel': { |
Haiyang Pan | 1ed9ebb | 2022-12-13 03:10:03 | [diff] [blame] | 1817 | # TODO(crbug.com/1225851): Remove experiment and ci_only |
| 1818 | # once the test suite is stable. |
| 1819 | 'ci_only': True, |
| 1820 | 'experiment_percentage': 100, |
Haiyang Pan | dbff3ef | 2022-02-11 23:24:19 | [diff] [blame] | 1821 | 'args': [ |
| 1822 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.content_browsertests.filter', |
| 1823 | ], |
Haiyang Pan | 249494b | 2022-01-27 21:56:21 | [diff] [blame] | 1824 | 'swarming': { |
Haiyang Pan | c119266 | 2022-03-09 00:09:02 | [diff] [blame] | 1825 | 'shards': 25, |
Haiyang Pan | 249494b | 2022-01-27 21:56:21 | [diff] [blame] | 1826 | }, |
| 1827 | }, |
Haiyang Pan | 1b8faa20b | 2023-02-10 23:44:36 | [diff] [blame] | 1828 | 'android-12l-x64-dbg-tests': { |
| 1829 | 'args': [ |
| 1830 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12l_13.content_browsertests.filter', |
| 1831 | ], |
| 1832 | 'swarming': { |
| 1833 | 'shards': 25, |
| 1834 | }, |
| 1835 | }, |
| 1836 | 'android-13-x64-rel': { |
| 1837 | 'args': [ |
| 1838 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12l_13.content_browsertests.filter', |
| 1839 | ], |
| 1840 | 'swarming': { |
| 1841 | 'shards': 25, |
| 1842 | }, |
| 1843 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1844 | 'android-arm64-proguard-rel': { |
| 1845 | 'swarming': { |
| 1846 | 'shards': 16, |
| 1847 | }, |
| 1848 | }, |
| 1849 | 'android-asan': { |
| 1850 | 'args': [ |
| 1851 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.asan.content_browsertests.filter', |
| 1852 | ], |
| 1853 | 'swarming': { |
André Kempe | f30fe9d2 | 2022-02-03 10:44:29 | [diff] [blame] | 1854 | 'shards': 25, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1855 | }, |
| 1856 | }, |
Haiyang Pan | cf24ceb | 2022-03-17 02:31:30 | [diff] [blame] | 1857 | 'android-nougat-x86-rel': { |
James Shen | fa680ebaa | 2022-07-22 02:53:53 | [diff] [blame] | 1858 | 'args': [ |
| 1859 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_n.content_browsertests.filter', |
| 1860 | ], |
Haiyang Pan | cf24ceb | 2022-03-17 02:31:30 | [diff] [blame] | 1861 | 'swarming': { |
Stephanie Kim | 5e70052 | 2022-11-11 14:52:35 | [diff] [blame] | 1862 | 'shards': 75, |
James Shen | 57e04ef | 2022-09-23 02:22:27 | [diff] [blame] | 1863 | 'dimension_sets': [ |
| 1864 | { |
Haiyang Pan | ca60fce | 2022-11-16 18:10:38 | [diff] [blame] | 1865 | # use 8-core to shorten runtime |
Haiyang Pan | e35ae64 | 2022-11-18 00:34:15 | [diff] [blame] | 1866 | 'cores': '8', |
James Shen | 57e04ef | 2022-09-23 02:22:27 | [diff] [blame] | 1867 | }, |
| 1868 | ], |
Haiyang Pan | cf24ceb | 2022-03-17 02:31:30 | [diff] [blame] | 1869 | }, |
| 1870 | }, |
Struan Shrimpton | e772d72f | 2021-12-15 07:50:09 | [diff] [blame] | 1871 | 'android-pie-arm64-rel': { |
Ben Joyce | c0a90cd | 2023-01-10 21:30:49 | [diff] [blame] | 1872 | 'args': [ |
| 1873 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_arm64.content_browsertests_coverage.filter', |
| 1874 | ], |
Struan Shrimpton | e772d72f | 2021-12-15 07:50:09 | [diff] [blame] | 1875 | 'swarming': { |
Struan Shrimpton | 4b7abc0 | 2021-12-16 01:36:59 | [diff] [blame] | 1876 | 'quickrun_shards': 40 |
Ben Joyce | 6f9c3c5 | 2022-12-22 18:47:54 | [diff] [blame] | 1877 | }, |
Struan Shrimpton | e772d72f | 2021-12-15 07:50:09 | [diff] [blame] | 1878 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 1879 | 'android-pie-x86-rel': { |
John Budorick | a4e2388 | 2020-02-28 18:36:43 | [diff] [blame] | 1880 | 'args': [ |
Haiyang Pan | 12d5acd | 2020-06-01 20:54:57 | [diff] [blame] | 1881 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_p.content_browsertests.filter', |
John Budorick | a4e2388 | 2020-02-28 18:36:43 | [diff] [blame] | 1882 | ], |
Sky Malice | 303f7ec | 2021-07-17 04:13:09 | [diff] [blame] | 1883 | 'swarming': { |
| 1884 | # Flaking with only 20 shards with 40-60 minute runs. |
| 1885 | # https://crbug.com/1230118 |
| 1886 | 'shards': 30, |
Haiyang Pan | 2eb735e7 | 2020-09-15 22:51:51 | [diff] [blame] | 1887 | }, |
John Budorick | a4e2388 | 2020-02-28 18:36:43 | [diff] [blame] | 1888 | }, |
Rohan Pavone | df728bee2 | 2022-11-09 21:32:55 | [diff] [blame] | 1889 | 'fuchsia-arm64-cast-receiver-rel': { |
| 1890 | # Temporarily only run this on CI due to resource and naming |
| 1891 | # constraints. |
| 1892 | # TODO(crbug.com/1371630): Remove this when resource requirements are |
| 1893 | # lower. |
| 1894 | 'ci_only': True, |
| 1895 | }, |
| 1896 | 'fuchsia-arm64-rel': { |
| 1897 | # Temporarily only run this on CI due to resource and naming |
| 1898 | # constraints. |
| 1899 | # TODO(crbug.com/1371630): Remove this when resource requirements are |
| 1900 | # lower. |
| 1901 | 'ci_only': True, |
| 1902 | }, |
| 1903 | 'fuchsia-x64-cast-receiver-rel': { |
| 1904 | # Temporarily only run this on CI due to resource requirements. |
| 1905 | # TODO(crbug.com/1374125): Remove this once resources are available. |
| 1906 | 'ci_only': True, |
| 1907 | 'swarming': { |
| 1908 | 'shards': 41, |
| 1909 | }, |
Zijie He | 0f361e65 | 2023-01-13 14:42:15 | [diff] [blame] | 1910 | 'args': [ |
| 1911 | # TODO(crbug.com/1406693): Remove this when the kernal panic in |
| 1912 | # fuchsia has been resolved. |
| 1913 | '--test-arg=--test-launcher-jobs=1', |
| 1914 | ], |
Rohan Pavone | df728bee2 | 2022-11-09 21:32:55 | [diff] [blame] | 1915 | }, |
| 1916 | 'fuchsia-x64-rel': { |
| 1917 | 'swarming': { |
| 1918 | 'shards': 41, |
| 1919 | }, |
Zijie He | 38e3d13 | 2023-01-20 01:22:47 | [diff] [blame] | 1920 | 'args': [ |
| 1921 | # TODO(crbug.com/1406693): Remove this when the kernal panic in |
| 1922 | # fuchsia has been resolved. |
| 1923 | '--test-arg=--test-launcher-jobs=1', |
| 1924 | ], |
Rohan Pavone | df728bee2 | 2022-11-09 21:32:55 | [diff] [blame] | 1925 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 1926 | 'linux-chromeos-code-coverage': { |
| 1927 | 'swarming': { |
| 1928 | 'shards': 12, |
| 1929 | }, |
| 1930 | }, |
Albert J. Wong | 91f10965 | 2019-11-19 03:01:16 | [diff] [blame] | 1931 | 'linux-chromeos-rel': { |
| 1932 | 'swarming': { |
Stephanie Kim | 3aa4c55 | 2023-01-10 18:00:04 | [diff] [blame] | 1933 | 'shards': 6, |
Albert J. Wong | 91f10965 | 2019-11-19 03:01:16 | [diff] [blame] | 1934 | }, |
| 1935 | }, |
Yuke Liao | 79424e4 | 2020-01-06 21:00:11 | [diff] [blame] | 1936 | 'linux-code-coverage': { |
Yuke Liao | 58e1d20 | 2020-03-20 23:02:01 | [diff] [blame] | 1937 | 'args': [ |
| 1938 | '--no-sandbox', |
| 1939 | ], |
Yuke Liao | 79424e4 | 2020-01-06 21:00:11 | [diff] [blame] | 1940 | 'swarming': { |
| 1941 | 'shards': 12, |
| 1942 | }, |
| 1943 | }, |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 1944 | # https://crbug.com/1111979 |
| 1945 | 'linux-lacros-tester-fyi-rel': { |
| 1946 | 'experiment_percentage': 100, |
| 1947 | }, |
Kuan Huang | 235b014 | 2021-10-19 18:59:28 | [diff] [blame] | 1948 | 'mac-code-coverage': { |
| 1949 | 'args': [ |
| 1950 | '--coverage-continuous-mode=1', |
| 1951 | ], |
| 1952 | }, |
Thiago Perrotta | a289bad | 2023-01-20 12:44:39 | [diff] [blame] | 1953 | 'mac-rel-cft': { |
| 1954 | 'swarming': { |
| 1955 | 'shards': 12, |
| 1956 | 'inverse_quickrun_shards': 24, |
| 1957 | }, |
| 1958 | }, |
Kuan Huang | 05332fb | 2021-10-12 02:04:26 | [diff] [blame] | 1959 | # https://crbug.com/1255940 |
| 1960 | 'mac-rel-swarming': { |
| 1961 | 'swarming': { |
| 1962 | 'dimension_sets': [ |
| 1963 | { |
| 1964 | # These test would time out when running on 4 cores instances. |
| 1965 | 'cores': '8|12', |
| 1966 | } |
| 1967 | ], |
| 1968 | }, |
| 1969 | }, |
Kuan Huang | 1b52d44 | 2023-02-07 20:35:34 | [diff] [blame] | 1970 | 'win-asan': { |
| 1971 | # Tests shows tests run faster with fewer retries by using fewer jobs crbug.com/1411912 |
| 1972 | 'args': [ |
| 1973 | '--test-launcher-jobs=3', |
| 1974 | ], |
| 1975 | 'swarming': { |
| 1976 | 'shards': 16, |
| 1977 | }, |
| 1978 | }, |
Thiago Perrotta | 314f7b0 | 2023-01-19 21:30:53 | [diff] [blame] | 1979 | 'win-rel-cft': { |
| 1980 | # crbug.com/868082 |
| 1981 | 'args': [ |
| 1982 | '--disable-features=WebRTC-H264WithOpenH264FFmpeg', |
| 1983 | ], |
| 1984 | 'swarming': { |
| 1985 | 'quickrun_shards': 18, |
| 1986 | }, |
| 1987 | }, |
Ben Pastene | ebad8fc | 2022-08-12 23:34:28 | [diff] [blame] | 1988 | 'win10-rel-no-external-ip': { |
| 1989 | # crbug.com/868082 |
| 1990 | 'args': [ |
| 1991 | '--disable-features=WebRTC-H264WithOpenH264FFmpeg', |
| 1992 | ], |
| 1993 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 1994 | }, |
| 1995 | }, |
Nico Weber | 81e16ace2 | 2018-06-30 02:58:47 | [diff] [blame] | 1996 | 'content_shell_crash_test': { |
Haiyang Pan | 8c201b9 | 2020-06-04 01:25:07 | [diff] [blame] | 1997 | 'remove_from': [ |
James Shen | ad325fb0 | 2022-07-25 19:46:21 | [diff] [blame] | 1998 | 'android-nougat-x86-rel', # crbug.com/1084353 |
Haiyang Pan | 8c201b9 | 2020-06-04 01:25:07 | [diff] [blame] | 1999 | ], |
Dirk Pranke | b1c36b32 | 2018-07-11 02:42:00 | [diff] [blame] | 2000 | 'modifications': { |
Dirk Pranke | b1c36b32 | 2018-07-11 02:42:00 | [diff] [blame] | 2001 | 'Win10 Tests x64 (dbg)': { |
| 2002 | 'experiment_percentage': 100, # https://crbug.com/861730 |
| 2003 | }, |
| 2004 | }, |
Nico Weber | 81e16ace2 | 2018-06-30 02:58:47 | [diff] [blame] | 2005 | }, |
John Budorick | 27d2d44e | 2019-05-20 20:26:09 | [diff] [blame] | 2006 | 'content_shell_test_apk': { |
| 2007 | 'remove_from': [ |
John Budorick | 27d2d44e | 2019-05-20 20:26:09 | [diff] [blame] | 2008 | 'android-asan', # https://crbug.com/964562 |
Ben Joyce | 02dc809 | 2021-03-04 21:48:19 | [diff] [blame] | 2009 | 'android-code-coverage-native', # Does not generate profraw data. |
John Budorick | 27d2d44e | 2019-05-20 20:26:09 | [diff] [blame] | 2010 | ], |
John Budorick | ee2e64f | 2020-03-02 20:19:10 | [diff] [blame] | 2011 | 'modifications': { |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 2012 | 'android-11-x86-rel': { |
Haiyang Pan | 10386481 | 2021-03-19 19:28:44 | [diff] [blame] | 2013 | 'args': [ |
| 2014 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.content_shell_test_apk.filter', |
Haiyang Pan | abdab2f | 2021-07-19 20:37:51 | [diff] [blame] | 2015 | '--timeout-scale=2.0', |
Haiyang Pan | 10386481 | 2021-03-19 19:28:44 | [diff] [blame] | 2016 | ], |
| 2017 | }, |
Haiyang Pan | 2a55a45 | 2022-03-03 08:18:33 | [diff] [blame] | 2018 | 'android-12-x64-rel': { |
Haiyang Pan | 3b1016e | 2022-02-05 00:02:45 | [diff] [blame] | 2019 | 'args': [ |
| 2020 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.content_shell_test_apk.filter', |
| 2021 | ], |
James Shen | 818743e | 2023-02-16 02:11:16 | [diff] [blame] | 2022 | 'ci_only': True, |
Struan Shrimpton | 5786bfd0 | 2023-01-11 00:47:54 | [diff] [blame] | 2023 | 'swarming': { |
| 2024 | 'inverse_quickrun_shards': 6, |
| 2025 | }, |
Haiyang Pan | 3b1016e | 2022-02-05 00:02:45 | [diff] [blame] | 2026 | }, |
Haiyang Pan | 162b36f | 2023-02-17 23:23:03 | [diff] [blame] | 2027 | 'android-12l-x64-dbg-tests': { |
| 2028 | 'args': [ |
| 2029 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12l.content_shell_test_apk.filter', |
| 2030 | ], |
| 2031 | }, |
| 2032 | 'android-13-x64-rel': { |
| 2033 | 'args': [ |
| 2034 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_13.content_shell_test_apk.filter', |
| 2035 | ], |
| 2036 | }, |
James Shen | 97b48ac4 | 2022-07-01 23:34:44 | [diff] [blame] | 2037 | 'android-nougat-x86-rel': { |
| 2038 | 'args': [ |
| 2039 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_n.content_shell_test_apk.filter', |
| 2040 | ], |
James Shen | 57e04ef | 2022-09-23 02:22:27 | [diff] [blame] | 2041 | 'swarming': { |
Stephanie Kim | 55d87ef2 | 2022-11-08 23:00:47 | [diff] [blame] | 2042 | 'shards': 6, |
James Shen | 57e04ef | 2022-09-23 02:22:27 | [diff] [blame] | 2043 | 'dimension_sets': [ |
| 2044 | { |
Haiyang Pan | ca60fce | 2022-11-16 18:10:38 | [diff] [blame] | 2045 | # use 8-core to shorten runtime |
Haiyang Pan | e35ae64 | 2022-11-18 00:34:15 | [diff] [blame] | 2046 | 'cores': '8', |
James Shen | 57e04ef | 2022-09-23 02:22:27 | [diff] [blame] | 2047 | }, |
| 2048 | ], |
| 2049 | }, |
James Shen | 97b48ac4 | 2022-07-01 23:34:44 | [diff] [blame] | 2050 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 2051 | 'android-pie-x86-rel': { |
John Budorick | ee2e64f | 2020-03-02 20:19:10 | [diff] [blame] | 2052 | 'args': [ |
| 2053 | '--gtest_filter=-ContentViewScrollingTest.testFling', |
| 2054 | ], |
| 2055 | }, |
| 2056 | }, |
John Budorick | 27d2d44e | 2019-05-20 20:26:09 | [diff] [blame] | 2057 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2058 | 'content_unittests': { |
| 2059 | 'modifications': { |
John Budorick | 5052d55 | 2017-12-13 02:59:34 | [diff] [blame] | 2060 | 'Linux ASan LSan Tests (1)': { |
| 2061 | # These are slow on the ASAN trybot for some reason. |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 2062 | # crbug.com/1257927 |
John Budorick | 5052d55 | 2017-12-13 02:59:34 | [diff] [blame] | 2063 | 'swarming': { |
| 2064 | 'shards': 2, |
| 2065 | }, |
| 2066 | }, |
Takuto Ikuta | 54671d97 | 2018-07-19 19:06:35 | [diff] [blame] | 2067 | 'Linux ChromiumOS MSan Tests': { |
| 2068 | # These are very slow on the Chrome OS MSAN trybot for some reason. |
| 2069 | # crbug.com/865455 |
| 2070 | 'swarming': { |
| 2071 | 'shards': 2, |
| 2072 | }, |
| 2073 | }, |
Chong Gu | 5248145 | 2021-04-02 17:52:41 | [diff] [blame] | 2074 | 'fuchsia-code-coverage': { |
| 2075 | 'swarming': { |
| 2076 | 'shards': 12, |
| 2077 | }, |
| 2078 | }, |
Chong Gu | a10cd30 | 2022-01-14 19:22:19 | [diff] [blame] | 2079 | 'fuchsia-fyi-x64-asan': { |
| 2080 | 'args': [ |
| 2081 | '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.lsan.content_unittests.filter', |
| 2082 | ], |
| 2083 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2084 | }, |
| 2085 | }, |
Jonah Ryan-Davis | 832c846 | 2020-06-09 03:45:03 | [diff] [blame] | 2086 | 'context_lost_validating_tests': { |
Brian Sheedy | e285c9b | 2019-07-15 21:42:46 | [diff] [blame] | 2087 | # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2) |
| 2088 | # exception once there is enough capacity to run these tests. |
| 2089 | 'remove_from': [ |
Brian Sheedy | e285c9b | 2019-07-15 21:42:46 | [diff] [blame] | 2090 | 'Android FYI Release (Pixel 2)', |
| 2091 | ], |
Kenneth Russell | c1a0930 | 2018-07-10 01:12:54 | [diff] [blame] | 2092 | }, |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 2093 | 'crashpad_tests': { |
| 2094 | 'remove_from': [ |
Nico Weber | 15a00d6 | 2018-05-16 17:11:48 | [diff] [blame] | 2095 | 'linux-win_cross-rel', # https://crbug.com/762167 |
Vlad Tsyrklevich | 06a9a44f | 2019-07-24 19:14:39 | [diff] [blame] | 2096 | # https://crbug.com/crashpad/304 |
| 2097 | 'Linux TSan Tests', |
| 2098 | 'ToTLinuxTSan', |
| 2099 | # https://crbug.com/crashpad/306 |
| 2100 | 'Linux CFI', |
| 2101 | 'CFI Linux ToT', |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 2102 | ], |
Haiyang Pan | c7c009e | 2021-03-18 19:31:23 | [diff] [blame] | 2103 | 'modifications': { |
Avi Drissman | c631812 | 2022-03-29 17:07:42 | [diff] [blame] | 2104 | # TODO(crbug.com/1254975): dyld was rebuilt for macOS 12, which breaks |
| 2105 | # the tests. Run this experimentally on all the macOS bots >= 12 and |
| 2106 | # remove this exception once fixed. |
| 2107 | 'Mac Builder Next': { |
| 2108 | 'experiment_percentage': 100, |
| 2109 | }, |
Ben Joyce | a031911 | 2022-11-15 23:53:12 | [diff] [blame] | 2110 | 'ToTAndroid': { |
| 2111 | 'args': [ |
| 2112 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_tot.crashpad_tests.filter', |
| 2113 | ], |
| 2114 | }, |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 2115 | 'android-11-x86-rel': { |
Haiyang Pan | c7c009e | 2021-03-18 19:31:23 | [diff] [blame] | 2116 | 'args': [ |
Haiyang Pan | 32338b7 | 2023-02-08 23:48:58 | [diff] [blame] | 2117 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.crashpad_tests.filter', |
Haiyang Pan | c7c009e | 2021-03-18 19:31:23 | [diff] [blame] | 2118 | ], |
| 2119 | }, |
Haiyang Pan | 2a55a45 | 2022-03-03 08:18:33 | [diff] [blame] | 2120 | 'android-12-x64-rel': { |
Haiyang Pan | 07d9e26 | 2021-10-20 21:50:03 | [diff] [blame] | 2121 | 'args': [ |
Haiyang Pan | 32338b7 | 2023-02-08 23:48:58 | [diff] [blame] | 2122 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.crashpad_tests.filter', |
| 2123 | ], |
| 2124 | }, |
| 2125 | 'android-12l-x64-dbg-tests': { |
| 2126 | 'args': [ |
| 2127 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.crashpad_tests.filter', |
| 2128 | ], |
| 2129 | }, |
| 2130 | 'android-13-x64-rel': { |
| 2131 | 'args': [ |
| 2132 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.crashpad_tests.filter', |
Haiyang Pan | 07d9e26 | 2021-10-20 21:50:03 | [diff] [blame] | 2133 | ], |
| 2134 | }, |
Avi Drissman | c631812 | 2022-03-29 17:07:42 | [diff] [blame] | 2135 | # TODO(crbug.com/1254975): dyld was rebuilt for macOS 12, which breaks |
| 2136 | # the tests. Run this experimentally on all the macOS bots >= 12 and |
| 2137 | # remove this exception once fixed. |
Lindsay Pasricha | 60535a2 | 2021-12-13 16:50:24 | [diff] [blame] | 2138 | 'mac-osxbeta-rel': { |
| 2139 | 'experiment_percentage': 100, |
| 2140 | }, |
Haiyang Pan | c7c009e | 2021-03-18 19:31:23 | [diff] [blame] | 2141 | }, |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 2142 | }, |
Brian Sheedy | d9a809f0 | 2022-10-06 00:50:37 | [diff] [blame] | 2143 | 'dawn_end2end_skip_validation_tests': { |
| 2144 | 'remove_from': [ |
| 2145 | # TODO(crbug.com/1363409): Enable these once they're shown to work on |
| 2146 | # Android. |
| 2147 | 'Dawn Android arm DEPS Release (Pixel 4)', |
| 2148 | 'Dawn Android arm Release (Pixel 4)', |
| 2149 | ], |
| 2150 | }, |
| 2151 | 'dawn_end2end_validation_layers_tests': { |
| 2152 | 'remove_from': [ |
| 2153 | # TODO(crbug.com/1363409): Enable these once they're shown to work on |
| 2154 | # Android. |
| 2155 | 'Dawn Android arm DEPS Release (Pixel 4)', |
| 2156 | 'Dawn Android arm Release (Pixel 4)', |
| 2157 | ], |
| 2158 | }, |
| 2159 | 'dawn_end2end_wire_tests': { |
| 2160 | 'remove_from': [ |
| 2161 | # TODO(crbug.com/1363409): Enable these once they're shown to work on |
| 2162 | # Android. |
| 2163 | 'Dawn Android arm DEPS Release (Pixel 4)', |
| 2164 | 'Dawn Android arm Release (Pixel 4)', |
| 2165 | ], |
| 2166 | }, |
Austin Eng | 414af161 | 2022-04-08 02:15:36 | [diff] [blame] | 2167 | 'dawn_perf_tests': { |
| 2168 | 'remove_from': [ |
Brian Sheedy | d9a809f0 | 2022-10-06 00:50:37 | [diff] [blame] | 2169 | # TODO(crbug.com/1363409): Enable these once they're shown to work on |
| 2170 | # Android. |
| 2171 | 'Dawn Android arm DEPS Release (Pixel 4)', |
| 2172 | 'Dawn Android arm Release (Pixel 4)', |
Austin Eng | 414af161 | 2022-04-08 02:15:36 | [diff] [blame] | 2173 | ], |
| 2174 | }, |
Haiyang Pan | 1c813ca | 2021-11-24 18:52:16 | [diff] [blame] | 2175 | 'device_unittests': { |
| 2176 | 'modifications': { |
Haiyang Pan | 2a55a45 | 2022-03-03 08:18:33 | [diff] [blame] | 2177 | 'android-12-x64-rel': { |
Haiyang Pan | 1c813ca | 2021-11-24 18:52:16 | [diff] [blame] | 2178 | 'args': [ |
Haiyang Pan | d1a29451 | 2023-02-09 19:40:12 | [diff] [blame] | 2179 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.device_unittests.filter', |
| 2180 | ], |
| 2181 | }, |
| 2182 | 'android-12l-x64-dbg-tests': { |
| 2183 | 'args': [ |
| 2184 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.device_unittests.filter', |
| 2185 | ], |
| 2186 | }, |
| 2187 | 'android-13-x64-rel': { |
| 2188 | 'args': [ |
| 2189 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.device_unittests.filter', |
Haiyang Pan | 1c813ca | 2021-11-24 18:52:16 | [diff] [blame] | 2190 | ], |
| 2191 | }, |
| 2192 | }, |
| 2193 | }, |
Struan Shrimpton | 57c594e4 | 2022-01-25 17:59:13 | [diff] [blame] | 2194 | 'exo_unittests': { |
| 2195 | 'modifications': { |
| 2196 | 'linux-chromeos-rel': { |
| 2197 | 'swarming': { |
| 2198 | 'quickrun_shards': 2, |
| 2199 | } |
| 2200 | }, |
| 2201 | }, |
| 2202 | }, |
Joe Downing | 4148604 | 2018-10-18 22:44:44 | [diff] [blame] | 2203 | 'extensions_browsertests': { |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 2204 | 'remove_from': [ |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 2205 | 'CrWinAsan(dll)', # https://crbug.com/935598 |
| 2206 | ], |
Joe Downing | 4148604 | 2018-10-18 22:44:44 | [diff] [blame] | 2207 | 'modifications': { |
| 2208 | 'Win10 Tests x64 (dbg)': { |
| 2209 | 'experiment_percentage': 100, # https://crbug.com/876615 |
| 2210 | }, |
Sven Zheng | bc82226 | 2022-09-20 20:47:35 | [diff] [blame] | 2211 | # https://crbug.com/1111979 |
| 2212 | 'linux-lacros-asan-lsan-rel': { |
| 2213 | 'args': [ |
| 2214 | '--gtest_filter=-BluetoothShellApiTest.ApiSanityCheck:BluetoothSocketApiTest.Listen:BluetoothSocketApiTest.PermissionDenied', |
| 2215 | ], |
| 2216 | }, |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 2217 | # https://crbug.com/1111979, |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 2218 | 'linux-lacros-code-coverage': { |
| 2219 | 'args': [ |
| 2220 | '--gtest_filter=-BluetoothShellApiTest.ApiSanityCheck:BluetoothSocketApiTest.Listen:BluetoothSocketApiTest.PermissionDenied', |
| 2221 | ], |
| 2222 | }, |
Yuke Liao | a0db474 | 2021-08-09 18:28:33 | [diff] [blame] | 2223 | 'linux-lacros-dbg-tests-fyi': { |
| 2224 | 'args': [ |
| 2225 | '--gtest_filter=-BluetoothShellApiTest.ApiSanityCheck:BluetoothSocketApiTest.Listen:BluetoothSocketApiTest.PermissionDenied', |
| 2226 | ], |
| 2227 | }, |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 2228 | 'linux-lacros-tester-rel': { |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 2229 | 'args': [ |
| 2230 | '--gtest_filter=-BluetoothShellApiTest.ApiSanityCheck:BluetoothSocketApiTest.Listen:BluetoothSocketApiTest.PermissionDenied', |
| 2231 | ], |
| 2232 | }, |
Joe Downing | 4148604 | 2018-10-18 22:44:44 | [diff] [blame] | 2233 | }, |
| 2234 | }, |
Sven Zheng | 577fe5ff | 2020-08-03 22:06:44 | [diff] [blame] | 2235 | 'extensions_unittests': { |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 2236 | 'modifications': { |
Chong Gu | d034fe5 | 2022-01-20 21:48:04 | [diff] [blame] | 2237 | 'fuchsia-fyi-x64-asan': { |
| 2238 | 'args': [ |
Chong Gu | 1155d87 | 2022-02-10 17:55:27 | [diff] [blame] | 2239 | '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.lsan.extensions_unittests.filter', |
Chong Gu | d034fe5 | 2022-01-20 21:48:04 | [diff] [blame] | 2240 | ], |
| 2241 | }, |
Sven Zheng | bc82226 | 2022-09-20 20:47:35 | [diff] [blame] | 2242 | # https://crbug.com/1111979 |
| 2243 | 'linux-lacros-asan-lsan-rel': { |
| 2244 | 'args': [ |
| 2245 | '--gtest_filter=-NativeExtensionBindingsSystemUnittest*:' |
| 2246 | 'BluetoothSocketApiUnittest.CreateThenClose:' |
| 2247 | 'FeatureProviderTest.PermissionFeatureAvailability', |
| 2248 | ], |
| 2249 | }, |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 2250 | # https://crbug.com/1111979, |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 2251 | 'linux-lacros-code-coverage': { |
| 2252 | 'args': [ |
Yuke Liao | a0db474 | 2021-08-09 18:28:33 | [diff] [blame] | 2253 | '--gtest_filter=-BluetoothSocketApiUnittest.CreateThenClose:' |
| 2254 | 'NativeExtensionBindingsSystemUnittest.*', |
| 2255 | ], |
| 2256 | }, |
| 2257 | 'linux-lacros-dbg-tests-fyi': { |
| 2258 | 'args': [ |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 2259 | '--gtest_filter=-NativeExtensionBindingsSystemUnittest*:' |
| 2260 | 'BluetoothSocketApiUnittest.CreateThenClose:' |
| 2261 | 'FeatureProviderTest.PermissionFeatureAvailability', |
| 2262 | ], |
| 2263 | }, |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 2264 | 'linux-lacros-tester-rel': { |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 2265 | 'args': [ |
Yuke Liao | bb830832 | 2020-08-12 20:20:47 | [diff] [blame] | 2266 | '--gtest_filter=-NativeExtensionBindingsSystemUnittest*:' |
| 2267 | 'BluetoothSocketApiUnittest.CreateThenClose:' |
| 2268 | 'FeatureProviderTest.PermissionFeatureAvailability', |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 2269 | ], |
| 2270 | }, |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 2271 | }, |
Sven Zheng | 577fe5ff | 2020-08-03 22:06:44 | [diff] [blame] | 2272 | }, |
Chong Gu | 7604641 | 2021-09-22 17:49:21 | [diff] [blame] | 2273 | 'gfx_unittests': { |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 2274 | 'modifications': { |
| 2275 | 'fuchsia-code-coverage': { |
| 2276 | 'swarming': { |
| 2277 | 'shards': 2, |
| 2278 | }, |
| 2279 | }, |
| 2280 | }, |
| 2281 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2282 | 'gin_unittests': { |
| 2283 | 'remove_from': [ |
Nico Weber | 1394523f | 2018-06-06 15:58:47 | [diff] [blame] | 2284 | 'ToTLinuxASan', # https://crbug.com/831667 |
Nico Weber | d3695968 | 2018-04-12 03:33:46 | [diff] [blame] | 2285 | 'Linux ASan LSan Tests (1)', # https://crbug.com/831667 |
Nico Weber | 1394523f | 2018-06-06 15:58:47 | [diff] [blame] | 2286 | 'Linux Chromium OS ASan LSan Tests (1)', # https://crbug.com/831667 |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2287 | ], |
Chong Gu | a10cd30 | 2022-01-14 19:22:19 | [diff] [blame] | 2288 | 'modifications': { |
Ben Joyce | e3f55c90 | 2023-01-13 00:27:29 | [diff] [blame] | 2289 | 'android-code-coverage-native': { |
| 2290 | 'args': [ |
| 2291 | # https://crbug.com/1404782 |
| 2292 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_arm64.gin_unittests_coverage.filter', |
| 2293 | ], |
| 2294 | }, |
Chong Gu | a10cd30 | 2022-01-14 19:22:19 | [diff] [blame] | 2295 | 'fuchsia-fyi-x64-asan': { |
| 2296 | 'args': [ |
| 2297 | '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.lsan.gin_unittests.filter', |
| 2298 | ], |
| 2299 | }, |
| 2300 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2301 | }, |
Jonah Ryan-Davis | deeffeaf | 2020-06-18 17:56:00 | [diff] [blame] | 2302 | 'gl_tests_passthrough': { |
| 2303 | 'remove_from': [ |
| 2304 | 'CFI Linux ToT', |
Brian Sheedy | d9a809f0 | 2022-10-06 00:50:37 | [diff] [blame] | 2305 | # TODO(crbug.com/1363409): Enable these once they're shown to work on |
| 2306 | # Android. |
| 2307 | 'Dawn Android arm DEPS Release (Pixel 4)', |
| 2308 | 'Dawn Android arm Release (Pixel 4)', |
Jonah Ryan-Davis | deeffeaf | 2020-06-18 17:56:00 | [diff] [blame] | 2309 | # Can't run on MSAN because gl_tests uses the hardware driver, |
| 2310 | # which isn't instrumented. |
| 2311 | 'Linux MSan Tests', |
| 2312 | ], |
| 2313 | 'modifications': { |
| 2314 | # TODO(kbr): figure out a better way to specify blocks of |
| 2315 | # arguments like this for tests on multiple machines. |
Garrett Beaty | a491ec7 | 2020-07-25 12:36:12 | [diff] [blame] | 2316 | 'Linux ASan LSan Tests (1)': { |
| 2317 | 'args': [ |
| 2318 | '--use-gpu-in-tests', |
| 2319 | '--no-xvfb', |
| 2320 | ], |
| 2321 | 'swarming': { |
| 2322 | 'dimension_sets': [ |
| 2323 | { |
Yuly Novikov | aa06f17 | 2022-02-12 00:38:57 | [diff] [blame] | 2324 | 'gpu': '10de:2184', |
Garrett Beaty | a491ec7 | 2020-07-25 12:36:12 | [diff] [blame] | 2325 | 'os': 'Ubuntu', |
| 2326 | 'pool': 'chromium.tests.gpu', |
| 2327 | }, |
| 2328 | ], |
| 2329 | }, |
| 2330 | }, |
| 2331 | 'Linux CFI': { |
| 2332 | 'args': [ |
| 2333 | '--use-gpu-in-tests', |
| 2334 | '--no-xvfb', |
| 2335 | ], |
| 2336 | 'swarming': { |
| 2337 | 'dimension_sets': [ |
| 2338 | { |
Yuly Novikov | aa06f17 | 2022-02-12 00:38:57 | [diff] [blame] | 2339 | 'gpu': '10de:2184', |
Garrett Beaty | a491ec7 | 2020-07-25 12:36:12 | [diff] [blame] | 2340 | 'os': 'Ubuntu', |
| 2341 | 'pool': 'chromium.tests.gpu', |
| 2342 | }, |
| 2343 | ], |
| 2344 | }, |
| 2345 | }, |
| 2346 | 'Linux TSan Tests': { |
| 2347 | 'args': [ |
| 2348 | '--use-gpu-in-tests', |
| 2349 | '--no-xvfb', |
| 2350 | ], |
| 2351 | 'swarming': { |
| 2352 | 'dimension_sets': [ |
| 2353 | { |
Yuly Novikov | aa06f17 | 2022-02-12 00:38:57 | [diff] [blame] | 2354 | 'gpu': '10de:2184', |
Garrett Beaty | a491ec7 | 2020-07-25 12:36:12 | [diff] [blame] | 2355 | 'os': 'Ubuntu', |
| 2356 | 'pool': 'chromium.tests.gpu', |
| 2357 | }, |
| 2358 | ], |
| 2359 | }, |
| 2360 | }, |
Jonah Ryan-Davis | deeffeaf | 2020-06-18 17:56:00 | [diff] [blame] | 2361 | }, |
| 2362 | }, |
Jonah Ryan-Davis | e25a89f | 2020-05-29 20:18:24 | [diff] [blame] | 2363 | 'gl_tests_validating': { |
Jonah Ryan-Davis | b9f03ac | 2021-03-18 23:53:02 | [diff] [blame] | 2364 | 'remove_from': [ |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 2365 | 'Android FYI Release (Nexus 5X)', |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 2366 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2367 | 'modifications': { |
Brian Sheedy | 920df65 | 2022-11-11 20:54:15 | [diff] [blame] | 2368 | 'Android FYI Release (Samsung A13)': { |
| 2369 | 'args': [ |
| 2370 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.samsung_a13.gl_tests.filter', |
| 2371 | ], |
| 2372 | }, |
Sunny Sachanandani | b5c6c08 | 2022-09-29 00:26:14 | [diff] [blame] | 2373 | 'Android FYI Release (Samsung A23)': { |
| 2374 | 'args': [ |
| 2375 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.samsung_a23.gl_tests.filter', |
| 2376 | ], |
| 2377 | }, |
Ben Joyce | a031911 | 2022-11-15 23:53:12 | [diff] [blame] | 2378 | 'ToTAndroid': { |
| 2379 | 'args': [ |
| 2380 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_tot.gl_tests.filter', # https://crbug.com/1034007 |
| 2381 | ], |
| 2382 | }, |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 2383 | 'android-11-x86-rel': { |
Haiyang Pan | cf76586 | 2021-03-18 20:39:15 | [diff] [blame] | 2384 | 'args': [ |
| 2385 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_11.gl_tests.filter', |
| 2386 | ], |
| 2387 | }, |
Haiyang Pan | 2a55a45 | 2022-03-03 08:18:33 | [diff] [blame] | 2388 | 'android-12-x64-rel': { |
Haiyang Pan | 38200892 | 2021-11-19 21:15:09 | [diff] [blame] | 2389 | 'args': [ |
Haiyang Pan | d1a29451 | 2023-02-09 19:40:12 | [diff] [blame] | 2390 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12_12l_13.gl_tests.filter', |
| 2391 | ], |
| 2392 | }, |
| 2393 | 'android-12l-x64-dbg-tests': { |
| 2394 | 'args': [ |
| 2395 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12_12l_13.gl_tests.filter', |
| 2396 | ], |
| 2397 | }, |
| 2398 | 'android-13-x64-rel': { |
| 2399 | 'args': [ |
| 2400 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12_12l_13.gl_tests.filter', |
Haiyang Pan | 38200892 | 2021-11-19 21:15:09 | [diff] [blame] | 2401 | ], |
| 2402 | }, |
Nate Fischer | b047470 | 2022-12-13 22:46:53 | [diff] [blame] | 2403 | 'android-arm64-proguard-rel': { |
| 2404 | 'args': [ |
| 2405 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.arm64_proguard_rel.gl_tests.filter', # https://crbug.com/1034007 |
| 2406 | ], |
| 2407 | }, |
Ben Joyce | e3f55c90 | 2023-01-13 00:27:29 | [diff] [blame] | 2408 | 'android-code-coverage-native': { |
| 2409 | 'args': [ |
| 2410 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_arm64_rel.gl_tests.filter', # https://crbug.com/1034007 |
| 2411 | ], |
| 2412 | }, |
James Shen | c47f7b1 | 2022-07-07 23:42:41 | [diff] [blame] | 2413 | 'android-nougat-x86-rel': { |
| 2414 | 'args': [ |
| 2415 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_n.gl_tests.filter', |
| 2416 | ], |
| 2417 | }, |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 2418 | 'android-pie-arm64-rel': { |
John Budorick | 79ec901 | 2020-01-08 21:56:31 | [diff] [blame] | 2419 | 'args': [ |
Andrew Luo | be83fd8 | 2019-12-19 03:07:58 | [diff] [blame] | 2420 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.pie_arm64_rel.gl_tests.filter', # https://crbug.com/1034007 |
| 2421 | ], |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 2422 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 2423 | 'android-pie-x86-rel': { |
John Budorick | 79ec901 | 2020-01-08 21:56:31 | [diff] [blame] | 2424 | 'args': [ |
| 2425 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.gl_tests.filter', |
| 2426 | ], |
| 2427 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2428 | }, |
| 2429 | }, |
Takuto Ikuta | f533325 | 2019-11-06 16:07:08 | [diff] [blame] | 2430 | 'gl_unittests': { |
| 2431 | 'remove_from': [ |
Takuto Ikuta | f533325 | 2019-11-06 16:07:08 | [diff] [blame] | 2432 | # On Android, these are already run on the main waterfall. |
| 2433 | # Run them on the one-off Android FYI bots, though. |
| 2434 | 'Android FYI Release (Nexus 5X)', |
Brian Sheedy | d9a809f0 | 2022-10-06 00:50:37 | [diff] [blame] | 2435 | # TODO(crbug.com/1363409): Enable these once they're shown to work on |
| 2436 | # Android. |
| 2437 | 'Dawn Android arm DEPS Release (Pixel 4)', |
| 2438 | 'Dawn Android arm Release (Pixel 4)', |
Yuly Novikov | 37e0434 | 2020-05-29 00:52:04 | [diff] [blame] | 2439 | # Can't run on MSAN because gl_unittests uses the hardware driver, |
| 2440 | # which isn't instrumented. |
| 2441 | 'Linux MSan Tests', |
Takuto Ikuta | f533325 | 2019-11-06 16:07:08 | [diff] [blame] | 2442 | ], |
Haiyang Pan | 505fcd5a | 2021-12-13 19:46:23 | [diff] [blame] | 2443 | 'modifications': { |
Haiyang Pan | 2a55a45 | 2022-03-03 08:18:33 | [diff] [blame] | 2444 | 'android-12-x64-rel': { |
Haiyang Pan | 505fcd5a | 2021-12-13 19:46:23 | [diff] [blame] | 2445 | 'args': [ |
| 2446 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.gl_unittests.filter', |
| 2447 | ], |
| 2448 | }, |
| 2449 | }, |
Takuto Ikuta | f533325 | 2019-11-06 16:07:08 | [diff] [blame] | 2450 | }, |
| 2451 | 'gl_unittests_ozone': { |
| 2452 | 'remove_from': [ |
| 2453 | # Can't run on MSAN because gl_unittests_ozone uses the hardware driver, |
| 2454 | # which isn't instrumented. |
| 2455 | 'Linux ChromiumOS MSan Tests', |
| 2456 | ], |
| 2457 | }, |
Brian Sheedy | 0bf7f82 | 2022-07-21 17:44:43 | [diff] [blame] | 2458 | 'gold_common_pytype': { |
| 2459 | 'remove_from': [ |
| 2460 | 'linux-code-coverage', |
| 2461 | ], |
| 2462 | }, |
Takuto Ikuta | f533325 | 2019-11-06 16:07:08 | [diff] [blame] | 2463 | 'gpu_process_launch_tests': { |
| 2464 | # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2) |
| 2465 | # exception once there is enough capacity to run these tests. |
| 2466 | 'remove_from': [ |
Takuto Ikuta | f533325 | 2019-11-06 16:07:08 | [diff] [blame] | 2467 | 'Android FYI Release (Pixel 2)', |
| 2468 | ], |
| 2469 | }, |
Brian Sheedy | 053d88cf | 2022-05-24 23:40:05 | [diff] [blame] | 2470 | 'gpu_pytype': { |
| 2471 | 'remove_from': [ |
| 2472 | 'linux-code-coverage', |
| 2473 | ], |
| 2474 | }, |
Chong Gu | 7604641 | 2021-09-22 17:49:21 | [diff] [blame] | 2475 | 'gpu_unittests': { |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 2476 | 'modifications': { |
| 2477 | 'fuchsia-code-coverage': { |
| 2478 | 'swarming': { |
| 2479 | 'shards': 5, |
| 2480 | }, |
| 2481 | }, |
| 2482 | }, |
| 2483 | }, |
Kevin McNee | d21a6c52 | 2021-06-14 21:27:25 | [diff] [blame] | 2484 | 'grit_python_unittests': { |
| 2485 | 'remove_from': [ |
Titouan Rigoudy | 9e86083 | 2021-11-08 15:34:45 | [diff] [blame] | 2486 | # TODO(https://crbug.com/1267125): Re-enable. |
| 2487 | 'mac11-arm64-rel-tests', |
Zhaoyang Li | 5d3713d | 2022-06-13 18:01:17 | [diff] [blame] | 2488 | # TODO(https://crbug.com/1267125): Re-enable. |
| 2489 | 'mac12-arm64-rel-tests', |
Kevin McNee | d21a6c52 | 2021-06-14 21:27:25 | [diff] [blame] | 2490 | ], |
| 2491 | }, |
Brian Sheedy | e285c9b | 2019-07-15 21:42:46 | [diff] [blame] | 2492 | 'hardware_accelerated_feature_tests': { |
| 2493 | # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2) |
| 2494 | # exception once there is enough capacity to run these tests. |
| 2495 | 'remove_from': [ |
Brian Sheedy | e285c9b | 2019-07-15 21:42:46 | [diff] [blame] | 2496 | 'Android FYI Release (Pixel 2)', |
| 2497 | ], |
| 2498 | }, |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 2499 | 'headless_browsertests': { |
Chong Gu | d08d123 | 2021-09-11 08:53:59 | [diff] [blame] | 2500 | 'remove_from': [ |
| 2501 | 'CrWinAsan(dll)', # https://crbug.com/935598 |
Maksim Sisov | c81d284c | 2021-10-05 17:54:35 | [diff] [blame] | 2502 | # Wayland bot doesn't support headless mode. |
| 2503 | 'Linux Tests (Wayland)', |
Chong Gu | d08d123 | 2021-09-11 08:53:59 | [diff] [blame] | 2504 | ], |
Chong Gu | d1a5c599 | 2021-04-09 04:08:32 | [diff] [blame] | 2505 | 'modifications': { |
| 2506 | 'fuchsia-code-coverage': { |
| 2507 | 'swarming': { |
Chong Gu | 115ce15 | 2021-04-15 23:57:16 | [diff] [blame] | 2508 | 'shards': 6, |
Chong Gu | d1a5c599 | 2021-04-09 04:08:32 | [diff] [blame] | 2509 | }, |
| 2510 | }, |
| 2511 | }, |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 2512 | }, |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 2513 | 'info_collection_tests': { |
| 2514 | 'remove_from': [ |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 2515 | 'Android V8 FYI Release (Nexus 5X)', |
| 2516 | 'Linux V8 FYI Release (NVIDIA)', |
Michael Achenbach | 5fdfc67b | 2018-12-13 13:26:35 | [diff] [blame] | 2517 | 'Linux V8 FYI Release - pointer compression (NVIDIA)', |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 2518 | 'Mac V8 FYI Release (Intel)', |
| 2519 | 'Win V8 FYI Release (NVIDIA)', |
| 2520 | ], |
Brian Sheedy | fe61cdac | 2020-02-12 01:25:59 | [diff] [blame] | 2521 | 'modifications': { |
Brian Sheedy | b18cb76 | 2020-06-30 00:09:29 | [diff] [blame] | 2522 | 'ChromeOS FYI Release (amd64-generic)': { |
Brian Sheedy | 65be305 | 2020-06-26 19:26:51 | [diff] [blame] | 2523 | 'args': [ |
Brian Sheedy | b18cb76 | 2020-06-30 00:09:29 | [diff] [blame] | 2524 | # Swarming does not report a GPU since tests are run in a VM, but |
| 2525 | # the VM does report that a GPU is present. |
| 2526 | '--expected-device-id', '1050', |
Brian Sheedy | df2672f | 2020-05-07 20:44:36 | [diff] [blame] | 2527 | ], |
| 2528 | }, |
Chong Gu | bd236c2 | 2022-10-12 18:11:56 | [diff] [blame] | 2529 | 'fuchsia-x64-chrome-rel': { |
Chong Gu | 3065cdc | 2022-02-28 21:03:03 | [diff] [blame] | 2530 | 'args': [ |
| 2531 | # Swarming does not report a GPU since tests are run in a VM, but |
| 2532 | # the VM does report that a GPU is present. |
| 2533 | '--expected-device-id', 'c0de', |
| 2534 | ], |
| 2535 | }, |
Brian Sheedy | fe61cdac | 2020-02-12 01:25:59 | [diff] [blame] | 2536 | }, |
Brian Sheedy | 32eeeb5 | 2020-05-22 01:49:37 | [diff] [blame] | 2537 | 'replacements': { |
| 2538 | 'ChromeOS FYI Release (amd64-generic)': { |
| 2539 | 'args': { |
| 2540 | # Swarming does not report a GPU since tests are run in a VM, but |
| 2541 | # the VM does report that a GPU is present. |
| 2542 | '--expected-vendor-id': '1af4', |
Brian Sheedy | b18cb76 | 2020-06-30 00:09:29 | [diff] [blame] | 2543 | # Magic substitution happens after regular replacement, so remove it |
| 2544 | # now since we are manually applying the expected device ID above. |
| 2545 | '$$MAGIC_SUBSTITUTION_GPUExpectedDeviceId': None, |
Brian Sheedy | 32eeeb5 | 2020-05-22 01:49:37 | [diff] [blame] | 2546 | }, |
Brian Sheedy | ff6d144 | 2020-09-19 00:46:31 | [diff] [blame] | 2547 | }, |
Brian Sheedy | e9c7afe5 | 2022-06-13 21:19:37 | [diff] [blame] | 2548 | 'Mac FYI Experimental Release (Apple M1)': { |
| 2549 | 'args': { |
| 2550 | # The GPU information is not yet exposed in swarming, so we can't |
| 2551 | # explicitly request it and have the JSON generation handle this |
| 2552 | # automatically. |
| 2553 | '--expected-vendor-id': '106b', |
| 2554 | }, |
| 2555 | }, |
Brian Sheedy | 177addbf | 2021-09-24 19:06:51 | [diff] [blame] | 2556 | 'Mac FYI Release (Apple M1)': { |
| 2557 | 'args': { |
| 2558 | # The GPU information is not yet exposed in swarming, so we can't |
| 2559 | # explicitly request it and have the JSON generation handle this |
| 2560 | # automatically. |
| 2561 | '--expected-vendor-id': '106b', |
| 2562 | }, |
| 2563 | }, |
Chong Gu | bd236c2 | 2022-10-12 18:11:56 | [diff] [blame] | 2564 | 'fuchsia-x64-chrome-rel': { |
Chong Gu | 3065cdc | 2022-02-28 21:03:03 | [diff] [blame] | 2565 | 'args': { |
| 2566 | # The GPU information is not exposed in swarming since Fuchsia |
| 2567 | # launches an emulator on the GCE machine. |
| 2568 | '--expected-vendor-id': '1ae0', |
| 2569 | '$$MAGIC_SUBSTITUTION_GPUExpectedDeviceId': None, |
| 2570 | }, |
| 2571 | }, |
Brian Sheedy | 32eeeb5 | 2020-05-22 01:49:37 | [diff] [blame] | 2572 | }, |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 2573 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2574 | 'interactive_ui_tests': { |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 2575 | 'remove_from': [ |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 2576 | 'CrWinAsan(dll)', # https://crbug.com/935598 |
| 2577 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2578 | 'modifications': { |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2579 | 'Linux - Future (dbg)': { # client.v8.chromium |
Nico Weber | dae13cd9 | 2018-12-14 13:56:26 | [diff] [blame] | 2580 | 'swarming': { |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2581 | 'shards': 3, |
Nico Weber | dae13cd9 | 2018-12-14 13:56:26 | [diff] [blame] | 2582 | }, |
| 2583 | }, |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 2584 | 'Linux ASan LSan Tests (1)': { |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 2585 | # These are slow on the ASan trybot for some reason, crbug.com/1257927 |
Nico Weber | 96a75a694 | 2018-06-20 04:53:17 | [diff] [blame] | 2586 | 'swarming': { |
Stephanie Kim | 75e95f6 | 2022-11-04 16:06:13 | [diff] [blame] | 2587 | 'shards': 12, |
Nico Weber | 96a75a694 | 2018-06-20 04:53:17 | [diff] [blame] | 2588 | }, |
| 2589 | }, |
Pavol Marko | 05b6bb9 | 2022-03-21 12:33:29 | [diff] [blame] | 2590 | 'Linux Chromium OS ASan LSan Tests (1)': { |
| 2591 | # These are slow on the ASan trybot for some reason, crbug.com/1257927 |
| 2592 | 'swarming': { |
| 2593 | 'shards': 6, |
| 2594 | 'quickrun_shards': 12, |
| 2595 | }, |
| 2596 | }, |
Takuto Ikuta | 54671d97 | 2018-07-19 19:06:35 | [diff] [blame] | 2597 | 'Linux ChromiumOS MSan Tests': { |
| 2598 | # These are very slow on the Chrome OS MSAN trybot for some reason. |
| 2599 | # crbug.com/865455 |
| 2600 | 'swarming': { |
| 2601 | 'shards': 5, |
| 2602 | }, |
| 2603 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2604 | 'Linux TSan Tests': { |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 2605 | # These are slow on the TSan bots for some reason, crbug.com/1257927 |
Dirk Pranke | 8fd63c1 | 2017-12-10 18:06:27 | [diff] [blame] | 2606 | 'swarming': { |
Stephen Martinis | ad6cb7af | 2021-02-24 01:12:00 | [diff] [blame] | 2607 | 'shards': 32, # Adjusted for testing, see https://crbug.com/1179567 |
Dirk Pranke | 8fd63c1 | 2017-12-10 18:06:27 | [diff] [blame] | 2608 | }, |
| 2609 | }, |
Maksim Sisov | c81d284c | 2021-10-05 17:54:35 | [diff] [blame] | 2610 | # https://crbug.com/1192997 |
| 2611 | 'Linux Tests (Wayland)': { |
| 2612 | 'args': [ |
| 2613 | '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.interactive_ui_tests_wayland.filter', |
| 2614 | ], |
| 2615 | }, |
Lindsay Pasricha | b3f72db | 2021-09-22 22:05:46 | [diff] [blame] | 2616 | 'Mac ASan 64 Tests (1)': { # https://crbug.com/1251656 |
| 2617 | 'experiment_percentage': 100, |
| 2618 | }, |
Struan Shrimpton | e772d72f | 2021-12-15 07:50:09 | [diff] [blame] | 2619 | 'Mac11 Tests': { |
| 2620 | 'swarming': { |
| 2621 | 'quickrun_shards': 6, |
| 2622 | }, |
| 2623 | }, |
Yue She | 0cad292 | 2022-06-24 15:06:07 | [diff] [blame] | 2624 | 'Mac12 Tests': { |
| 2625 | 'swarming': { |
Stephanie Kim | 28fc590 | 2022-11-11 14:54:42 | [diff] [blame] | 2626 | 'shards': 6, |
Struan Shrimpton | 5786bfd0 | 2023-01-11 00:47:54 | [diff] [blame] | 2627 | 'inverse_quickrun_shards': 12, |
Yue She | 0cad292 | 2022-06-24 15:06:07 | [diff] [blame] | 2628 | }, |
| 2629 | }, |
Cameron Higgins | 7558b16 | 2022-06-10 18:53:07 | [diff] [blame] | 2630 | 'Mac12 Tests (dbg)': { # https://crbug.com/1265051 |
Zhaoyang Li | 9357e1e1 | 2021-12-07 18:53:17 | [diff] [blame] | 2631 | 'experiment_percentage': 100, |
| 2632 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2633 | 'ToTLinuxTSan': { |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 2634 | # These are slow on the TSan bots for some reason, crbug.com/1257927 |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2635 | 'swarming': { |
| 2636 | 'shards': 6, |
| 2637 | }, |
| 2638 | }, |
Struan Shrimpton | a1ab767 | 2022-01-13 18:02:51 | [diff] [blame] | 2639 | 'Win10 Tests x64': { |
| 2640 | 'swarming': { |
Stephanie Kim | a57b46a | 2022-10-27 22:09:03 | [diff] [blame] | 2641 | 'shards': 9, |
Struan Shrimpton | a1ab767 | 2022-01-13 18:02:51 | [diff] [blame] | 2642 | }, |
| 2643 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2644 | # temporary, https://crbug.com/818832 |
Greg Thompson | 3eb7e652 | 2018-05-25 09:04:03 | [diff] [blame] | 2645 | 'Win10 Tests x64 (dbg)': { |
| 2646 | 'experiment_percentage': 100, |
| 2647 | }, |
Jacob Kopczynski | 3a555bd3 | 2020-12-10 01:41:16 | [diff] [blame] | 2648 | # TODO(crbug.com/970649): Remove these filters. |
Ben Pastene | 8ef125e | 2019-12-10 01:46:29 | [diff] [blame] | 2649 | 'linux-chromeos-chrome': { |
Ben Pastene | 8ef125e | 2019-12-10 01:46:29 | [diff] [blame] | 2650 | 'args': [ |
| 2651 | '--gtest_filter=-SadTabViewInteractiveUITest.ReloadMultipleSadTabs', |
| 2652 | ], |
| 2653 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2654 | 'linux-chromeos-code-coverage': { |
Yuke Liao | 79424e4 | 2020-01-06 21:00:11 | [diff] [blame] | 2655 | 'swarming': { |
| 2656 | 'shards': 10, |
| 2657 | }, |
| 2658 | }, |
Pavol Marko | 582a15d | 2022-04-01 12:47:20 | [diff] [blame] | 2659 | 'linux-chromeos-dbg': { |
| 2660 | 'swarming': { |
| 2661 | 'shards': 6, |
| 2662 | }, |
| 2663 | }, |
Stephanie Kim | 3aa4c55 | 2023-01-10 18:00:04 | [diff] [blame] | 2664 | 'linux-chromeos-rel': { |
| 2665 | 'swarming': { |
| 2666 | 'shards': 5, |
| 2667 | }, |
| 2668 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 2669 | 'linux-code-coverage': { |
Yuke Liao | 79424e4 | 2020-01-06 21:00:11 | [diff] [blame] | 2670 | 'swarming': { |
| 2671 | 'shards': 10, |
| 2672 | }, |
| 2673 | }, |
Thiago Perrotta | d12c787 | 2023-01-12 17:30:56 | [diff] [blame] | 2674 | 'linux-rel-cft': { |
| 2675 | 'args': [ |
| 2676 | '--test-launcher-filter-file=../../testing/buildbot/filters/linux.linux-rel-cft.interactive_ui_tests.filter', |
| 2677 | ], |
| 2678 | }, |
Kuan Huang | 235b014 | 2021-10-19 18:59:28 | [diff] [blame] | 2679 | 'mac-code-coverage': { |
| 2680 | 'args': [ |
| 2681 | '--coverage-continuous-mode=1', |
| 2682 | ], |
| 2683 | }, |
Lindsay Pasricha | 60535a2 | 2021-12-13 16:50:24 | [diff] [blame] | 2684 | # TODO (crbug.com/1278617) Re-enable once fixed |
| 2685 | 'mac-osxbeta-rel': { |
| 2686 | 'experiment_percentage': 100, |
| 2687 | }, |
Thiago Perrotta | d12c787 | 2023-01-12 17:30:56 | [diff] [blame] | 2688 | 'mac-rel-cft': { |
| 2689 | 'args': [ |
| 2690 | '--test-launcher-filter-file=../../testing/buildbot/filters/mac.mac-rel-cft.interactive_ui_tests.filter', |
| 2691 | ], |
Thiago Perrotta | a289bad | 2023-01-20 12:44:39 | [diff] [blame] | 2692 | 'swarming': { |
| 2693 | 'shards': 6, |
| 2694 | 'inverse_quickrun_shards': 12, |
| 2695 | }, |
Thiago Perrotta | d12c787 | 2023-01-12 17:30:56 | [diff] [blame] | 2696 | }, |
Kuan Huang | 1b52d44 | 2023-02-07 20:35:34 | [diff] [blame] | 2697 | 'win-asan': { |
| 2698 | # Tests shows tests run faster with fewer retries by using fewer jobs crbug.com/1411912 |
| 2699 | 'args': [ |
| 2700 | '--test-launcher-jobs=3', |
| 2701 | ], |
| 2702 | 'swarming': { |
| 2703 | 'shards': 6, |
| 2704 | }, |
| 2705 | }, |
Thiago Perrotta | d12c787 | 2023-01-12 17:30:56 | [diff] [blame] | 2706 | 'win-rel-cft': { |
| 2707 | 'args': [ |
| 2708 | '--test-launcher-filter-file=../../testing/buildbot/filters/win.win-rel-cft.interactive_ui_tests.filter', |
| 2709 | ], |
Thiago Perrotta | 314f7b0 | 2023-01-19 21:30:53 | [diff] [blame] | 2710 | 'swarming': { |
| 2711 | 'shards': 9, |
| 2712 | }, |
Thiago Perrotta | d12c787 | 2023-01-12 17:30:56 | [diff] [blame] | 2713 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2714 | }, |
| 2715 | }, |
Sven Zheng | ef0d087 | 2022-04-04 22:13:29 | [diff] [blame] | 2716 | 'interactive_ui_tests amd64-generic': { |
Yuke Liao | b6beaeca | 2021-04-29 23:41:51 | [diff] [blame] | 2717 | 'remove_from': [ |
| 2718 | # TODO(crbug.com/1204231): Re-enable. |
| 2719 | 'lacros-amd64-generic-rel', |
Yuke Liao | 859819d | 2022-02-24 08:23:49 | [diff] [blame] | 2720 | 'lacros-amd64-generic-rel-fyi', |
Yuke Liao | b6beaeca | 2021-04-29 23:41:51 | [diff] [blame] | 2721 | ] |
| 2722 | }, |
Sven Zheng | ef0d087 | 2022-04-04 22:13:29 | [diff] [blame] | 2723 | 'interactive_ui_tests eve': { |
Yuke Liao | 79a8cf5 | 2021-06-11 18:14:34 | [diff] [blame] | 2724 | 'remove_from': [ |
| 2725 | # TODO(crbug.com/1204231): Re-enable. |
| 2726 | 'lacros-amd64-generic-rel', |
Yuke Liao | 859819d | 2022-02-24 08:23:49 | [diff] [blame] | 2727 | 'lacros-amd64-generic-rel-fyi', |
Yuke Liao | 79a8cf5 | 2021-06-11 18:14:34 | [diff] [blame] | 2728 | ] |
| 2729 | }, |
John Budorick | f00e5ff | 2019-06-11 21:21:06 | [diff] [blame] | 2730 | 'ipc_tests': { |
| 2731 | 'modifications': { |
| 2732 | 'android-asan': { |
| 2733 | 'swarming': { |
| 2734 | 'shards': 2, |
| 2735 | }, |
| 2736 | }, |
| 2737 | }, |
| 2738 | }, |
Jieting Yang | e63d9cf | 2022-09-20 21:57:50 | [diff] [blame] | 2739 | 'lacros_all_tast_tests jacuzzi': { |
| 2740 | 'modifications': { |
| 2741 | 'lacros-arm-generic-chrome': { |
| 2742 | 'experiment_percentage': 100, |
| 2743 | }, |
Jieting Yang | d81cc96 | 2022-12-05 21:26:13 | [diff] [blame] | 2744 | 'lacros-arm-generic-rel': { |
| 2745 | 'ci_only': True, |
| 2746 | }, |
| 2747 | }, |
| 2748 | }, |
| 2749 | 'lacros_cq_tast_tests_jacuzzi jacuzzi': { |
| 2750 | 'modifications': { |
| 2751 | 'lacros-arm-generic-rel': { |
| 2752 | 'ci_only': True, |
| 2753 | }, |
Jieting Yang | e63d9cf | 2022-09-20 21:57:50 | [diff] [blame] | 2754 | }, |
| 2755 | }, |
Dirk Pranke | 8d2a9f5 | 2022-12-08 20:25:42 | [diff] [blame] | 2756 | 'mac_signing_tests': { |
| 2757 | 'remove_from': [ |
| 2758 | # This is intentional and explained in the waterfalls.pyl comment for |
| 2759 | # this builder. |
| 2760 | 'mac-rel-cft', |
| 2761 | ], |
| 2762 | }, |
Jonah Ryan-Davis | 832c846 | 2020-06-09 03:45:03 | [diff] [blame] | 2763 | 'maps_pixel_passthrough_test': { |
Brian Sheedy | c0c142c | 2021-06-01 21:18:05 | [diff] [blame] | 2764 | 'modifications': { |
| 2765 | 'Android FYI Release (Pixel 4)': { |
| 2766 | 'args': [ |
| 2767 | # Pixel 4s are weird in that they can output in different color spaces |
| 2768 | # simultaneously. The readback code for capturing a screenshot assumes |
| 2769 | # only one color space, so disable wide color gamut for the test to |
| 2770 | # work around the issue. See https://crbug.com/1166379 for more |
| 2771 | # information. |
| 2772 | '--extra-browser-args=--disable-wcg-for-test', |
| 2773 | ], |
| 2774 | }, |
Ben Pastene | 63f1330 | 2022-05-12 21:04:05 | [diff] [blame] | 2775 | 'android_optional_gpu_tests_rel': { |
| 2776 | 'args': [ |
| 2777 | # See above. |
| 2778 | '--extra-browser-args=--disable-wcg-for-test', |
| 2779 | ], |
| 2780 | }, |
Brian Sheedy | c0c142c | 2021-06-01 21:18:05 | [diff] [blame] | 2781 | }, |
Jonah Ryan-Davis | 832c846 | 2020-06-09 03:45:03 | [diff] [blame] | 2782 | 'replacements': { |
| 2783 | # The V8 builders pass the V8 revision for ${got_revision}, so instead |
| 2784 | # use ${got_cr_revision}, which is only set on the V8 bots. |
| 2785 | 'Linux V8 FYI Release (NVIDIA)': { |
| 2786 | 'args': { |
| 2787 | '--git-revision': '${got_cr_revision}', |
| 2788 | }, |
| 2789 | }, |
| 2790 | 'Linux V8 FYI Release - pointer compression (NVIDIA)': { |
| 2791 | 'args': { |
| 2792 | '--git-revision': '${got_cr_revision}', |
| 2793 | }, |
| 2794 | }, |
Jonah Ryan-Davis | deeffeaf | 2020-06-18 17:56:00 | [diff] [blame] | 2795 | 'Mac V8 FYI Release (Intel)': { |
| 2796 | 'args': { |
| 2797 | '--git-revision': '${got_cr_revision}', |
| 2798 | }, |
| 2799 | }, |
Jonah Ryan-Davis | 832c846 | 2020-06-09 03:45:03 | [diff] [blame] | 2800 | 'Win V8 FYI Release (NVIDIA)': { |
| 2801 | 'args': { |
| 2802 | '--git-revision': '${got_cr_revision}', |
| 2803 | }, |
| 2804 | }, |
| 2805 | }, |
| 2806 | }, |
| 2807 | 'maps_pixel_validating_test': { |
Brian Sheedy | 0566f2cb | 2021-02-12 22:12:50 | [diff] [blame] | 2808 | 'modifications': { |
| 2809 | 'Android FYI Release (Pixel 4)': { |
| 2810 | 'args': [ |
| 2811 | # Pixel 4s are weird in that they can output in different color spaces |
| 2812 | # simultaneously. The readback code for capturing a screenshot assumes |
| 2813 | # only one color space, so disable wide color gamut for the test to |
| 2814 | # work around the issue. See https://crbug.com/1166379 for more |
| 2815 | # information. |
| 2816 | '--extra-browser-args=--disable-wcg-for-test', |
| 2817 | ], |
| 2818 | }, |
Ben Pastene | 63f1330 | 2022-05-12 21:04:05 | [diff] [blame] | 2819 | 'android_optional_gpu_tests_rel': { |
| 2820 | 'args': [ |
| 2821 | # See above. |
| 2822 | '--extra-browser-args=--disable-wcg-for-test', |
| 2823 | ], |
| 2824 | }, |
Brian Sheedy | 0566f2cb | 2021-02-12 22:12:50 | [diff] [blame] | 2825 | }, |
Brian Sheedy | e285c9b | 2019-07-15 21:42:46 | [diff] [blame] | 2826 | # TODO(https://crbug.com/850107): Remove the Android FYI Release (Pixel 2) |
| 2827 | # exception once there is enough capacity to run these tests. |
| 2828 | 'remove_from': [ |
Brian Sheedy | e285c9b | 2019-07-15 21:42:46 | [diff] [blame] | 2829 | 'Android FYI Release (Pixel 2)', |
| 2830 | ], |
Brian Sheedy | 44fd891b | 2019-10-03 20:07:54 | [diff] [blame] | 2831 | 'replacements': { |
Brian Sheedy | 44fd891b | 2019-10-03 20:07:54 | [diff] [blame] | 2832 | # The V8 builders pass the V8 revision for ${got_revision}, so instead |
| 2833 | # use ${got_cr_revision}, which is only set on the V8 bots. |
| 2834 | 'Android V8 FYI Release (Nexus 5X)': { |
| 2835 | 'args': { |
Brian Sheedy | 4d335deb | 2020-04-01 20:47:32 | [diff] [blame] | 2836 | '--git-revision': '${got_cr_revision}', |
Brian Sheedy | 44fd891b | 2019-10-03 20:07:54 | [diff] [blame] | 2837 | }, |
| 2838 | }, |
Brian Sheedy | 44fd891b | 2019-10-03 20:07:54 | [diff] [blame] | 2839 | }, |
Brian Sheedy | e285c9b | 2019-07-15 21:42:46 | [diff] [blame] | 2840 | }, |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 2841 | 'media_unittests': { |
| 2842 | 'modifications': { |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 2843 | 'android-11-x86-rel': { |
Haiyang Pan | cf76586 | 2021-03-18 20:39:15 | [diff] [blame] | 2844 | 'args': [ |
Haiyang Pan | 9c91cd4 | 2023-02-08 23:19:59 | [diff] [blame] | 2845 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.media_unittests.filter', |
Haiyang Pan | 80b0d41 | 2021-11-23 00:06:42 | [diff] [blame] | 2846 | ], |
| 2847 | }, |
Haiyang Pan | 2a55a45 | 2022-03-03 08:18:33 | [diff] [blame] | 2848 | 'android-12-x64-rel': { |
Haiyang Pan | 80b0d41 | 2021-11-23 00:06:42 | [diff] [blame] | 2849 | 'args': [ |
Haiyang Pan | 9c91cd4 | 2023-02-08 23:19:59 | [diff] [blame] | 2850 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.media_unittests.filter', |
| 2851 | ], |
| 2852 | }, |
| 2853 | 'android-12l-x64-dbg-tests': { |
| 2854 | 'args': [ |
| 2855 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.media_unittests.filter', |
| 2856 | ], |
| 2857 | }, |
| 2858 | 'android-13-x64-rel': { |
| 2859 | 'args': [ |
| 2860 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.media_unittests.filter', |
Haiyang Pan | cf76586 | 2021-03-18 20:39:15 | [diff] [blame] | 2861 | ], |
| 2862 | }, |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 2863 | 'android-pie-arm64-rel': { |
Andrew Luo | be83fd8 | 2019-12-19 03:07:58 | [diff] [blame] | 2864 | 'args': [ |
| 2865 | '--gtest_filter=-AAudio/AudioOutputTest.Play200HzTone/0', # https://crbug.com/1034009 |
| 2866 | ], |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 2867 | }, |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 2868 | 'fuchsia-code-coverage': { |
| 2869 | 'swarming': { |
| 2870 | 'shards': 3, |
| 2871 | }, |
| 2872 | }, |
Chong Gu | b244646 | 2021-08-19 18:44:08 | [diff] [blame] | 2873 | 'fuchsia-fyi-arm64-dbg': { |
| 2874 | 'args': [ |
| 2875 | '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.debug.media_unittests.filter', |
| 2876 | ], |
| 2877 | }, |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 2878 | }, |
| 2879 | }, |
Chong Gu | 4eca1ce | 2021-05-17 08:49:57 | [diff] [blame] | 2880 | 'mediapipe_validating_tests': { |
Rohan Pavone | df728bee2 | 2022-11-09 21:32:55 | [diff] [blame] | 2881 | 'modifications': { |
David Dorwin | 06fae77 | 2022-10-07 16:34:42 | [diff] [blame] | 2882 | # TODO(crbug.com/1372213): Remove once tests are stable. |
David Dorwin | f060a72d | 2022-10-05 22:09:03 | [diff] [blame] | 2883 | 'fuchsia-x64-chrome-rel': { |
Chong Gu | abe5adec0 | 2022-03-24 17:41:30 | [diff] [blame] | 2884 | 'experiment_percentage': 100, |
| 2885 | }, |
| 2886 | }, |
Chong Gu | 4eca1ce | 2021-05-17 08:49:57 | [diff] [blame] | 2887 | 'remove_from': [ |
David Dorwin | 06fae77 | 2022-10-07 16:34:42 | [diff] [blame] | 2888 | # TODO(crbug.com/1372213): Remove these once tests are stable. |
David Dorwin | 49b2ddb | 2022-09-08 20:49:43 | [diff] [blame] | 2889 | 'fuchsia-x64-cast-receiver-rel', |
| 2890 | 'fuchsia-x64-rel', |
Chong Gu | 4eca1ce | 2021-05-17 08:49:57 | [diff] [blame] | 2891 | ], |
| 2892 | }, |
Ben Joyce | 02dc809 | 2021-03-04 21:48:19 | [diff] [blame] | 2893 | 'mojo_test_apk': { |
| 2894 | 'remove_from': [ |
| 2895 | 'android-code-coverage-native', # Does not generate profraw data. |
| 2896 | ], |
| 2897 | }, |
John Budorick | f00e5ff | 2019-06-11 21:21:06 | [diff] [blame] | 2898 | 'mojo_unittests': { |
| 2899 | 'modifications': { |
| 2900 | 'android-asan': { |
| 2901 | 'swarming': { |
John Budorick | 5a29d754 | 2019-10-11 20:56:44 | [diff] [blame] | 2902 | 'shards': 5, |
John Budorick | f00e5ff | 2019-06-11 21:21:06 | [diff] [blame] | 2903 | }, |
| 2904 | }, |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 2905 | 'fuchsia-code-coverage': { |
| 2906 | 'swarming': { |
| 2907 | 'shards': 2, |
| 2908 | }, |
| 2909 | }, |
John Budorick | f00e5ff | 2019-06-11 21:21:06 | [diff] [blame] | 2910 | }, |
| 2911 | }, |
bsheedy | e946957 | 2019-01-23 17:31:33 | [diff] [blame] | 2912 | 'monochrome_public_test_ar_apk': { |
| 2913 | 'modifications': { |
Brian Sheedy | 12169aa | 2019-10-16 23:38:03 | [diff] [blame] | 2914 | 'Nougat Phone Tester': { |
| 2915 | 'args': [ |
| 2916 | # ArCore is not installed as a system app on N, so we can install it |
| 2917 | # normally instead of replacing the system version. |
| 2918 | '--additional-apk=//third_party/arcore-android-sdk/test-apks/arcore/arcore_current.apk' |
| 2919 | ], |
| 2920 | }, |
bsheedy | e946957 | 2019-01-23 17:31:33 | [diff] [blame] | 2921 | # We need to match the Playstore version as well because AR tests fail on |
| 2922 | # old versions of the Playstore. |
| 2923 | 'Oreo Phone Tester': { |
Brian Sheedy | 2bcd16b | 2019-04-22 22:47:08 | [diff] [blame] | 2924 | 'args': [ |
| 2925 | # ArCore is not installed as a system app on O, so we can install it |
| 2926 | # normally instead of replacing the system version. |
| 2927 | '--additional-apk=//third_party/arcore-android-sdk/test-apks/arcore/arcore_current.apk' |
| 2928 | ], |
bsheedy | e946957 | 2019-01-23 17:31:33 | [diff] [blame] | 2929 | 'swarming': { |
| 2930 | 'dimension_sets': [ |
| 2931 | { |
| 2932 | 'device_os': 'OPR3.170623.008', |
bsheedy | e946957 | 2019-01-23 17:31:33 | [diff] [blame] | 2933 | 'device_type': 'marlin', |
| 2934 | 'os': 'Android', |
| 2935 | }, |
| 2936 | ], |
| 2937 | }, |
| 2938 | }, |
Haiyang Pan | 57159eba | 2020-05-07 23:14:13 | [diff] [blame] | 2939 | 'android-10-arm64-rel': { |
| 2940 | 'args': [ |
Brian Sheedy | 4dc4a6f | 2020-09-17 22:18:50 | [diff] [blame] | 2941 | '--remove-system-package=com.google.ar.core', |
| 2942 | '--additional-apk=//third_party/arcore-android-sdk/test-apks/arcore/arcore_current.apk', |
Haiyang Pan | 57159eba | 2020-05-07 23:14:13 | [diff] [blame] | 2943 | ] |
| 2944 | }, |
Brian Sheedy | 2bcd16b | 2019-04-22 22:47:08 | [diff] [blame] | 2945 | 'android-pie-arm64-dbg': { |
| 2946 | 'args': [ |
Brian Sheedy | 4dc4a6f | 2020-09-17 22:18:50 | [diff] [blame] | 2947 | '--remove-system-package=com.google.ar.core', |
| 2948 | '--additional-apk=//third_party/arcore-android-sdk/test-apks/arcore/arcore_current.apk', |
Brian Sheedy | 2bcd16b | 2019-04-22 22:47:08 | [diff] [blame] | 2949 | ] |
| 2950 | } |
bsheedy | e946957 | 2019-01-23 17:31:33 | [diff] [blame] | 2951 | }, |
| 2952 | }, |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 2953 | 'nacl_loader_unittests': { |
| 2954 | 'remove_from': [ |
Nico Weber | 48f18714 | 2018-06-01 15:16:35 | [diff] [blame] | 2955 | 'ToTMacASan', # The mac asan tot bot sets enable_nacl=false |
Nico Weber | 3611ee80 | 2018-06-07 13:34:51 | [diff] [blame] | 2956 | 'linux-win_cross-rel', # Sets enable_nacl=false, https://crbug.com/774186 |
Nico Weber | a8fc38f7 | 2018-04-10 02:20:11 | [diff] [blame] | 2957 | 'Linux TSan Tests', # The TSan bot sets enable_nacl=false |
Nico Weber | 05d3e64 | 2018-05-31 16:59:48 | [diff] [blame] | 2958 | 'Mac ASan 64 Tests (1)', # The mac asan bot sets enable_nacl=false |
Kenneth Russell | fbda3c53 | 2017-12-08 23:57:24 | [diff] [blame] | 2959 | ], |
| 2960 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 2961 | 'net_unittests': { |
| 2962 | 'modifications': { |
Nico Weber | 33b9b7a | 2020-06-12 19:23:27 | [diff] [blame] | 2963 | 'CrWinAsan': { |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 2964 | # TODO(crbug.com/1257927): net_unittests is slow under ASan. |
Nico Weber | 33b9b7a | 2020-06-12 19:23:27 | [diff] [blame] | 2965 | 'swarming': { |
| 2966 | 'shards': 16, |
| 2967 | }, |
| 2968 | }, |
| 2969 | 'CrWinAsan(dll)': { |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 2970 | # TODO(crbug.com/1257927): net_unittests is slow under ASan. |
Nico Weber | 33b9b7a | 2020-06-12 19:23:27 | [diff] [blame] | 2971 | 'swarming': { |
| 2972 | 'shards': 16, |
| 2973 | }, |
| 2974 | }, |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 2975 | 'Linux ASan LSan Tests (1)': { |
John Budorick | 5052d55 | 2017-12-13 02:59:34 | [diff] [blame] | 2976 | # These are very slow on the ASAN trybot for some reason. |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 2977 | # crbug.com/1257927 |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 2978 | 'swarming': { |
John Budorick | 5052d55 | 2017-12-13 02:59:34 | [diff] [blame] | 2979 | 'shards': 16, |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 2980 | }, |
| 2981 | }, |
| 2982 | 'Linux Chromium OS ASan LSan Tests (1)': { |
Takuto Ikuta | 54671d97 | 2018-07-19 19:06:35 | [diff] [blame] | 2983 | # These are very slow on the ASAN trybot for some reason. |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 2984 | # crbug.com/1257927 |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 2985 | 'swarming': { |
Sergey Berezin | da3255c | 2018-03-16 00:34:02 | [diff] [blame] | 2986 | 'shards': 8, |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 2987 | } |
| 2988 | }, |
Takuto Ikuta | 54671d97 | 2018-07-19 19:06:35 | [diff] [blame] | 2989 | 'Linux ChromiumOS MSan Tests': { |
| 2990 | # These are very slow on the Chrome OS MSAN trybot for some reason. |
| 2991 | # crbug.com/865455 |
| 2992 | 'swarming': { |
| 2993 | 'shards': 2, |
| 2994 | }, |
| 2995 | }, |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 2996 | 'Linux TSan Tests': { |
| 2997 | 'swarming': { |
| 2998 | 'shards': 4, |
| 2999 | } |
| 3000 | }, |
Ben Pastene | 8bf205b | 2018-06-13 04:00:33 | [diff] [blame] | 3001 | # The suite runs signficantly slower on linux dbg, so increase shards. |
| 3002 | 'Linux Tests (dbg)(1)': { |
| 3003 | 'swarming': { |
| 3004 | 'shards': 2, |
| 3005 | }, |
| 3006 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 3007 | 'ToTLinuxASan': { |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 3008 | # TODO(crbug.com/1257927): net_unittests is slow under ASan. |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 3009 | 'swarming': { |
| 3010 | 'shards': 16, |
| 3011 | }, |
| 3012 | }, |
| 3013 | 'ToTLinuxTSan': { |
| 3014 | 'swarming': { |
| 3015 | 'shards': 4, |
| 3016 | } |
| 3017 | }, |
Struan Shrimpton | 5786bfd0 | 2023-01-11 00:47:54 | [diff] [blame] | 3018 | 'android-12-x64-rel': { |
| 3019 | 'swarming': { |
| 3020 | 'inverse_quickrun_shards': 6, |
| 3021 | }, |
| 3022 | }, |
Stefano Duo | f44278b | 2021-08-02 16:29:38 | [diff] [blame] | 3023 | 'android-cronet-x86-dbg-10-tests': { |
| 3024 | 'args': [ |
| 3025 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_10.net_unittests.filter', |
| 3026 | ], |
| 3027 | }, |
Chidera Olibie | 262e33e | 2022-03-02 11:45:28 | [diff] [blame] | 3028 | 'android-cronet-x86-dbg-lollipop-tests': { |
| 3029 | 'args': [ |
| 3030 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_l.net_unittests.filter', |
| 3031 | ], |
| 3032 | }, |
Chidera Olibie | ef99a55ca | 2021-10-01 21:42:00 | [diff] [blame] | 3033 | 'android-cronet-x86-dbg-oreo-tests': { |
| 3034 | 'args': [ |
| 3035 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.net_unittests.filter', |
| 3036 | ], |
| 3037 | }, |
Chidera Olibie | 509fd73 | 2021-09-30 20:17:17 | [diff] [blame] | 3038 | 'android-cronet-x86-dbg-pie-tests': { |
| 3039 | # crbug.com/1046060 |
| 3040 | 'args': [ |
| 3041 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.net_unittests.filter', |
| 3042 | ], |
| 3043 | }, |
Chidera Olibie | 5c0ec91 | 2022-03-23 10:44:51 | [diff] [blame] | 3044 | 'android-cronet-x86-rel-kitkat-tests': { |
| 3045 | 'args': [ |
| 3046 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_k.net_unittests.filter', |
| 3047 | ], |
| 3048 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 3049 | 'android-pie-x86-rel': { |
John Budorick | 7fde6b49 | 2020-01-29 17:43:50 | [diff] [blame] | 3050 | # crbug.com/1046060 |
| 3051 | 'args': [ |
| 3052 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.net_unittests.filter', |
| 3053 | ], |
| 3054 | }, |
Struan Shrimpton | 4b7abc0 | 2021-12-16 01:36:59 | [diff] [blame] | 3055 | 'chromeos-amd64-generic-rel': { |
| 3056 | 'swarming': { |
| 3057 | 'quickrun_shards': 6, |
| 3058 | }, |
| 3059 | }, |
Chong Gu | 7604641 | 2021-09-22 17:49:21 | [diff] [blame] | 3060 | 'fuchsia-code-coverage': { |
| 3061 | 'swarming': { |
| 3062 | 'shards': 14, |
| 3063 | }, |
| 3064 | }, |
Ben Pastene | 8bf205b | 2018-06-13 04:00:33 | [diff] [blame] | 3065 | 'linux-chromeos-dbg': { |
| 3066 | 'swarming': { |
| 3067 | 'shards': 2, |
| 3068 | }, |
| 3069 | }, |
Nico Weber | 33b9b7a | 2020-06-12 19:23:27 | [diff] [blame] | 3070 | 'win-asan': { |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 3071 | # TODO(crbug.com/1257927): net_unittests is slow under ASan. |
Nico Weber | 33b9b7a | 2020-06-12 19:23:27 | [diff] [blame] | 3072 | 'swarming': { |
| 3073 | 'shards': 16, |
| 3074 | }, |
| 3075 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3076 | }, |
| 3077 | }, |
John Chen | aab16fc0 | 2020-03-03 06:35:45 | [diff] [blame] | 3078 | 'not_site_per_process_blink_web_tests': { |
Lukasz Anforowicz | 04bc630 | 2018-11-19 19:04:28 | [diff] [blame] | 3079 | 'remove_from': [ |
Lukasz Anforowicz | 04bc630 | 2018-11-19 19:04:28 | [diff] [blame] | 3080 | # TODO(dpranke): Should we be running this step on Linux Tests (dbg)(1)? |
| 3081 | 'Linux Tests (dbg)(1)', |
Lukasz Anforowicz | 04bc630 | 2018-11-19 19:04:28 | [diff] [blame] | 3082 | ], |
Yuke Liao | bc9ff98 | 2019-04-30 06:56:16 | [diff] [blame] | 3083 | 'modifications': { |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 3084 | 'Linux Tests': { |
| 3085 | "args": [ |
| 3086 | "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw", |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 3087 | ], |
Struan Shrimpton | 57c594e4 | 2022-01-25 17:59:13 | [diff] [blame] | 3088 | 'swarming': { |
| 3089 | 'quickrun_shards': 18, |
| 3090 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 3091 | }, |
Yuke Liao | ea70f47 | 2019-12-19 06:03:36 | [diff] [blame] | 3092 | 'linux-code-coverage': { |
| 3093 | 'args': [ |
| 3094 | '--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw', |
Yuke Liao | ea70f47 | 2019-12-19 06:03:36 | [diff] [blame] | 3095 | ], |
| 3096 | 'swarming': { |
| 3097 | 'shards': 20, |
| 3098 | }, |
| 3099 | }, |
Thiago Perrotta | 6148746 | 2023-01-20 12:52:32 | [diff] [blame] | 3100 | 'linux-rel-cft': { |
| 3101 | "args": [ |
| 3102 | "--additional-env-var=LLVM_PROFILE_FILE=${ISOLATED_OUTDIR}/profraw/default-%2m.profraw", |
| 3103 | ], |
| 3104 | 'swarming': { |
| 3105 | 'quickrun_shards': 18, |
| 3106 | }, |
| 3107 | }, |
Yuke Liao | bc9ff98 | 2019-04-30 06:56:16 | [diff] [blame] | 3108 | }, |
Lukasz Anforowicz | 04bc630 | 2018-11-19 19:04:28 | [diff] [blame] | 3109 | }, |
Xi Cheng | 34ca404 | 2018-02-23 00:10:12 | [diff] [blame] | 3110 | 'notification_helper_unittests': { |
| 3111 | 'remove_from': [ |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 3112 | # all these bots run Windows 7. |
Xi Cheng | 34ca404 | 2018-02-23 00:10:12 | [diff] [blame] | 3113 | 'ToTWin', |
| 3114 | 'ToTWin(dbg)', |
| 3115 | 'ToTWin(dll)', |
inglorion | b8e7a3ed | 2019-04-12 09:49:03 | [diff] [blame] | 3116 | 'ToTWinOfficial', |
Arthur Eubanks | 0c24b82 | 2021-06-15 18:51:34 | [diff] [blame] | 3117 | 'ToTWinOfficial64', |
Xi Cheng | 34ca404 | 2018-02-23 00:10:12 | [diff] [blame] | 3118 | 'ToTWin64', |
| 3119 | 'ToTWin64(dbg)', |
| 3120 | 'ToTWin64(dll)', |
Xi Cheng | 34ca404 | 2018-02-23 00:10:12 | [diff] [blame] | 3121 | ], |
| 3122 | }, |
James Shen | f4199bfd | 2022-08-13 00:44:27 | [diff] [blame] | 3123 | 'oop_network_service_content_browsertests': { |
| 3124 | 'modifications': { |
| 3125 | 'android-12-x64-fyi-rel': { |
| 3126 | 'args': [ |
| 3127 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator_12.oop_network_service_content_browsertests.filter', |
| 3128 | ], |
| 3129 | }, |
| 3130 | }, |
| 3131 | }, |
Ben Pastene | e723b2f | 2019-05-31 19:10:27 | [diff] [blame] | 3132 | 'ozone_unittests': { |
| 3133 | 'modifications': { |
Ben Pastene | 8ef125e | 2019-12-10 01:46:29 | [diff] [blame] | 3134 | 'chromeos-betty-pi-arc-chrome': { |
| 3135 | 'args': [ |
| 3136 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter', |
| 3137 | ], |
| 3138 | }, |
Ben Pastene | 500cc1d1 | 2021-01-22 18:10:47 | [diff] [blame] | 3139 | 'chromeos-betty-pi-arc-chrome-dchecks': { |
| 3140 | 'args': [ |
| 3141 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter', |
| 3142 | ], |
| 3143 | }, |
Ben Pastene | 8ef125e | 2019-12-10 01:46:29 | [diff] [blame] | 3144 | 'linux-chromeos-chrome': { |
| 3145 | 'args': [ |
| 3146 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter', |
| 3147 | ], |
| 3148 | }, |
Ben Pastene | e723b2f | 2019-05-31 19:10:27 | [diff] [blame] | 3149 | }, |
| 3150 | }, |
Maksim Sisov | c81d284c | 2021-10-05 17:54:35 | [diff] [blame] | 3151 | 'ozone_x11_unittests': { |
| 3152 | # Wayland bot uses chromium_linux_gtests that includes some x11 only |
| 3153 | # test targets. To avoid maintaining a list of tests, remove them here. |
| 3154 | 'remove_from': [ |
| 3155 | 'Linux Tests (Wayland)', |
| 3156 | ], |
| 3157 | }, |
Karen Qian | 385d2ca | 2019-03-19 21:49:58 | [diff] [blame] | 3158 | 'perfetto_unittests': { |
Haiyang Pan | 0e27adbeb | 2021-12-14 22:44:30 | [diff] [blame] | 3159 | 'modifications': { |
Haiyang Pan | 2a55a45 | 2022-03-03 08:18:33 | [diff] [blame] | 3160 | 'android-12-x64-rel': { |
Haiyang Pan | 0e27adbeb | 2021-12-14 22:44:30 | [diff] [blame] | 3161 | 'args': [ |
| 3162 | # TODO(crbug.com/1260440): Fix the failed test |
| 3163 | '--gtest_filter=-ScopedDirTest.CloseOutOfScope', |
| 3164 | ], |
| 3165 | }, |
Haiyang Pan | 32338b7 | 2023-02-08 23:48:58 | [diff] [blame] | 3166 | 'android-12l-x64-dbg-tests': { |
| 3167 | 'args': [ |
| 3168 | # TODO(crbug.com/1260440): Fix the failed test |
| 3169 | '--gtest_filter=-ScopedDirTest.CloseOutOfScope', |
| 3170 | ], |
| 3171 | }, |
| 3172 | 'android-13-x64-rel': { |
| 3173 | 'args': [ |
| 3174 | # TODO(crbug.com/1260440): Fix the failed test |
| 3175 | '--gtest_filter=-ScopedDirTest.CloseOutOfScope', |
| 3176 | ], |
| 3177 | }, |
James Shen | 274775eb | 2022-07-06 22:54:43 | [diff] [blame] | 3178 | 'android-nougat-x86-rel': { |
| 3179 | 'args': [ |
| 3180 | # TODO(crbug.com/1260440): Fix the failed test |
| 3181 | '--gtest_filter=-ScopedDirTest.CloseOutOfScope', |
| 3182 | ], |
| 3183 | }, |
Chong Gu | a10cd30 | 2022-01-14 19:22:19 | [diff] [blame] | 3184 | 'fuchsia-fyi-x64-asan': { |
| 3185 | 'args': [ |
Kevin Marshall | 847bf033 | 2022-05-31 20:12:54 | [diff] [blame] | 3186 | # TODO(crbug.com/1199334): Error messages only show up in klog. |
| 3187 | '--gtest_filter=-PagedMemoryTest.AccessUncommittedMemoryTriggersASAN' |
Chong Gu | a10cd30 | 2022-01-14 19:22:19 | [diff] [blame] | 3188 | ], |
| 3189 | }, |
Haiyang Pan | 0e27adbeb | 2021-12-14 22:44:30 | [diff] [blame] | 3190 | }, |
Karen Qian | 385d2ca | 2019-03-19 21:49:58 | [diff] [blame] | 3191 | 'remove_from': [ |
Haiyang Pan | 363c59a | 2020-07-23 05:47:04 | [diff] [blame] | 3192 | # TODO(crbug.com/931138): Fix permission issue when creating tmp files |
John Budorick | d3fa599 | 2019-12-13 17:22:41 | [diff] [blame] | 3193 | 'android-arm64-proguard-rel', |
John Budorick | f2283d7 | 2019-06-25 01:09:09 | [diff] [blame] | 3194 | 'android-asan', |
Yun Liu | 022f451 | 2019-06-10 23:14:04 | [diff] [blame] | 3195 | 'android-code-coverage', |
Yun Liu | 7cfd28a | 2019-10-30 01:57:12 | [diff] [blame] | 3196 | 'android-code-coverage-native', |
Andrew Luo | 38b311f | 2019-10-04 03:42:09 | [diff] [blame] | 3197 | 'android-pie-arm64-rel', |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 3198 | 'android-pie-x86-rel', |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 3199 | 'android-11-x86-rel', |
Karen Qian | 385d2ca | 2019-03-19 21:49:58 | [diff] [blame] | 3200 | 'Nougat Phone Tester', |
Arthur Eubanks | c8f86ee | 2021-05-10 20:14:24 | [diff] [blame] | 3201 | 'ToTAndroid' |
Karen Qian | 385d2ca | 2019-03-19 21:49:58 | [diff] [blame] | 3202 | ] |
| 3203 | }, |
Stephen Martinis | 54d64ad | 2018-09-21 22:16:20 | [diff] [blame] | 3204 | 'performance_test_suite': { |
| 3205 | 'modifications': { |
Cameron Higgins | 7558b16 | 2022-06-10 18:53:07 | [diff] [blame] | 3206 | 'Mac12 Tests (dbg)': { |
Zhaoyang Li | 9357e1e1 | 2021-12-07 18:53:17 | [diff] [blame] | 3207 | 'args': [ |
| 3208 | '--browser=debug', |
| 3209 | ], |
| 3210 | }, |
Stephen Martinis | 54d64ad | 2018-09-21 22:16:20 | [diff] [blame] | 3211 | 'Win10 Tests x64 (dbg)': { |
| 3212 | 'args': [ |
Takuto Ikuta | b28b582e | 2021-02-10 01:41:21 | [diff] [blame] | 3213 | '--browser=debug_x64', |
Stephen Martinis | 54d64ad | 2018-09-21 22:16:20 | [diff] [blame] | 3214 | ], |
| 3215 | 'experiment_percentage': 100, |
| 3216 | }, |
Stephen Martinis | 54d64ad | 2018-09-21 22:16:20 | [diff] [blame] | 3217 | }, |
| 3218 | }, |
Sven Zheng | 00e7560 | 2022-11-16 18:01:38 | [diff] [blame] | 3219 | 'pixel_browser_tests': { |
| 3220 | # This target should be removed from any CI only builders. Developers can |
| 3221 | # intentionally make UI changes. Without running pixel tests on CQ, those |
| 3222 | # cls will get wrongly reverted by sheriffs. |
| 3223 | # When we switch CQ builders(e.g. use Win11 to replace Win10), we also |
| 3224 | # need to update this field. |
| 3225 | 'remove_from': [ |
| 3226 | 'Win11 Tests x64', |
Thiago Perrotta | 8b9d127ab | 2023-01-19 18:08:44 | [diff] [blame] | 3227 | 'win-rel-cft', |
Sven Zheng | 00e7560 | 2022-11-16 18:01:38 | [diff] [blame] | 3228 | ], |
| 3229 | }, |
Jonah Ryan-Davis | 832c846 | 2020-06-09 03:45:03 | [diff] [blame] | 3230 | 'pixel_skia_gold_passthrough_test': { |
Brian Sheedy | c0c142c | 2021-06-01 21:18:05 | [diff] [blame] | 3231 | 'modifications': { |
| 3232 | 'Android FYI Release (Pixel 4)': { |
| 3233 | 'args': [ |
| 3234 | # Pixel 4s are weird in that they can output in different color spaces |
| 3235 | # simultaneously. The readback code for capturing a screenshot assumes |
| 3236 | # only one color space, so disable wide color gamut for the test to |
| 3237 | # work around the issue. See https://crbug.com/1166379 for more |
| 3238 | # information. |
| 3239 | '--extra-browser-args=--disable-wcg-for-test', |
| 3240 | ], |
| 3241 | }, |
Struan Shrimpton | e772d72f | 2021-12-15 07:50:09 | [diff] [blame] | 3242 | 'Mac Retina Release (AMD)': { |
| 3243 | 'swarming': { |
| 3244 | 'quickrun_shards': 2, |
| 3245 | }, |
| 3246 | }, |
Struan Shrimpton | 4b7abc0 | 2021-12-16 01:36:59 | [diff] [blame] | 3247 | 'Win10 x64 Release (NVIDIA)': { |
| 3248 | 'swarming': { |
| 3249 | 'quickrun_shards': 2, |
| 3250 | }, |
| 3251 | }, |
Ben Pastene | 63f1330 | 2022-05-12 21:04:05 | [diff] [blame] | 3252 | 'android_optional_gpu_tests_rel': { |
| 3253 | 'args': [ |
| 3254 | # See above. |
| 3255 | '--extra-browser-args=--disable-wcg-for-test', |
| 3256 | ], |
| 3257 | }, |
Brian Sheedy | c0c142c | 2021-06-01 21:18:05 | [diff] [blame] | 3258 | }, |
Jonah Ryan-Davis | 832c846 | 2020-06-09 03:45:03 | [diff] [blame] | 3259 | 'replacements': { |
| 3260 | # The V8 builders pass the V8 revision for ${got_revision}, so instead |
| 3261 | # use ${got_cr_revision}, which is only set on the V8 bots. |
| 3262 | 'Linux V8 FYI Release (NVIDIA)': { |
| 3263 | 'args': { |
| 3264 | '--git-revision': '${got_cr_revision}', |
| 3265 | }, |
| 3266 | }, |
| 3267 | 'Linux V8 FYI Release - pointer compression (NVIDIA)': { |
| 3268 | 'args': { |
| 3269 | '--git-revision': '${got_cr_revision}', |
| 3270 | }, |
| 3271 | }, |
Jonah Ryan-Davis | deeffeaf | 2020-06-18 17:56:00 | [diff] [blame] | 3272 | 'Mac V8 FYI Release (Intel)': { |
| 3273 | 'args': { |
| 3274 | '--git-revision': '${got_cr_revision}', |
| 3275 | }, |
| 3276 | }, |
Jonah Ryan-Davis | 832c846 | 2020-06-09 03:45:03 | [diff] [blame] | 3277 | 'Win V8 FYI Release (NVIDIA)': { |
| 3278 | 'args': { |
| 3279 | '--git-revision': '${got_cr_revision}', |
| 3280 | }, |
| 3281 | }, |
| 3282 | }, |
| 3283 | }, |
| 3284 | 'pixel_skia_gold_validating_test': { |
Brian Sheedy | 0566f2cb | 2021-02-12 22:12:50 | [diff] [blame] | 3285 | 'modifications': { |
| 3286 | 'Android FYI Release (Pixel 4)': { |
| 3287 | 'args': [ |
| 3288 | # Pixel 4s are weird in that they can output in different color spaces |
| 3289 | # simultaneously. The readback code for capturing a screenshot assumes |
| 3290 | # only one color space, so disable wide color gamut for the test to |
| 3291 | # work around the issue. See https://crbug.com/1166379 for more |
| 3292 | # information. |
| 3293 | '--extra-browser-args=--disable-wcg-for-test', |
| 3294 | ], |
| 3295 | }, |
Ben Pastene | 63f1330 | 2022-05-12 21:04:05 | [diff] [blame] | 3296 | 'android_optional_gpu_tests_rel': { |
| 3297 | 'args': [ |
| 3298 | # See above. |
| 3299 | '--extra-browser-args=--disable-wcg-for-test', |
| 3300 | ], |
| 3301 | }, |
David Dorwin | f060a72d | 2022-10-05 22:09:03 | [diff] [blame] | 3302 | 'fuchsia-x64-chrome-rel': { # https://crbug.com/1302427 |
Chong Gu | abe5adec0 | 2022-03-24 17:41:30 | [diff] [blame] | 3303 | 'experiment_percentage': 100, |
| 3304 | }, |
Brian Sheedy | 0566f2cb | 2021-02-12 22:12:50 | [diff] [blame] | 3305 | }, |
Chong Gu | 0aa929e6 | 2022-03-03 15:34:13 | [diff] [blame] | 3306 | 'remove_from': [ |
David Dorwin | 49b2ddb | 2022-09-08 20:49:43 | [diff] [blame] | 3307 | # TODO(https://crbug.com/1302427): Remove once tests pass. |
David Dorwin | 49b2ddb | 2022-09-08 20:49:43 | [diff] [blame] | 3308 | 'fuchsia-x64-cast-receiver-rel', |
| 3309 | 'fuchsia-x64-rel', |
Chong Gu | 0aa929e6 | 2022-03-03 15:34:13 | [diff] [blame] | 3310 | ], |
Brian Sheedy | e6ea0ee | 2019-07-11 02:54:37 | [diff] [blame] | 3311 | 'replacements': { |
Brian Sheedy | e6ea0ee | 2019-07-11 02:54:37 | [diff] [blame] | 3312 | # The V8 builders pass the V8 revision for ${got_revision}, so instead |
| 3313 | # use ${got_cr_revision}, which is only set on the V8 bots. |
| 3314 | 'Android V8 FYI Release (Nexus 5X)': { |
| 3315 | 'args': { |
Brian Sheedy | 4d335deb | 2020-04-01 20:47:32 | [diff] [blame] | 3316 | '--git-revision': '${got_cr_revision}', |
Brian Sheedy | e6ea0ee | 2019-07-11 02:54:37 | [diff] [blame] | 3317 | }, |
| 3318 | }, |
Brian Sheedy | e6ea0ee | 2019-07-11 02:54:37 | [diff] [blame] | 3319 | }, |
| 3320 | }, |
| 3321 | 'pixel_test':{ |
Takuto Ikuta | 35c8552 | 2019-06-04 16:55:46 | [diff] [blame] | 3322 | 'modifications': { |
| 3323 | 'Android Release (Nexus 5X)': { |
| 3324 | 'swarming': { |
| 3325 | 'shards': 2, |
| 3326 | }, |
| 3327 | }, |
| 3328 | }, |
Nico Weber | 128fd38 | 2018-06-14 23:29:27 | [diff] [blame] | 3329 | }, |
Henrique Nakashima | 87b6d8b | 2022-07-13 13:59:04 | [diff] [blame] | 3330 | 'sandbox_linux_unittests': { |
John Budorick | dce9d46 | 2019-03-23 00:25:38 | [diff] [blame] | 3331 | 'modifications': { |
James Shen | ca34ad0 | 2022-06-29 22:38:51 | [diff] [blame] | 3332 | 'android-nougat-x86-rel': { |
| 3333 | 'args': [ |
| 3334 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.sandbox_linux_unittests.filter', |
| 3335 | ] |
| 3336 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 3337 | 'android-pie-x86-rel': { |
John Budorick | 191adfcd | 2020-01-29 18:19:04 | [diff] [blame] | 3338 | 'args': [ |
Henrique Nakashima | 87b6d8b | 2022-07-13 13:59:04 | [diff] [blame] | 3339 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.sandbox_linux_unittests.filter', |
John Budorick | 191adfcd | 2020-01-29 18:19:04 | [diff] [blame] | 3340 | ] |
| 3341 | }, |
John Budorick | dce9d46 | 2019-03-23 00:25:38 | [diff] [blame] | 3342 | }, |
John Budorick | 3ebfdf85 | 2019-05-13 22:28:16 | [diff] [blame] | 3343 | 'remove_from': [ |
John Budorick | 3ebfdf85 | 2019-05-13 22:28:16 | [diff] [blame] | 3344 | 'android-asan', # https://crbug.com/962650 |
| 3345 | ], |
John Budorick | dce9d46 | 2019-03-23 00:25:38 | [diff] [blame] | 3346 | }, |
Brian Sheedy | c0c142c | 2021-06-01 21:18:05 | [diff] [blame] | 3347 | 'screenshot_sync_passthrough_tests': { |
| 3348 | 'modifications': { |
| 3349 | 'Android FYI Release (Pixel 4)': { |
| 3350 | 'args': [ |
| 3351 | # Pixel 4s are weird in that they can output in different color spaces |
| 3352 | # simultaneously. The readback code for capturing a screenshot assumes |
| 3353 | # only one color space, so disable wide color gamut for the test to |
| 3354 | # work around the issue. See https://crbug.com/1166379 for more |
| 3355 | # information. |
| 3356 | '--extra-browser-args=--disable-wcg-for-test', |
| 3357 | ], |
| 3358 | }, |
Ben Pastene | 63f1330 | 2022-05-12 21:04:05 | [diff] [blame] | 3359 | 'android_optional_gpu_tests_rel': { |
| 3360 | 'args': [ |
| 3361 | # See above. |
| 3362 | '--extra-browser-args=--disable-wcg-for-test', |
| 3363 | ], |
| 3364 | }, |
Brian Sheedy | c0c142c | 2021-06-01 21:18:05 | [diff] [blame] | 3365 | }, |
| 3366 | }, |
Brian Sheedy | 0566f2cb | 2021-02-12 22:12:50 | [diff] [blame] | 3367 | 'screenshot_sync_validating_tests': { |
| 3368 | 'modifications': { |
| 3369 | 'Android FYI Release (Pixel 4)': { |
| 3370 | 'args': [ |
| 3371 | # Pixel 4s are weird in that they can output in different color spaces |
| 3372 | # simultaneously. The readback code for capturing a screenshot assumes |
| 3373 | # only one color space, so disable wide color gamut for the test to |
| 3374 | # work around the issue. See https://crbug.com/1166379 for more |
| 3375 | # information. |
| 3376 | '--extra-browser-args=--disable-wcg-for-test', |
| 3377 | ], |
| 3378 | }, |
Ben Pastene | 63f1330 | 2022-05-12 21:04:05 | [diff] [blame] | 3379 | 'android_optional_gpu_tests_rel': { |
| 3380 | 'args': [ |
| 3381 | # See above. |
| 3382 | '--extra-browser-args=--disable-wcg-for-test', |
| 3383 | ], |
| 3384 | }, |
Brian Sheedy | 0566f2cb | 2021-02-12 22:12:50 | [diff] [blame] | 3385 | }, |
Chong Gu | 0aa929e6 | 2022-03-03 15:34:13 | [diff] [blame] | 3386 | 'remove_from': [ |
David Dorwin | 49b2ddb | 2022-09-08 20:49:43 | [diff] [blame] | 3387 | # TODO(https://crbug.com/1302427): Remove once tests pass. |
David Dorwin | 49b2ddb | 2022-09-08 20:49:43 | [diff] [blame] | 3388 | 'fuchsia-x64-cast-receiver-rel', |
| 3389 | 'fuchsia-x64-rel', |
Chong Gu | 0aa929e6 | 2022-03-03 15:34:13 | [diff] [blame] | 3390 | ], |
Brian Sheedy | 0566f2cb | 2021-02-12 22:12:50 | [diff] [blame] | 3391 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3392 | 'services_unittests': { |
| 3393 | 'remove_from': [ |
Nico Weber | 15a00d6 | 2018-05-16 17:11:48 | [diff] [blame] | 3394 | 'ToTLinuxMSan', # https://crbug.com/831676 |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 3395 | # The face and barcode detection tests fail on the Mac Pros. |
| 3396 | 'Mac Pro FYI Release (AMD)', |
Nico Weber | d3695968 | 2018-04-12 03:33:46 | [diff] [blame] | 3397 | 'Linux ChromiumOS MSan Tests', # https://crbug.com/831676 |
| 3398 | 'Linux MSan Tests', # https://crbug.com/831676 |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3399 | ], |
Brian Sheedy | b6c5879 | 2020-05-07 18:37:33 | [diff] [blame] | 3400 | 'replacements': { |
| 3401 | # TODO(crbug.com/1078982): Remove once the test is fixed on 10.15.4. |
| 3402 | 'Mac FYI Experimental Release (Intel)': { |
| 3403 | 'args': { |
| 3404 | '--gtest_filter': '*Detection*:-FaceDetectionImplMacTest.ScanOneFace*', |
| 3405 | }, |
| 3406 | }, |
| 3407 | }, |
Haiyang Pan | 363c59a | 2020-07-23 05:47:04 | [diff] [blame] | 3408 | 'modifications': { |
Struan Shrimpton | e772d72f | 2021-12-15 07:50:09 | [diff] [blame] | 3409 | 'Linux ASan LSan Tests (1)': { |
| 3410 | 'swarming': { |
| 3411 | 'quickrun_shards': 2, |
| 3412 | }, |
| 3413 | }, |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 3414 | 'android-11-x86-rel': { |
Haiyang Pan | 10f029c | 2021-07-30 23:17:56 | [diff] [blame] | 3415 | 'args': [ |
Haiyang Pan | 2877f06 | 2021-11-18 01:06:06 | [diff] [blame] | 3416 | # TODO(crbug.com/1264654): Fix the failed tests |
| 3417 | '--gtest_filter=-PacLibraryTest.ActualPacMyIpAddress*' |
| 3418 | ], |
| 3419 | }, |
Haiyang Pan | 2a55a45 | 2022-03-03 08:18:33 | [diff] [blame] | 3420 | 'android-12-x64-rel': { |
Haiyang Pan | 2877f06 | 2021-11-18 01:06:06 | [diff] [blame] | 3421 | 'args': [ |
| 3422 | # TODO(crbug.com/1264654): Fix the failed tests |
Haiyang Pan | 10f029c | 2021-07-30 23:17:56 | [diff] [blame] | 3423 | '--gtest_filter=-PacLibraryTest.ActualPacMyIpAddress*' |
| 3424 | ], |
James Shen | 421441a | 2023-02-21 22:54:02 | [diff] [blame] | 3425 | 'swarming': { |
| 3426 | 'shards': 2, |
| 3427 | }, |
Haiyang Pan | 10f029c | 2021-07-30 23:17:56 | [diff] [blame] | 3428 | }, |
James Shen | b354980 | 2022-06-30 18:32:51 | [diff] [blame] | 3429 | 'android-nougat-x86-rel': { |
| 3430 | 'args': [ |
| 3431 | # TODO(crbug.com/1264654): Fix the failed tests |
| 3432 | '--gtest_filter=-PacLibraryTest.ActualPacMyIpAddress*' |
| 3433 | ], |
Stephanie Kim | 1119236 | 2022-11-04 18:17:44 | [diff] [blame] | 3434 | 'swarming': { |
James Shen | 421441a | 2023-02-21 22:54:02 | [diff] [blame] | 3435 | 'shards': 3, |
Struan Shrimpton | 5786bfd0 | 2023-01-11 00:47:54 | [diff] [blame] | 3436 | 'inverse_quickrun_shards': 4, |
Stephanie Kim | 1119236 | 2022-11-04 18:17:44 | [diff] [blame] | 3437 | }, |
James Shen | b354980 | 2022-06-30 18:32:51 | [diff] [blame] | 3438 | }, |
Chong Gu | 5248145 | 2021-04-02 17:52:41 | [diff] [blame] | 3439 | 'fuchsia-code-coverage': { |
| 3440 | 'swarming': { |
| 3441 | 'shards': 7, |
| 3442 | }, |
| 3443 | }, |
Zijie He | 117165f | 2022-12-12 21:40:26 | [diff] [blame] | 3444 | 'fuchsia-fyi-x64-asan': { |
| 3445 | 'args': [ |
Rohan Pavone | df499ad | 2022-12-14 18:40:40 | [diff] [blame] | 3446 | '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.lsan.services_unittests.filter', |
Zijie He | 117165f | 2022-12-12 21:40:26 | [diff] [blame] | 3447 | ], |
| 3448 | }, |
Chong Gu | 5248145 | 2021-04-02 17:52:41 | [diff] [blame] | 3449 | } |
Chong Gu | df7fbe9 | 2021-02-24 02:55:58 | [diff] [blame] | 3450 | }, |
Chong Gu | 7604641 | 2021-09-22 17:49:21 | [diff] [blame] | 3451 | 'snapshot_unittests': { |
Chong Gu | b244646 | 2021-08-19 18:44:08 | [diff] [blame] | 3452 | 'modifications': { |
| 3453 | 'fuchsia-fyi-arm64-dbg': { |
| 3454 | 'args': [ |
| 3455 | '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.debug.snapshot_unittests.filter', |
| 3456 | ], |
| 3457 | }, |
| 3458 | }, |
| 3459 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3460 | 'sync_integration_tests': { |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 3461 | 'remove_from': [ |
Brad Hall | a36886c | 2019-02-26 16:52:29 | [diff] [blame] | 3462 | 'CrWinAsan(dll)', # https://crbug.com/935598 |
| 3463 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3464 | 'modifications': { |
Erik Chen | e84bc1c | 2019-11-25 23:23:52 | [diff] [blame] | 3465 | 'Linux ASan LSan Tests (1)': { |
| 3466 | 'swarming': { |
| 3467 | 'shards': 4, |
| 3468 | }, |
| 3469 | }, |
Nico Weber | 8fbc283 | 2018-12-14 16:00:57 | [diff] [blame] | 3470 | 'Linux TSan Tests': { |
| 3471 | 'swarming': { |
| 3472 | 'shards': 6, |
| 3473 | }, |
| 3474 | }, |
Chris Cunningham | a1239c8b | 2022-05-03 00:32:21 | [diff] [blame] | 3475 | 'Mac ASan 64 Tests (1)': { |
| 3476 | 'swarming': { |
| 3477 | 'shards': 3, |
Lindsay Pasricha | 2cfaec21 | 2022-05-11 19:00:39 | [diff] [blame] | 3478 | }, |
| 3479 | }, |
| 3480 | 'Mac11 Tests': { |
| 3481 | 'swarming': { |
| 3482 | 'shards': 4, |
Chris Cunningham | a1239c8b | 2022-05-03 00:32:21 | [diff] [blame] | 3483 | }, |
| 3484 | }, |
Yue She | 0cad292 | 2022-06-24 15:06:07 | [diff] [blame] | 3485 | 'Mac12 Tests': { |
Lindsay Pasricha | c7e07d1e | 2022-12-16 22:10:06 | [diff] [blame] | 3486 | 'ci_only': True, |
Yue She | 0cad292 | 2022-06-24 15:06:07 | [diff] [blame] | 3487 | 'swarming': { |
| 3488 | 'shards': 4, |
| 3489 | }, |
| 3490 | }, |
Cameron Higgins | 493e6a4e | 2022-10-11 05:03:30 | [diff] [blame] | 3491 | 'Mac12 Tests (dbg)':{ |
| 3492 | 'swarming': { |
| 3493 | 'shards': 2, |
| 3494 | } |
| 3495 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 3496 | 'ToTLinuxTSan': { |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3497 | 'swarming': { |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 3498 | 'shards': 6, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3499 | }, |
| 3500 | }, |
Struan Shrimpton | a1ab767 | 2022-01-13 18:02:51 | [diff] [blame] | 3501 | 'Win10 Tests x64': { |
| 3502 | 'swarming': { |
Stephanie Kim | bf31a69 | 2022-11-01 17:31:57 | [diff] [blame] | 3503 | 'shards': 3, |
Struan Shrimpton | a1ab767 | 2022-01-13 18:02:51 | [diff] [blame] | 3504 | }, |
| 3505 | }, |
Stephen Martinis | 75ab55d | 2018-08-30 02:27:12 | [diff] [blame] | 3506 | 'Win10 Tests x64 (dbg)': { |
| 3507 | 'experiment_percentage': 100, # https://crbug.com/840369 |
| 3508 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 3509 | 'linux-chromeos-code-coverage': { |
Yuke Liao | 79424e4 | 2020-01-06 21:00:11 | [diff] [blame] | 3510 | 'swarming': { |
| 3511 | 'shards': 4, |
| 3512 | }, |
| 3513 | }, |
Stephanie Kim | 3aa4c55 | 2023-01-10 18:00:04 | [diff] [blame] | 3514 | 'linux-chromeos-rel': { |
| 3515 | 'swarming': { |
| 3516 | 'shards': 2, |
| 3517 | }, |
| 3518 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 3519 | 'linux-code-coverage': { |
Yuke Liao | 79424e4 | 2020-01-06 21:00:11 | [diff] [blame] | 3520 | 'swarming': { |
| 3521 | 'shards': 4, |
| 3522 | }, |
| 3523 | }, |
Kuan Huang | 235b014 | 2021-10-19 18:59:28 | [diff] [blame] | 3524 | 'mac-code-coverage': { |
| 3525 | 'args': [ |
| 3526 | '--coverage-continuous-mode=1', |
| 3527 | ], |
| 3528 | }, |
Thiago Perrotta | a289bad | 2023-01-20 12:44:39 | [diff] [blame] | 3529 | 'mac-rel-cft': { |
| 3530 | 'ci_only': True, |
| 3531 | 'swarming': { |
| 3532 | 'shards': 4, |
| 3533 | }, |
| 3534 | }, |
Kuan Huang | 1b52d44 | 2023-02-07 20:35:34 | [diff] [blame] | 3535 | 'win-asan': { |
| 3536 | # Tests shows tests run faster with fewer retries by using fewer jobs crbug.com/1411912 |
| 3537 | 'args': [ |
| 3538 | '--test-launcher-jobs=3', |
| 3539 | ], |
| 3540 | 'swarming': { |
| 3541 | 'shards': 2, |
| 3542 | }, |
| 3543 | }, |
Thiago Perrotta | 314f7b0 | 2023-01-19 21:30:53 | [diff] [blame] | 3544 | 'win-rel-cft': { |
| 3545 | 'swarming': { |
| 3546 | 'shards': 3, |
| 3547 | }, |
| 3548 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3549 | }, |
| 3550 | }, |
Weizhong Xia | 613fda4 | 2021-04-21 20:11:52 | [diff] [blame] | 3551 | 'system_webview_wpt': { |
| 3552 | 'modifications': { |
| 3553 | 'android-webview-pie-x86-wpt-fyi-rel': { |
Weizhong Xia | 7dd4136 | 2021-09-30 16:05:38 | [diff] [blame] | 3554 | 'args': [ |
| 3555 | '--log-wptreport', |
Nihar Damarasingu | 8def1a2 | 2022-08-18 21:15:54 | [diff] [blame] | 3556 | '--use-upstream-wpt', |
Weizhong Xia | 7dd4136 | 2021-09-30 16:05:38 | [diff] [blame] | 3557 | ], |
Weizhong Xia | 613fda4 | 2021-04-21 20:11:52 | [diff] [blame] | 3558 | }, |
| 3559 | }, |
| 3560 | }, |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 3561 | 'tab_capture_end2end_tests': { |
Nico Weber | e89a3c9 | 2018-07-01 01:30:52 | [diff] [blame] | 3562 | # Run these only on Release bots. |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 3563 | 'remove_from': [ |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 3564 | 'Linux Debug (NVIDIA)', |
| 3565 | 'Mac Debug (Intel)', |
| 3566 | 'Mac Retina Debug (AMD)', |
Yuly Novikov | bc1ccff | 2019-08-03 00:05:49 | [diff] [blame] | 3567 | 'Win10 FYI x64 Debug (NVIDIA)', |
Yuly Novikov | f28f1eca | 2019-07-04 22:43:39 | [diff] [blame] | 3568 | # Disabled due to dbus crashes crbug.com/927465 |
Yuly Novikov | 86d61c4 | 2022-07-22 19:40:14 | [diff] [blame] | 3569 | 'Linux FYI Release (Intel UHD 630)', |
Yuly Novikov | 5865ff7 | 2019-07-09 21:38:05 | [diff] [blame] | 3570 | 'Linux FYI Release (NVIDIA)', |
Yuly Novikov | 5865ff7 | 2019-07-09 21:38:05 | [diff] [blame] | 3571 | 'Linux Release (NVIDIA)', |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 3572 | ], |
Emily Hanley | b64ac7c | 2018-05-25 13:36:55 | [diff] [blame] | 3573 | }, |
Haiyang Pan | 8c201b9 | 2020-06-04 01:25:07 | [diff] [blame] | 3574 | 'telemetry_chromium_minidump_unittests': { |
James Shen | 969655a | 2022-09-28 02:27:07 | [diff] [blame] | 3575 | 'modifications': { |
| 3576 | 'android-nougat-x86-rel': { |
| 3577 | 'ci_only': True, |
| 3578 | }, |
| 3579 | }, |
Haiyang Pan | 8c201b9 | 2020-06-04 01:25:07 | [diff] [blame] | 3580 | }, |
Brian Sheedy | c117f6d | 2020-05-06 02:23:27 | [diff] [blame] | 3581 | 'telemetry_monochrome_minidump_unittests': { |
James Shen | 969655a | 2022-09-28 02:27:07 | [diff] [blame] | 3582 | 'modifications': { |
| 3583 | 'android-nougat-x86-rel': { |
| 3584 | 'ci_only': True, |
| 3585 | }, |
| 3586 | }, |
Brian Sheedy | c117f6d | 2020-05-06 02:23:27 | [diff] [blame] | 3587 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3588 | 'telemetry_perf_unittests': { |
| 3589 | 'modifications': { |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3590 | 'Linux Tests': { |
| 3591 | 'args': [ |
| 3592 | '--xvfb', |
Ned Nguyen | e6e2604 | 2018-01-17 20:42:48 | [diff] [blame] | 3593 | '--jobs=1', |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3594 | ], |
| 3595 | }, |
Juan Antonio Navarro Perez | 4899edf | 2019-03-14 13:05:35 | [diff] [blame] | 3596 | 'Linux Tests (dbg)(1)': { |
| 3597 | 'args': [ |
| 3598 | '--xvfb', |
| 3599 | '--jobs=1', |
| 3600 | ], |
| 3601 | }, |
John Chen | 9fd22fcf | 2021-12-10 02:24:12 | [diff] [blame] | 3602 | 'Mac11 Tests': { |
| 3603 | 'ci_only': True, |
| 3604 | }, |
Yue She | 0cad292 | 2022-06-24 15:06:07 | [diff] [blame] | 3605 | 'Mac12 Tests': { |
| 3606 | 'ci_only': True, |
| 3607 | }, |
Brian Sheedy | 172ab893 | 2022-07-27 20:39:28 | [diff] [blame] | 3608 | 'android-nougat-x86-rel': { |
| 3609 | 'args': [ |
| 3610 | # For whatever reason, automatic browser selection on this bot chooses |
| 3611 | # webview instead of the full browser, so explicitly specify it here. |
| 3612 | '--browser=android-chromium', |
| 3613 | ], |
James Shen | 969655a | 2022-09-28 02:27:07 | [diff] [blame] | 3614 | 'ci_only': True, |
Brian Sheedy | 172ab893 | 2022-07-27 20:39:28 | [diff] [blame] | 3615 | }, |
Struan Shrimpton | a1ab767 | 2022-01-13 18:02:51 | [diff] [blame] | 3616 | 'chromeos-amd64-generic-rel': { |
| 3617 | 'swarming': { |
| 3618 | 'quickrun_shards': 24, |
| 3619 | }, |
| 3620 | }, |
Ben Pastene | 69400eb | 2021-03-25 19:27:16 | [diff] [blame] | 3621 | 'chromeos-eve-chrome': { |
| 3622 | 'args': [ |
| 3623 | # TODO(crbug.com/1191132): Re-enable. |
| 3624 | '--skip=benchmarks.benchmark_smoke_unittest.BenchmarkSmokeTest.wasmpspdfkit', |
| 3625 | ], |
| 3626 | }, |
Ben Pastene | 2b4b15f | 2021-03-04 00:39:24 | [diff] [blame] | 3627 | 'chromeos-kevin-chrome': { |
| 3628 | # TODO(crbug.com/1182948): Remove the experiment. |
Ben Pastene | be91e46 | 2021-07-27 23:47:26 | [diff] [blame] | 3629 | # TODO(b/188822176): Restore to 100% when we have additional capacity. |
| 3630 | 'experiment_percentage': 0, |
Ben Pastene | 2b4b15f | 2021-03-04 00:39:24 | [diff] [blame] | 3631 | }, |
Thiago Perrotta | 49e7049 | 2023-01-10 23:12:35 | [diff] [blame] | 3632 | 'linux-rel-cft': { |
| 3633 | 'args': [ |
| 3634 | '--xvfb', |
| 3635 | '--jobs=1', |
| 3636 | ], |
| 3637 | }, |
Ben Pastene | ebad8fc | 2022-08-12 23:34:28 | [diff] [blame] | 3638 | 'linux-rel-no-external-ip': { |
| 3639 | 'args': [ |
| 3640 | '--xvfb', |
| 3641 | '--jobs=1', |
| 3642 | ], |
| 3643 | }, |
Thiago Perrotta | a289bad | 2023-01-20 12:44:39 | [diff] [blame] | 3644 | 'mac-rel-cft': { |
| 3645 | 'ci_only': True, |
| 3646 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3647 | }, |
| 3648 | 'remove_from': [ |
Andrew Luo | be83fd8 | 2019-12-19 03:07:58 | [diff] [blame] | 3649 | 'android-pie-arm64-rel', |
Garrett Beaty | eef031a | 2019-02-28 01:55:41 | [diff] [blame] | 3650 | # crbug.com/936540 |
Shenghua Zhang | bd6f1b23 | 2018-03-03 02:59:14 | [diff] [blame] | 3651 | 'Mac10.13 Tests', |
Zhaoyang Li | 69e2e00 | 2021-02-19 21:57:35 | [diff] [blame] | 3652 | 'Mac10.15 Tests', |
Lindsay Pasricha | 21bb93d7 | 2021-12-07 05:48:39 | [diff] [blame] | 3653 | # TODO crbug.com/1277277 |
Cameron Higgins | 7558b16 | 2022-06-10 18:53:07 | [diff] [blame] | 3654 | 'Mac12 Tests (dbg)', |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 3655 | 'Linux - Future (dbg)', # client.v8.chromium |
Takuto Ikuta | 9aa015d | 2019-04-15 23:33:29 | [diff] [blame] | 3656 | 'Win10 Tests x64', |
Stephen Martinis | e701f5a | 2018-05-04 01:25:11 | [diff] [blame] | 3657 | 'Win10 Tests x64 (dbg)', |
Kuan Huang | a89737d | 2022-01-07 19:42:11 | [diff] [blame] | 3658 | 'Win11 Tests x64', |
Ben Pastene | ebad8fc | 2022-08-12 23:34:28 | [diff] [blame] | 3659 | 'win10-rel-no-external-ip', |
Thiago Perrotta | 770925d4 | 2023-01-17 18:38:51 | [diff] [blame] | 3660 | 'win-rel-cft', |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3661 | ], |
| 3662 | }, |
Stephen Martinis | 54d64ad | 2018-09-21 22:16:20 | [diff] [blame] | 3663 | 'telemetry_unittests': { |
| 3664 | 'modifications': { |
| 3665 | 'Win10 Tests x64 (dbg)': { |
| 3666 | 'experiment_percentage': 100, # crbug.com/870673 |
Ben Pastene | 9383fe1 | 2020-10-20 21:32:40 | [diff] [blame] | 3667 | }, |
Struan Shrimpton | a1ab767 | 2022-01-13 18:02:51 | [diff] [blame] | 3668 | 'chromeos-amd64-generic-rel': { |
| 3669 | 'swarming': { |
| 3670 | 'quickrun_shards': 60, |
| 3671 | }, |
| 3672 | }, |
John Budorick | c498fd3c | 2019-03-14 01:16:26 | [diff] [blame] | 3673 | }, |
| 3674 | 'remove_from': [ |
Ben Pastene | 9ef2ced5 | 2021-07-28 18:04:34 | [diff] [blame] | 3675 | # TODO(crbug.com/1141234): Restore when there's more DUTs |
Ben Pastene | 7f1ded3a4 | 2022-06-08 17:01:59 | [diff] [blame] | 3676 | 'chromeos-eve-chrome', |
Ben Pastene | 9ef2ced5 | 2021-07-28 18:04:34 | [diff] [blame] | 3677 | 'chromeos-kevin-chrome', |
Ben Pastene | 61931775 | 2020-12-03 00:04:14 | [diff] [blame] | 3678 | |
Takuto Ikuta | 9aa015d | 2019-04-15 23:33:29 | [diff] [blame] | 3679 | 'Win10 Tests x64', |
Kuan Huang | a89737d | 2022-01-07 19:42:11 | [diff] [blame] | 3680 | 'Win11 Tests x64', |
Ben Pastene | ebad8fc | 2022-08-12 23:34:28 | [diff] [blame] | 3681 | 'win10-rel-no-external-ip', |
Thiago Perrotta | 770925d4 | 2023-01-17 18:38:51 | [diff] [blame] | 3682 | 'win-rel-cft', |
Titouan Rigoudy | e122ec3 | 2021-11-08 16:36:16 | [diff] [blame] | 3683 | |
| 3684 | # TODO(https://crbug.com/1267161): Re-enable when platform is supported. |
| 3685 | 'mac11-arm64-rel-tests', |
Zhaoyang Li | 5d3713d | 2022-06-13 18:01:17 | [diff] [blame] | 3686 | # TODO(https://crbug.com/1267161): Re-enable when platform is supported. |
| 3687 | 'mac12-arm64-rel-tests', |
John Budorick | c498fd3c | 2019-03-14 01:16:26 | [diff] [blame] | 3688 | ], |
Stephen Martinis | 54d64ad | 2018-09-21 22:16:20 | [diff] [blame] | 3689 | }, |
Ben Pastene | 8e7eb265 | 2022-04-29 19:44:31 | [diff] [blame] | 3690 | 'test_buildbucket_api_gpu_use_cases GTX 1660': { |
| 3691 | 'remove_from': [ |
| 3692 | 'linux_optional_gpu_tests_rel', # crbug.com/1080749 |
Brian Sheedy | f3b48d6 | 2020-05-08 23:03:12 | [diff] [blame] | 3693 | ], |
| 3694 | }, |
Preethi Mohan | 6d478e46 | 2022-10-13 18:51:59 | [diff] [blame] | 3695 | 'testing_pytype': { |
| 3696 | 'remove_from': [ |
| 3697 | 'linux-code-coverage', |
| 3698 | ], |
| 3699 | }, |
Chong Gu | abe5adec0 | 2022-03-24 17:41:30 | [diff] [blame] | 3700 | 'trace_test': { |
| 3701 | 'modifications': { |
David Dorwin | f060a72d | 2022-10-05 22:09:03 | [diff] [blame] | 3702 | 'fuchsia-x64-chrome-rel': { # https://crbug.com/1269976 |
Chong Gu | abe5adec0 | 2022-03-24 17:41:30 | [diff] [blame] | 3703 | 'experiment_percentage': 100, |
| 3704 | }, |
| 3705 | }, |
| 3706 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3707 | 'unit_tests': { |
Yun Liu | 3e759dbb | 2019-11-01 19:25:52 | [diff] [blame] | 3708 | 'remove_from': [ |
Ben Pastene | 3e32ffe | 2020-08-07 03:37:07 | [diff] [blame] | 3709 | 'android-pie-arm64-rel', # https://crbug.com/1010211 |
Yun Liu | 3e759dbb | 2019-11-01 19:25:52 | [diff] [blame] | 3710 | ], |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3711 | 'modifications': { |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 3712 | 'Linux ASan LSan Tests (1)': { |
John Budorick | 5052d55 | 2017-12-13 02:59:34 | [diff] [blame] | 3713 | # These are slow on the ASAN trybot for some reason. |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 3714 | # crbug.com/1257927 |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 3715 | 'swarming': { |
John Budorick | 5052d55 | 2017-12-13 02:59:34 | [diff] [blame] | 3716 | 'shards': 4, |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 3717 | }, |
| 3718 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 3719 | 'Linux Chromium OS ASan LSan Tests (1)': { |
| 3720 | # These are slow on the ASAN trybot for some reason. |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 3721 | # crbug.com/1257927 |
John Budorick | ca14c76f6 | 2017-12-09 14:19:18 | [diff] [blame] | 3722 | 'swarming': { |
| 3723 | 'shards': 2, |
| 3724 | }, |
| 3725 | }, |
Takuto Ikuta | 54671d97 | 2018-07-19 19:06:35 | [diff] [blame] | 3726 | 'Linux ChromiumOS MSan Tests': { |
| 3727 | # These are very slow on the Chrome OS MSAN trybot for some reason. |
| 3728 | # crbug.com/865455 |
| 3729 | 'swarming': { |
| 3730 | 'shards': 2, |
| 3731 | }, |
| 3732 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 3733 | 'Linux TSan Tests': { |
Takuto Ikuta | 54671d97 | 2018-07-19 19:06:35 | [diff] [blame] | 3734 | 'swarming': { |
| 3735 | 'shards': 2, |
| 3736 | }, |
| 3737 | }, |
Maksim Sisov | c81d284c | 2021-10-05 17:54:35 | [diff] [blame] | 3738 | # https://crbug.com/1184127 |
| 3739 | 'Linux Tests (Wayland)': { |
| 3740 | 'args': [ |
| 3741 | '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.unit_tests_wayland.filter', |
| 3742 | ], |
| 3743 | }, |
Struan Shrimpton | 5786bfd0 | 2023-01-11 00:47:54 | [diff] [blame] | 3744 | 'Mac12 Tests': { |
| 3745 | 'swarming': { |
| 3746 | 'inverse_quickrun_shards': 2, |
| 3747 | }, |
| 3748 | }, |
Cameron Higgins | 7558b16 | 2022-06-10 18:53:07 | [diff] [blame] | 3749 | 'Mac12 Tests (dbg)': { |
Zhaoyang Li | 9357e1e1 | 2021-12-07 18:53:17 | [diff] [blame] | 3750 | 'swarming': { |
| 3751 | 'shards': 2, |
| 3752 | }, |
| 3753 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 3754 | 'ToTLinuxASan': { |
Dirk Pranke | 20eae9a7 | 2017-12-09 18:12:14 | [diff] [blame] | 3755 | 'swarming': { |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 3756 | 'shards': 2, |
Dirk Pranke | 20eae9a7 | 2017-12-09 18:12:14 | [diff] [blame] | 3757 | }, |
| 3758 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 3759 | 'android-asan': { |
| 3760 | 'args': [ |
| 3761 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.asan.unit_tests.filter', |
| 3762 | ], |
| 3763 | }, |
Ben Joyce | 6d63a58 | 2022-12-09 18:34:55 | [diff] [blame] | 3764 | 'android-pie-arm64-rel-swarming': { |
Takuto Ikuta | 527cdff | 2020-01-29 08:04:27 | [diff] [blame] | 3765 | 'swarming': { |
| 3766 | 'shards': 8, |
| 3767 | }, |
| 3768 | }, |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 3769 | 'linux-chromeos-chrome': { |
| 3770 | 'args': [ |
| 3771 | '--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.unit_tests.filter', |
| 3772 | ], |
| 3773 | }, |
Ben Pastene | acd5739 | 2019-10-31 02:13:25 | [diff] [blame] | 3774 | 'linux-chromeos-dbg': { |
| 3775 | 'swarming': { |
| 3776 | 'shards': 2, |
| 3777 | }, |
| 3778 | }, |
Erik Chen | d063aef7 | 2019-11-18 19:13:10 | [diff] [blame] | 3779 | 'linux-chromeos-rel': { |
| 3780 | 'swarming': { |
| 3781 | 'shards': 2, |
| 3782 | }, |
| 3783 | }, |
Thiago Perrotta | a289bad | 2023-01-20 12:44:39 | [diff] [blame] | 3784 | 'mac-rel-cft': { |
| 3785 | 'swarming': { |
| 3786 | 'inverse_quickrun_shards': 2, |
| 3787 | }, |
| 3788 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 3789 | }, |
| 3790 | }, |
Hao Wu | 77dd1ab | 2022-04-29 21:36:20 | [diff] [blame] | 3791 | 'variations_smoke_tests': { |
| 3792 | 'modifications': { |
Hao Wu | d38c234 | 2022-06-09 02:03:47 | [diff] [blame] | 3793 | 'linux-chrome': { |
| 3794 | 'swarming': { |
| 3795 | 'dimension_sets': [ |
| 3796 | { |
| 3797 | 'pool': 'chrome.tests.finch', |
| 3798 | }, |
| 3799 | ], |
| 3800 | }, |
| 3801 | }, |
Hao Wu | 77dd1ab | 2022-04-29 21:36:20 | [diff] [blame] | 3802 | 'win-chrome': { |
| 3803 | 'experiment_percentage': 100, |
Hao Wu | d38c234 | 2022-06-09 02:03:47 | [diff] [blame] | 3804 | 'swarming': { |
| 3805 | 'dimension_sets': [ |
| 3806 | { |
| 3807 | 'pool': 'chrome.tests.finch', |
| 3808 | }, |
| 3809 | ], |
| 3810 | }, |
Hao Wu | 77dd1ab | 2022-04-29 21:36:20 | [diff] [blame] | 3811 | }, |
| 3812 | }, |
| 3813 | }, |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 3814 | 'video_decode_accelerator_gl_unittest': { |
| 3815 | 'remove_from': [ |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 3816 | # Windows Intel doesn't have the GL extensions to support this test. |
Yuly Novikov | 3db07828 | 2023-01-04 10:06:25 | [diff] [blame] | 3817 | 'Win10 FYI x64 Release (Intel)', |
| 3818 | 'Win10 FYI x64 Experimental Release (Intel)', |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 3819 | ], |
| 3820 | }, |
Sven Zheng | 577fe5ff | 2020-08-03 22:06:44 | [diff] [blame] | 3821 | 'views_unittests': { |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 3822 | 'modifications': { |
Maksim Sisov | c81d284c | 2021-10-05 17:54:35 | [diff] [blame] | 3823 | 'Linux Tests (Wayland)': { |
| 3824 | 'args': [ |
| 3825 | '--test-launcher-filter-file=../../testing/buildbot/filters/ozone-linux.wayland_views_unittests.filter', |
| 3826 | ], |
| 3827 | }, |
Chong Gu | 6aa22be | 2021-09-10 06:56:14 | [diff] [blame] | 3828 | 'fuchsia-fyi-arm64-dbg': { |
| 3829 | 'args': [ |
| 3830 | '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.debug.views_unittests.filter', |
| 3831 | ], |
| 3832 | }, |
Sven Zheng | bc82226 | 2022-09-20 20:47:35 | [diff] [blame] | 3833 | # https://crbug.com/1111979 |
| 3834 | 'linux-lacros-asan-lsan-rel': { |
| 3835 | 'args': [ |
| 3836 | '--gtest_filter=-DesktopWidgetFocusManagerTest.AnchoredDialogInDesktopNativeWidgetAura:' |
| 3837 | 'DesktopWidgetTest*:' |
| 3838 | 'DesktopWindowTreeHostPlatformTest*:' |
| 3839 | 'EditableComboboxTest*:' |
| 3840 | 'MenuRunnerTest*:' |
| 3841 | 'TextfieldTest*:' |
Sven Zheng | bc82226 | 2022-09-20 20:47:35 | [diff] [blame] | 3842 | ], |
| 3843 | }, |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 3844 | # https://crbug.com/1111979, |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 3845 | 'linux-lacros-code-coverage': { |
| 3846 | 'args': [ |
| 3847 | '--gtest_filter=-DesktopWidgetFocusManagerTest.AnchoredDialogInDesktopNativeWidgetAura:' |
| 3848 | 'DesktopWidgetTest*:' |
| 3849 | 'DesktopWindowTreeHostPlatformTest*:' |
| 3850 | 'EditableComboboxTest*:' |
| 3851 | 'MenuRunnerTest*:' |
| 3852 | 'TextfieldTest*:' |
Junhua Chen | 39dd2dba | 2021-05-05 17:51:54 | [diff] [blame] | 3853 | ], |
| 3854 | }, |
Yuke Liao | a0db474 | 2021-08-09 18:28:33 | [diff] [blame] | 3855 | 'linux-lacros-dbg-tests-fyi': { |
| 3856 | 'args': [ |
| 3857 | '--gtest_filter=-DesktopWidgetFocusManagerTest.AnchoredDialogInDesktopNativeWidgetAura:' |
| 3858 | 'TextfieldTest*:' |
Yuke Liao | a0db474 | 2021-08-09 18:28:33 | [diff] [blame] | 3859 | ], |
| 3860 | }, |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 3861 | 'linux-lacros-tester-rel': { |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 3862 | 'args': [ |
| 3863 | '--gtest_filter=-DesktopWidgetFocusManagerTest.AnchoredDialogInDesktopNativeWidgetAura:' |
Yuke Liao | 34721c2 | 2020-08-14 21:41:19 | [diff] [blame] | 3864 | 'DesktopWidgetTest*:' |
| 3865 | 'DesktopWindowTreeHostPlatformTest*:' |
Yuke Liao | cf9db2b | 2020-08-13 19:42:53 | [diff] [blame] | 3866 | 'EditableComboboxTest*:' |
Sven Zheng | ea8903f | 2020-08-14 05:27:51 | [diff] [blame] | 3867 | 'MenuRunnerTest*:' |
Yuke Liao | cf9db2b | 2020-08-13 19:42:53 | [diff] [blame] | 3868 | 'TextfieldTest*:' |
Sven Zheng | 5c9d3e34 | 2020-08-11 21:39:43 | [diff] [blame] | 3869 | ], |
| 3870 | }, |
Sven Zheng | 80734f1 | 2020-08-06 06:50:39 | [diff] [blame] | 3871 | }, |
Sven Zheng | 577fe5ff | 2020-08-03 22:06:44 | [diff] [blame] | 3872 | }, |
John Budorick | d02c429de | 2020-01-10 19:02:21 | [diff] [blame] | 3873 | 'viz_unittests': { |
| 3874 | 'modifications': { |
Chong Gu | b244646 | 2021-08-19 18:44:08 | [diff] [blame] | 3875 | 'fuchsia-fyi-arm64-dbg': { |
Chong Gu | 6aa22be | 2021-09-10 06:56:14 | [diff] [blame] | 3876 | 'args': [ |
| 3877 | '--test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.debug.viz_unittests.filter', |
| 3878 | ], |
Chong Gu | b244646 | 2021-08-19 18:44:08 | [diff] [blame] | 3879 | }, |
John Budorick | d02c429de | 2020-01-10 19:02:21 | [diff] [blame] | 3880 | }, |
| 3881 | }, |
John Budorick | 20f4fa8d | 2019-08-02 22:58:29 | [diff] [blame] | 3882 | 'vr_common_unittests': { |
| 3883 | 'remove_from': [ |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 3884 | 'android-pie-x86-rel', |
John Budorick | 20f4fa8d | 2019-08-02 22:58:29 | [diff] [blame] | 3885 | ], |
| 3886 | }, |
Brian Sheedy | 45935b4 | 2022-12-14 23:21:46 | [diff] [blame] | 3887 | 'vulkan_pixel_skia_gold_test': { |
| 3888 | 'replacements': { |
| 3889 | # The V8 builders pass the V8 revision for ${got_revision}, so instead |
| 3890 | # use ${got_cr_revision}, which is only set on the V8 bots. |
| 3891 | 'Linux V8 FYI Release (NVIDIA)': { |
| 3892 | 'args': { |
| 3893 | '--git-revision': '${got_cr_revision}', |
| 3894 | }, |
| 3895 | }, |
Brian Sheedy | d797302 | 2023-01-03 14:15:09 | [diff] [blame] | 3896 | 'Linux V8 FYI Release - pointer compression (NVIDIA)': { |
| 3897 | 'args': { |
| 3898 | '--git-revision': '${got_cr_revision}', |
| 3899 | }, |
| 3900 | }, |
| 3901 | 'Mac V8 FYI Release (Intel)': { |
| 3902 | 'args': { |
| 3903 | '--git-revision': '${got_cr_revision}', |
| 3904 | }, |
| 3905 | }, |
| 3906 | 'Win V8 FYI Release (NVIDIA)': { |
| 3907 | 'args': { |
| 3908 | '--git-revision': '${got_cr_revision}', |
| 3909 | }, |
| 3910 | }, |
Brian Sheedy | 45935b4 | 2022-12-14 23:21:46 | [diff] [blame] | 3911 | }, |
| 3912 | }, |
Nico Weber | e81999ee | 2018-07-01 23:52:43 | [diff] [blame] | 3913 | 'wayland_client_perftests': { |
| 3914 | 'remove_from': [ |
| 3915 | 'linux-chromeos-dbg', # https://crbug.com/859307 |
| 3916 | ], |
| 3917 | }, |
Chong Gu | 7604641 | 2021-09-22 17:49:21 | [diff] [blame] | 3918 | 'web_engine_browsertests': { |
Chong Gu | d1a5c599 | 2021-04-09 04:08:32 | [diff] [blame] | 3919 | 'modifications': { |
| 3920 | 'fuchsia-code-coverage': { |
| 3921 | 'swarming': { |
Chong Gu | 7a46320 | 2021-07-19 18:43:10 | [diff] [blame] | 3922 | 'shards': 28, |
Chong Gu | d1a5c599 | 2021-04-09 04:08:32 | [diff] [blame] | 3923 | }, |
| 3924 | }, |
| 3925 | }, |
| 3926 | }, |
John Budorick | 6335746 | 2019-02-27 23:02:51 | [diff] [blame] | 3927 | 'webdriver_tests_suite': { |
| 3928 | 'remove_from': [ |
| 3929 | 'Linux Tests', # https://crbug.com/929689, https://crbug.com/936557 |
Thiago Perrotta | 6148746 | 2023-01-20 12:52:32 | [diff] [blame] | 3930 | 'linux-rel-cft', |
John Budorick | 6335746 | 2019-02-27 23:02:51 | [diff] [blame] | 3931 | ], |
| 3932 | }, |
Rayan Kanso | a246e41 | 2023-02-10 11:54:07 | [diff] [blame] | 3933 | 'webengine_support_instrumentation_test_apk': { |
| 3934 | 'modifications': { |
| 3935 | 'android-12-x64-rel': { |
| 3936 | 'ci_only': True, |
| 3937 | }, |
| 3938 | 'android-nougat-x86-rel': { |
| 3939 | 'ci_only': True, |
| 3940 | }, |
| 3941 | 'android-pie-arm64-rel': { |
| 3942 | 'ci_only': True, |
| 3943 | }, |
| 3944 | }, |
| 3945 | }, |
Brian Sheedy | d797302 | 2023-01-03 14:15:09 | [diff] [blame] | 3946 | 'webgl2_conformance_d3d11_passthrough_tests': { |
| 3947 | 'remove_from': [ |
| 3948 | # Removed from V8 builder since WebGL 1 should provide reasonable |
| 3949 | # upstream test coverage without the capacity hit from WebGL 2. |
| 3950 | 'Win V8 FYI Release (NVIDIA)', |
| 3951 | ], |
| 3952 | }, |
Yuly Novikov | 19bc4c33 | 2022-10-17 18:45:06 | [diff] [blame] | 3953 | 'webgl2_conformance_gl_passthrough_tests': { |
| 3954 | 'remove_from': [ |
Brian Sheedy | d797302 | 2023-01-03 14:15:09 | [diff] [blame] | 3955 | # Removed from V8 builders since WebGL 1 should provide reasonable |
| 3956 | # upstream test coverage without the capacity hit from WebGL 2. |
| 3957 | 'Linux V8 FYI Release (NVIDIA)', |
| 3958 | 'Linux V8 FYI Release - pointer compression (NVIDIA)', |
Yuly Novikov | 19bc4c33 | 2022-10-17 18:45:06 | [diff] [blame] | 3959 | # Not enough capacity on Mac AMD https://crbug.com/1375306. |
| 3960 | 'Mac FYI Retina ASAN (AMD)', |
| 3961 | 'Mac FYI Retina Release (AMD)', |
Brian Sheedy | d797302 | 2023-01-03 14:15:09 | [diff] [blame] | 3962 | 'Mac V8 FYI Release (Intel)', |
Yuly Novikov | 19bc4c33 | 2022-10-17 18:45:06 | [diff] [blame] | 3963 | 'mac-angle-chromium-amd', |
| 3964 | ], |
| 3965 | }, |
Brian Sheedy | 5a9f656 | 2021-08-20 03:32:54 | [diff] [blame] | 3966 | 'webgl2_conformance_gles_passthrough_tests': { |
| 3967 | 'remove_from': [ |
Brian Sheedy | efb683c | 2022-01-25 21:17:36 | [diff] [blame] | 3968 | # Currently not enough capacity to run these tests on this config. |
| 3969 | # TODO(crbug.com/1280418): Re-enable once more of the Pixel 6 capacity |
| 3970 | # is deployed. |
| 3971 | 'Android FYI Release (Pixel 6)', |
Brian Sheedy | 43f5a6f | 2022-01-07 02:41:04 | [diff] [blame] | 3972 | # Not enough CrOS hardware capacity to run both on anything other than |
| 3973 | # VMs. See https://crbug.com/1238070. |
Brian Sheedy | 5a9f656 | 2021-08-20 03:32:54 | [diff] [blame] | 3974 | 'Lacros FYI x64 Release (Intel)', |
| 3975 | ], |
| 3976 | 'modifications': { |
| 3977 | # This VM configuration is known to be significantly slower than other |
| 3978 | # CrOS configurations, so increase the shards. |
| 3979 | # TODO(crbug.com/1223550): Remove this if the configuration can be sped |
| 3980 | # up. |
| 3981 | 'ChromeOS FYI Release (amd64-generic)': { |
| 3982 | 'swarming': { |
| 3983 | 'shards': 30, |
| 3984 | }, |
| 3985 | }, |
| 3986 | }, |
| 3987 | }, |
Kenneth Russell | 18fff67f | 2021-11-05 23:45:11 | [diff] [blame] | 3988 | 'webgl2_conformance_metal_passthrough_tests': { |
| 3989 | 'remove_from': [ |
Yuly Novikov | 7d00cdb | 2022-01-05 00:10:38 | [diff] [blame] | 3990 | # crbug.com/1270755 |
| 3991 | 'Mac FYI ASAN (Intel)', |
| 3992 | 'Mac FYI Retina ASAN (AMD)', |
Kenneth Russell | 18fff67f | 2021-11-05 23:45:11 | [diff] [blame] | 3993 | # Not enough capacity. |
| 3994 | 'Mac FYI Retina Release (NVIDIA)', |
Brian Sheedy | d797302 | 2023-01-03 14:15:09 | [diff] [blame] | 3995 | # Removed from V8 builders since WebGL 1 should provide reasonable |
| 3996 | # upstream test coverage without the capacity hit from WebGL 2. |
| 3997 | 'Mac V8 FYI Release (Intel)', |
Kenneth Russell | 18fff67f | 2021-11-05 23:45:11 | [diff] [blame] | 3998 | ], |
Yuly Novikov | 220c14a5 | 2021-12-14 02:49:33 | [diff] [blame] | 3999 | 'modifications': { |
| 4000 | 'Mac FYI ASAN (Intel)': { |
| 4001 | 'args': [ |
| 4002 | '--extra-browser-args=--disable-metal-shader-cache', |
Brian Sheedy | a111ca9 | 2022-04-18 23:37:15 | [diff] [blame] | 4003 | '--enable-metal-debug-layers', |
| 4004 | ], |
| 4005 | }, |
| 4006 | 'Mac FYI Release (Intel)': { |
| 4007 | 'args': [ |
| 4008 | '--enable-metal-debug-layers', |
Yuly Novikov | 220c14a5 | 2021-12-14 02:49:33 | [diff] [blame] | 4009 | ], |
| 4010 | }, |
| 4011 | 'Mac FYI Retina ASAN (AMD)': { |
| 4012 | 'args': [ |
| 4013 | '--extra-browser-args=--disable-metal-shader-cache', |
Brian Sheedy | 3fd31077 | 2022-04-20 02:15:51 | [diff] [blame] | 4014 | # This slows down tests and we are currently having AMD Mac capacity |
| 4015 | # issues. |
| 4016 | # '--enable-metal-debug-layers', |
Brian Sheedy | a111ca9 | 2022-04-18 23:37:15 | [diff] [blame] | 4017 | ], |
| 4018 | }, |
| 4019 | 'Mac FYI Retina Release (AMD)': { |
| 4020 | 'args': [ |
Brian Sheedy | 3fd31077 | 2022-04-20 02:15:51 | [diff] [blame] | 4021 | # This slows down tests and we are currently having AMD Mac capacity |
| 4022 | # issues. |
| 4023 | # '--enable-metal-debug-layers', |
Yuly Novikov | 220c14a5 | 2021-12-14 02:49:33 | [diff] [blame] | 4024 | ], |
| 4025 | }, |
Yuly Novikov | 599840bf | 2023-01-31 19:13:09 | [diff] [blame] | 4026 | 'mac-angle-chromium-amd': { |
| 4027 | 'args': [ |
| 4028 | # This slows down tests and we are currently having AMD Mac capacity |
| 4029 | # issues. |
| 4030 | # '--enable-metal-debug-layers', |
| 4031 | ], |
| 4032 | }, |
| 4033 | 'mac-angle-chromium-intel': { |
| 4034 | 'args': [ |
| 4035 | '--enable-metal-debug-layers', |
| 4036 | ], |
| 4037 | }, |
Yuly Novikov | 220c14a5 | 2021-12-14 02:49:33 | [diff] [blame] | 4038 | }, |
Kenneth Russell | 18fff67f | 2021-11-05 23:45:11 | [diff] [blame] | 4039 | }, |
John Budorick | 82e61dfb | 2019-12-10 04:36:09 | [diff] [blame] | 4040 | 'webgl2_conformance_validating_tests': { |
Stephen Martinis | 54d64ad | 2018-09-21 22:16:20 | [diff] [blame] | 4041 | 'remove_from': [ |
Brian Sheedy | efb683c | 2022-01-25 21:17:36 | [diff] [blame] | 4042 | # Currently not enough capacity to run these tests on this config. |
| 4043 | # TODO(crbug.com/1280418): Re-enable once more of the Pixel 6 capacity |
| 4044 | # is deployed. |
| 4045 | 'Android FYI Release (Pixel 6)', |
Brian Sheedy | 43f5a6f | 2022-01-07 02:41:04 | [diff] [blame] | 4046 | # Passthrough version run on this configuration, not enough capacity for |
| 4047 | # both. See https://crbug.com/1238070. |
| 4048 | 'ChromeOS FYI Release (kevin)', |
Stephen Martinis | 54d64ad | 2018-09-21 22:16:20 | [diff] [blame] | 4049 | ], |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 4050 | 'modifications': { |
Brian Sheedy | ab0a199 | 2021-08-13 20:57:39 | [diff] [blame] | 4051 | # This VM configuration is known to be significantly slower than other |
| 4052 | # CrOS configurations, so increase the shards. |
| 4053 | # TODO(crbug.com/1223550): Remove this if the configuration can be sped |
| 4054 | # up. |
| 4055 | 'ChromeOS FYI Release (amd64-generic)': { |
| 4056 | 'swarming': { |
| 4057 | 'shards': 30, |
| 4058 | }, |
Brian Sheedy | 9bde453 | 2021-08-20 18:11:19 | [diff] [blame] | 4059 | # This configuration is tested with the passthrough decoder as well, |
| 4060 | # which will be shipped in the nearish future, so any failures that |
| 4061 | # show up with the validating decoder are just an FYI. |
| 4062 | 'experiment_percentage': 100, |
Brian Sheedy | ab0a199 | 2021-08-13 20:57:39 | [diff] [blame] | 4063 | }, |
Brian Sheedy | 2220031 | 2021-08-20 22:17:50 | [diff] [blame] | 4064 | 'ChromeOS FYI Release (kevin)': { |
| 4065 | 'experiment_percentage': 100, |
| 4066 | }, |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 4067 | }, |
| 4068 | }, |
Struan Shrimpton | a1ab767 | 2022-01-13 18:02:51 | [diff] [blame] | 4069 | 'webgl_conformance_d3d11_passthrough_tests': { |
| 4070 | 'modifications': { |
| 4071 | 'Win10 x64 Release (NVIDIA)': { |
| 4072 | 'swarming': { |
| 4073 | 'quickrun_shards': 4, |
| 4074 | }, |
| 4075 | }, |
| 4076 | }, |
| 4077 | }, |
Brian Sheedy | e8723cb | 2022-07-21 13:37:28 | [diff] [blame] | 4078 | 'webgl_conformance_gl_passthrough_tests 1002:6821': { |
| 4079 | 'modifications': { |
| 4080 | 'mac_optional_gpu_tests_rel': { |
| 4081 | 'args': [ |
| 4082 | # Added to debug crbug.com/1293967. |
Brian Sheedy | f528ce59 | 2022-07-26 22:44:46 | [diff] [blame] | 4083 | '--extra-browser-args=--disable-background-media-suspend --disable-renderer-backgrounding --disable-background-timer-throttling', |
Brian Sheedy | e8723cb | 2022-07-21 13:37:28 | [diff] [blame] | 4084 | ], |
| 4085 | }, |
| 4086 | }, |
| 4087 | }, |
Kenneth Russell | 984f2f1 | 2020-12-15 23:23:35 | [diff] [blame] | 4088 | 'webgl_conformance_metal_passthrough_tests': { |
| 4089 | 'remove_from': [ |
Yuly Novikov | 7d00cdb | 2022-01-05 00:10:38 | [diff] [blame] | 4090 | # crbug.com/1270755 |
| 4091 | 'Mac FYI ASAN (Intel)', |
| 4092 | 'Mac FYI Retina ASAN (AMD)', |
Yuly Novikov | 220c14a5 | 2021-12-14 02:49:33 | [diff] [blame] | 4093 | # crbug.com/1158857: re-enable when switching to Metal by default. |
Kenneth Russell | 984f2f1 | 2020-12-15 23:23:35 | [diff] [blame] | 4094 | 'Mac FYI Retina Release (NVIDIA)', |
| 4095 | ], |
Yuly Novikov | 220c14a5 | 2021-12-14 02:49:33 | [diff] [blame] | 4096 | 'modifications': { |
| 4097 | 'Mac FYI ASAN (Intel)': { |
| 4098 | 'args': [ |
| 4099 | '--extra-browser-args=--disable-metal-shader-cache', |
Brian Sheedy | a111ca9 | 2022-04-18 23:37:15 | [diff] [blame] | 4100 | '--enable-metal-debug-layers', |
| 4101 | ], |
| 4102 | }, |
| 4103 | 'Mac FYI Release (Intel)': { |
| 4104 | 'args': [ |
| 4105 | '--enable-metal-debug-layers', |
Yuly Novikov | 220c14a5 | 2021-12-14 02:49:33 | [diff] [blame] | 4106 | ], |
| 4107 | }, |
| 4108 | 'Mac FYI Retina ASAN (AMD)': { |
| 4109 | 'args': [ |
| 4110 | '--extra-browser-args=--disable-metal-shader-cache', |
Brian Sheedy | 3fd31077 | 2022-04-20 02:15:51 | [diff] [blame] | 4111 | # This slows down tests and we are currently having AMD Mac capacity |
| 4112 | # issues. |
| 4113 | # '--enable-metal-debug-layers', |
Brian Sheedy | a111ca9 | 2022-04-18 23:37:15 | [diff] [blame] | 4114 | ], |
| 4115 | }, |
| 4116 | 'Mac FYI Retina Release (AMD)': { |
| 4117 | 'args': [ |
Brian Sheedy | 3fd31077 | 2022-04-20 02:15:51 | [diff] [blame] | 4118 | # This slows down tests and we are currently having AMD Mac capacity |
| 4119 | # issues. |
| 4120 | # '--enable-metal-debug-layers', |
Yuly Novikov | 220c14a5 | 2021-12-14 02:49:33 | [diff] [blame] | 4121 | ], |
| 4122 | }, |
Yuly Novikov | 599840bf | 2023-01-31 19:13:09 | [diff] [blame] | 4123 | 'mac-angle-chromium-amd': { |
| 4124 | 'args': [ |
| 4125 | # This slows down tests and we are currently having AMD Mac capacity |
| 4126 | # issues. |
| 4127 | # '--enable-metal-debug-layers', |
| 4128 | ], |
| 4129 | }, |
| 4130 | 'mac-angle-chromium-intel': { |
| 4131 | 'args': [ |
| 4132 | '--enable-metal-debug-layers', |
| 4133 | ], |
| 4134 | }, |
Yuly Novikov | 220c14a5 | 2021-12-14 02:49:33 | [diff] [blame] | 4135 | }, |
Kenneth Russell | 984f2f1 | 2020-12-15 23:23:35 | [diff] [blame] | 4136 | }, |
Stephen Martinis | 54d64ad | 2018-09-21 22:16:20 | [diff] [blame] | 4137 | 'webgl_conformance_tests': { |
Struan Shrimpton | a1ab767 | 2022-01-13 18:02:51 | [diff] [blame] | 4138 | 'modifications': { |
| 4139 | 'chromeos-amd64-generic-rel': { |
Kenneth Russell | d555835 | 2022-07-15 18:40:45 | [diff] [blame] | 4140 | 'args': [ |
| 4141 | # Added to debug crbug.com/1293967. |
Brian Sheedy | f528ce59 | 2022-07-26 22:44:46 | [diff] [blame] | 4142 | '--extra-browser-args=--disable-features=BackgroundVideoPauseOptimization --disable-background-media-suspend --disable-renderer-backgrounding --disable-background-timer-throttling', |
Kenneth Russell | d555835 | 2022-07-15 18:40:45 | [diff] [blame] | 4143 | ], |
Struan Shrimpton | a1ab767 | 2022-01-13 18:02:51 | [diff] [blame] | 4144 | 'swarming': { |
| 4145 | 'quickrun_shards': 40, |
| 4146 | }, |
| 4147 | }, |
| 4148 | }, |
Kenneth Russell | 8a386d4 | 2018-06-02 09:48:01 | [diff] [blame] | 4149 | }, |
Austin Eng | e8c0ba0 | 2021-07-19 23:55:19 | [diff] [blame] | 4150 | 'webgpu_blink_web_tests': { |
Brian Sheedy | d9a809f0 | 2022-10-06 00:50:37 | [diff] [blame] | 4151 | 'remove_from': [ |
| 4152 | # TODO(crbug.com/1363409): Enable these once they're shown to work on |
| 4153 | # Android. |
| 4154 | 'Dawn Android arm DEPS Release (Pixel 4)', |
| 4155 | 'Dawn Android arm Release (Pixel 4)', |
| 4156 | ], |
Austin Eng | e8c0ba0 | 2021-07-19 23:55:19 | [diff] [blame] | 4157 | 'modifications': { |
| 4158 | # Increase the timeout with ASAN (crbug.com/1208253) |
| 4159 | 'Dawn Win10 x64 ASAN Release': { |
| 4160 | 'args': [ |
Weizhong Xia | 91b5336 | 2022-01-05 17:13:35 | [diff] [blame] | 4161 | '--timeout-ms=48000', |
Austin Eng | e8c0ba0 | 2021-07-19 23:55:19 | [diff] [blame] | 4162 | ], |
| 4163 | }, |
Kai Ninomiya | bb3312a | 2023-02-07 00:07:53 | [diff] [blame] | 4164 | # These tests must run with a GPU. |
| 4165 | 'linux-code-coverage': { |
| 4166 | 'swarming': { |
| 4167 | 'dimension_sets': [ |
| 4168 | { |
| 4169 | # TODO(crbug.com/1408314): This must be kept in sync with the |
| 4170 | # appropriate mixin; currently, linux_nvidia_gtx_1660_stable, |
| 4171 | # which is used by Dawn Linux x64 Release (NVIDIA). |
| 4172 | 'gpu': '10de:2184-440.100', |
| 4173 | 'os': 'Ubuntu-18.04.5|Ubuntu-18.04.6', |
| 4174 | 'pool': 'chromium.tests.gpu' |
| 4175 | } |
| 4176 | ], |
| 4177 | }, |
| 4178 | }, |
| 4179 | 'mac-code-coverage': { |
| 4180 | 'swarming': { |
| 4181 | 'dimension_sets': [ |
| 4182 | { |
| 4183 | # TODO(crbug.com/1408314): This must be kept in sync with the |
| 4184 | # appropriate mixin; currently, mac_mini_intel_gpu_stable, |
| 4185 | # which is used by Dawn Mac x64 Release (Intel). |
| 4186 | 'cpu': 'x86-64', |
| 4187 | 'gpu': '8086:3e9b', |
| 4188 | 'os': 'Mac-12.5', |
| 4189 | 'display_attached': '1', |
| 4190 | } |
| 4191 | ], |
| 4192 | }, |
| 4193 | }, |
| 4194 | 'win10-code-coverage': { |
| 4195 | 'swarming': { |
| 4196 | 'dimension_sets': [ |
| 4197 | { |
| 4198 | # TODO(crbug.com/1408314): This must be kept in sync with the |
| 4199 | # appropriate mixin; currently, win10_nvidia_gtx_1660_stable, |
| 4200 | # which is used by Dawn Win10 x64 Release (NVIDIA). |
| 4201 | 'gpu': '10de:2184-27.21.14.5638', |
| 4202 | 'os': 'Windows-10-18363', |
| 4203 | 'pool': 'chromium.tests.gpu', |
| 4204 | } |
| 4205 | ], |
| 4206 | }, |
| 4207 | }, |
Austin Eng | e8c0ba0 | 2021-07-19 23:55:19 | [diff] [blame] | 4208 | }, |
Brian Sheedy | 5796b4b | 2021-09-15 21:51:41 | [diff] [blame] | 4209 | 'replacements': { |
| 4210 | 'Dawn Mac x64 Experimental Release (Intel)': { |
| 4211 | 'args': { |
Avi Drissman | 5afd38bc | 2021-10-27 17:35:13 | [diff] [blame] | 4212 | '--platform': 'mac-mac11', |
Brian Sheedy | 5796b4b | 2021-09-15 21:51:41 | [diff] [blame] | 4213 | }, |
| 4214 | } |
| 4215 | }, |
| 4216 | }, |
| 4217 | 'webgpu_blink_web_tests_with_backend_validation': { |
| 4218 | 'replacements': { |
| 4219 | 'Dawn Mac x64 Experimental Release (Intel)': { |
| 4220 | 'args': { |
Avi Drissman | 5afd38bc | 2021-10-27 17:35:13 | [diff] [blame] | 4221 | '--platform': 'mac-mac11', |
Brian Sheedy | 5796b4b | 2021-09-15 21:51:41 | [diff] [blame] | 4222 | }, |
| 4223 | }, |
| 4224 | }, |
Austin Eng | d7a8862 | 2022-08-12 18:50:00 | [diff] [blame] | 4225 | # Remove from bots where capacity is constrained. |
| 4226 | 'remove_from': [ |
Brian Sheedy | d9a809f0 | 2022-10-06 00:50:37 | [diff] [blame] | 4227 | # TODO(crbug.com/1363409): Enable these once they're shown to work on |
| 4228 | # Android. |
| 4229 | 'Dawn Android arm DEPS Release (Pixel 4)', |
| 4230 | 'Dawn Android arm Release (Pixel 4)', |
Austin Eng | d7a8862 | 2022-08-12 18:50:00 | [diff] [blame] | 4231 | 'Dawn Mac x64 DEPS Release (AMD)', |
| 4232 | 'Dawn Mac x64 Release (AMD)', |
Yuly Novikov | 9f43dc5 | 2023-01-10 15:07:17 | [diff] [blame] | 4233 | 'Dawn Win10 x64 DEPS Release (Intel)', |
| 4234 | 'Dawn Win10 x64 Release (Intel)', |
Kai Ninomiya | bb3312a | 2023-02-07 00:07:53 | [diff] [blame] | 4235 | 'linux-code-coverage', |
| 4236 | 'mac-code-coverage', |
| 4237 | 'win10-code-coverage', |
Austin Eng | d7a8862 | 2022-08-12 18:50:00 | [diff] [blame] | 4238 | ], |
| 4239 | }, |
| 4240 | 'webgpu_cts_tests': { |
| 4241 | 'remove_from': [ |
Brian Sheedy | d9a809f0 | 2022-10-06 00:50:37 | [diff] [blame] | 4242 | # TODO(crbug.com/1363409): Enable these once they're shown to work on |
| 4243 | # Android. |
| 4244 | 'Dawn Android arm DEPS Release (Pixel 4)', |
| 4245 | 'Dawn Android arm Release (Pixel 4)', |
Austin Eng | d7a8862 | 2022-08-12 18:50:00 | [diff] [blame] | 4246 | # GPU hang kills the bot. https://crbug.com/dawn/1511 |
| 4247 | 'Dawn Mac x64 Release (AMD)', |
| 4248 | 'Dawn Mac x64 DEPS Release (AMD)', |
| 4249 | ], |
Kai Ninomiya | bb3312a | 2023-02-07 00:07:53 | [diff] [blame] | 4250 | 'modifications': { |
| 4251 | # These tests must run with a GPU. |
| 4252 | 'linux-code-coverage': { |
| 4253 | 'swarming': { |
| 4254 | 'dimension_sets': [ |
| 4255 | { |
| 4256 | # TODO(crbug.com/1408314): This must be kept in sync with the |
| 4257 | # appropriate mixin; currently, linux_nvidia_gtx_1660_stable, |
| 4258 | # which is used by Dawn Linux x64 Release (NVIDIA). |
| 4259 | 'gpu': '10de:2184-440.100', |
| 4260 | 'os': 'Ubuntu-18.04.5|Ubuntu-18.04.6', |
| 4261 | 'pool': 'chromium.tests.gpu' |
| 4262 | } |
| 4263 | ], |
| 4264 | }, |
| 4265 | }, |
| 4266 | 'mac-code-coverage': { |
| 4267 | 'swarming': { |
| 4268 | 'dimension_sets': [ |
| 4269 | { |
| 4270 | # TODO(crbug.com/1408314): This must be kept in sync with the |
| 4271 | # appropriate mixin; currently, mac_mini_intel_gpu_stable, |
| 4272 | # which is used by Dawn Mac x64 Release (Intel). |
| 4273 | 'cpu': 'x86-64', |
| 4274 | 'gpu': '8086:3e9b', |
| 4275 | 'os': 'Mac-12.5', |
| 4276 | 'display_attached': '1', |
| 4277 | } |
| 4278 | ], |
| 4279 | }, |
| 4280 | }, |
| 4281 | 'win10-code-coverage': { |
| 4282 | 'swarming': { |
| 4283 | 'dimension_sets': [ |
| 4284 | { |
| 4285 | # TODO(crbug.com/1408314): This must be kept in sync with the |
| 4286 | # appropriate mixin; currently, win10_nvidia_gtx_1660_stable, |
| 4287 | # which is used by Dawn Win10 x64 Release (NVIDIA). |
| 4288 | 'gpu': '10de:2184-27.21.14.5638', |
| 4289 | 'os': 'Windows-10-18363', |
| 4290 | 'pool': 'chromium.tests.gpu', |
| 4291 | } |
| 4292 | ], |
| 4293 | }, |
| 4294 | }, |
| 4295 | }, |
Austin Eng | d7a8862 | 2022-08-12 18:50:00 | [diff] [blame] | 4296 | }, |
| 4297 | 'webgpu_cts_with_validation_tests': { |
| 4298 | # Remove from bots where capacity is constrained. |
| 4299 | 'remove_from': [ |
Brian Sheedy | d9a809f0 | 2022-10-06 00:50:37 | [diff] [blame] | 4300 | # TODO(crbug.com/1363409): Enable these once they're shown to work on |
| 4301 | # Android. |
| 4302 | 'Dawn Android arm DEPS Release (Pixel 4)', |
| 4303 | 'Dawn Android arm Release (Pixel 4)', |
Austin Eng | d7a8862 | 2022-08-12 18:50:00 | [diff] [blame] | 4304 | 'Dawn Mac x64 DEPS Release (AMD)', |
| 4305 | 'Dawn Mac x64 Release (AMD)', |
Yuly Novikov | 9f43dc5 | 2023-01-10 15:07:17 | [diff] [blame] | 4306 | 'Dawn Win10 x64 DEPS Release (Intel)', |
| 4307 | 'Dawn Win10 x64 Release (Intel)', |
| 4308 | 'Dawn Win10 x86 DEPS Release (Intel)', |
| 4309 | 'Dawn Win10 x86 Release (Intel)', |
Kai Ninomiya | bb3312a | 2023-02-07 00:07:53 | [diff] [blame] | 4310 | 'linux-code-coverage', |
| 4311 | 'mac-code-coverage', |
| 4312 | 'win10-code-coverage', |
Austin Eng | d7a8862 | 2022-08-12 18:50:00 | [diff] [blame] | 4313 | ], |
| 4314 | 'modifications': { |
| 4315 | # ci_only for bots where capacity is constrained. |
| 4316 | 'Dawn Linux x64 DEPS Release (Intel UHD 630)': { |
| 4317 | 'ci_only': True, |
| 4318 | }, |
| 4319 | 'Dawn Linux x64 Release (Intel UHD 630)': { |
| 4320 | 'ci_only': True, |
| 4321 | }, |
| 4322 | }, |
| 4323 | }, |
| 4324 | 'webgpu_swiftshader_web_platform_cts_with_validation_tests': { |
| 4325 | # Remove from bots where capacity is constrained. |
| 4326 | 'remove_from': [ |
| 4327 | 'Dawn Mac x64 DEPS Release (AMD)', |
| 4328 | 'Dawn Mac x64 Release (AMD)', |
Yuly Novikov | 9f43dc5 | 2023-01-10 15:07:17 | [diff] [blame] | 4329 | 'Dawn Win10 x64 DEPS Release (Intel)', |
| 4330 | 'Dawn Win10 x64 Release (Intel)', |
| 4331 | 'Dawn Win10 x86 DEPS Release (Intel)', |
| 4332 | 'Dawn Win10 x86 Release (Intel)', |
Austin Eng | d7a8862 | 2022-08-12 18:50:00 | [diff] [blame] | 4333 | ], |
| 4334 | 'modifications': { |
| 4335 | # ci_only for bots where capacity is constrained. |
| 4336 | 'Dawn Linux x64 DEPS Release (Intel UHD 630)': { |
| 4337 | 'ci_only': True, |
| 4338 | }, |
| 4339 | 'Dawn Linux x64 Release (Intel UHD 630)': { |
| 4340 | 'ci_only': True, |
| 4341 | }, |
| 4342 | }, |
Austin Eng | e8c0ba0 | 2021-07-19 23:55:19 | [diff] [blame] | 4343 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 4344 | 'webkit_unit_tests': { |
Dirk Pranke | 81ff51c | 2017-12-09 19:24:28 | [diff] [blame] | 4345 | 'modifications': { |
John Budorick | 5052d55 | 2017-12-13 02:59:34 | [diff] [blame] | 4346 | 'Linux ASan LSan Tests (1)': { |
| 4347 | # These are very slow on the ASAN trybot for some reason. |
Ben Pastene | d2c01af | 2022-01-31 23:06:44 | [diff] [blame] | 4348 | # crbug.com/1257927 |
John Budorick | 5052d55 | 2017-12-13 02:59:34 | [diff] [blame] | 4349 | 'swarming': { |
| 4350 | 'shards': 5, |
| 4351 | }, |
| 4352 | }, |
Erik Chen | 681dc028 | 2019-11-26 22:54:49 | [diff] [blame] | 4353 | 'Linux TSan Tests': { |
| 4354 | 'swarming': { |
| 4355 | 'shards': 2, |
| 4356 | }, |
| 4357 | }, |
Struan Shrimpton | 5786bfd0 | 2023-01-11 00:47:54 | [diff] [blame] | 4358 | 'android-nougat-x86-rel': { |
| 4359 | 'swarming': { |
| 4360 | 'inverse_quickrun_shards': 12, |
| 4361 | }, |
| 4362 | }, |
Dirk Pranke | 81ff51c | 2017-12-09 19:24:28 | [diff] [blame] | 4363 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 4364 | }, |
Erik Staab | 70ca5b3 | 2021-08-07 00:38:35 | [diff] [blame] | 4365 | 'webview_64_cts_tests': { |
| 4366 | 'modifications': { |
| 4367 | 'android-pie-arm64-rel': { |
Ben Joyce | c0a90cd | 2023-01-10 21:30:49 | [diff] [blame] | 4368 | 'args': [ |
| 4369 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.webview_cts_tests_coverage.filter', |
| 4370 | ], |
Erik Staab | 70ca5b3 | 2021-08-07 00:38:35 | [diff] [blame] | 4371 | # TODO(crbug.com/1111436): Move this back to walleye if/when additional |
| 4372 | # capacity has been deployed. |
| 4373 | 'swarming': { |
| 4374 | 'dimension_sets': [ |
| 4375 | { |
| 4376 | 'device_type': 'sailfish', |
| 4377 | }, |
| 4378 | ], |
| 4379 | }, |
| 4380 | }, |
| 4381 | }, |
| 4382 | }, |
Haiyang Pan | fbd2b48 | 2020-09-23 23:41:25 | [diff] [blame] | 4383 | 'webview_cts_tests': { |
| 4384 | 'modifications': { |
James Shen | 3997724 | 2022-07-08 23:46:42 | [diff] [blame] | 4385 | 'android-nougat-x86-rel': { |
| 4386 | 'args': [ |
Ben Joyce | 0e5ef16 | 2022-12-19 21:26:10 | [diff] [blame] | 4387 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.webview_cts_tests.filter', |
Ben Joyce | c0a90cd | 2023-01-10 21:30:49 | [diff] [blame] | 4388 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.webview_cts_tests_coverage.filter', |
James Shen | 3997724 | 2022-07-08 23:46:42 | [diff] [blame] | 4389 | ], |
| 4390 | }, |
Haiyang Pan | fbd2b48 | 2020-09-23 23:41:25 | [diff] [blame] | 4391 | 'android-pie-arm64-rel': { |
| 4392 | # TODO(crbug.com/1111436): Move this back to walleye if/when additional |
| 4393 | # capacity has been deployed. |
| 4394 | 'swarming': { |
| 4395 | 'dimension_sets': [ |
| 4396 | { |
| 4397 | 'device_type': 'sailfish', |
| 4398 | }, |
| 4399 | ], |
| 4400 | }, |
| 4401 | }, |
| 4402 | }, |
| 4403 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 4404 | 'webview_instrumentation_test_apk': { |
| 4405 | 'remove_from': [ |
Hans Wennborg | eac4c36c | 2018-05-23 16:04:06 | [diff] [blame] | 4406 | # This test frequently fails on Android, https://crbug.com/824959 |
Stephen Martinis | 1384ff9 | 2020-01-07 19:52:15 | [diff] [blame] | 4407 | # matching android builders, the test fails on these. |
Hans Wennborg | a0b11ebe | 2018-05-15 16:26:50 | [diff] [blame] | 4408 | 'ToTAndroid', |
John Budorick | 27d2d44e | 2019-05-20 20:26:09 | [diff] [blame] | 4409 | 'android-asan', # https://crbug.com/964562 |
Ben Joyce | 02dc809 | 2021-03-04 21:48:19 | [diff] [blame] | 4410 | 'android-code-coverage-native', # Does not generate profraw data. |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 4411 | ], |
Ben Pastene | e17a8e9 | 2018-07-12 21:55:18 | [diff] [blame] | 4412 | 'modifications': { |
| 4413 | 'Oreo Phone Tester': { |
Andrew Luo | 93c4a1e | 2019-08-30 05:26:30 | [diff] [blame] | 4414 | # TODO(crbug.com/997362): Enable this once it's passing. |
bsheedy | 0183346 | 2018-12-07 01:05:57 | [diff] [blame] | 4415 | # TODO(https://crbug.com/884413): Re-enable this once the tests are |
| 4416 | # either passing or there is more capacity. |
| 4417 | 'experiment_percentage': 0, |
Ben Pastene | e17a8e9 | 2018-07-12 21:55:18 | [diff] [blame] | 4418 | }, |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 4419 | 'android-11-x86-rel': { |
Haiyang Pan | 10386481 | 2021-03-19 19:28:44 | [diff] [blame] | 4420 | 'args': [ |
| 4421 | # TODO(crbug.com/1189746) Enable this test once the issue is fixed. |
| 4422 | '--gtest_filter=-org.chromium.net.NetworkChangeNotifierTest.testNetworkChangeNotifierJavaObservers', |
| 4423 | ], |
| 4424 | }, |
Struan Shrimpton | 5786bfd0 | 2023-01-11 00:47:54 | [diff] [blame] | 4425 | 'android-12-x64-rel': { |
| 4426 | 'swarming': { |
| 4427 | 'inverse_quickrun_shards': 14, |
| 4428 | }, |
| 4429 | }, |
Haiyang Pan | dcc3e01 | 2022-09-30 01:57:43 | [diff] [blame] | 4430 | 'android-nougat-x86-rel': { |
Ben Joyce | 98b0482 | 2022-11-10 23:40:55 | [diff] [blame] | 4431 | 'args': [ |
| 4432 | '--use-persistent-shell', |
| 4433 | ], |
Haiyang Pan | dcc3e01 | 2022-09-30 01:57:43 | [diff] [blame] | 4434 | 'swarming': { |
Stephanie Kim | 8e9b743 | 2022-11-01 22:36:34 | [diff] [blame] | 4435 | 'shards': 27, |
Haiyang Pan | dcc3e01 | 2022-09-30 01:57:43 | [diff] [blame] | 4436 | }, |
| 4437 | }, |
Kuan Huang | 1f402c8 | 2021-06-08 17:58:18 | [diff] [blame] | 4438 | 'android-pie-arm64-rel': { |
Ben Joyce | e8955c4 | 2022-11-01 21:38:50 | [diff] [blame] | 4439 | 'args': [ |
| 4440 | '--use-persistent-shell', |
| 4441 | ], |
Gregory Guterman | 7c7edc634 | 2022-09-26 21:00:13 | [diff] [blame] | 4442 | 'ci_only': True, # crbug/1368281 |
Kuan Huang | 1f402c8 | 2021-06-08 17:58:18 | [diff] [blame] | 4443 | 'swarming': { |
| 4444 | 'shards': 9, |
| 4445 | }, |
| 4446 | }, |
Haiyang Pan | 08d09dc | 2020-04-01 16:11:21 | [diff] [blame] | 4447 | 'android-pie-x86-rel': { |
Haiyang Pan | fdd9433 | 2020-03-27 02:43:29 | [diff] [blame] | 4448 | 'args': [ |
| 4449 | '--test-launcher-filter-file=../../testing/buildbot/filters/android.emulator.webview_instrumentation_test_apk.filter', |
| 4450 | ], |
Ben Joyce | 9a7eb31 | 2021-08-25 00:44:59 | [diff] [blame] | 4451 | 'swarming': { |
| 4452 | 'shards': 9, |
| 4453 | }, |
Haiyang Pan | fdd9433 | 2020-03-27 02:43:29 | [diff] [blame] | 4454 | }, |
Ben Pastene | e17a8e9 | 2018-07-12 21:55:18 | [diff] [blame] | 4455 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 4456 | }, |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 4457 | 'webview_ui_test_app_test_apk': { |
| 4458 | 'remove_from': [ |
Haiyang Pan | 9d68ca0 | 2021-08-04 21:30:47 | [diff] [blame] | 4459 | 'android-11-x86-rel', # crbug.com/1165280 |
Haiyang Pan | fed33917 | 2021-03-10 23:19:57 | [diff] [blame] | 4460 | ], |
| 4461 | }, |
Nihar Damarasingu | aac11d86 | 2022-10-03 20:24:24 | [diff] [blame] | 4462 | 'wpt_tests_suite': { |
| 4463 | 'modifications': { |
Jonathan Lee | 4d014e8 | 2022-12-15 22:21:18 | [diff] [blame] | 4464 | 'linux-wpt-content-shell-asan-fyi-rel': { |
| 4465 | 'args': [ |
| 4466 | '--enable-sanitizer', |
| 4467 | ], |
| 4468 | 'swarming': { |
| 4469 | 'shards': 8, |
| 4470 | }, |
| 4471 | }, |
Nihar Damarasingu | aac11d86 | 2022-10-03 20:24:24 | [diff] [blame] | 4472 | 'win10-wpt-content-shell-fyi-rel': { |
| 4473 | 'args': [ |
| 4474 | '--target', |
| 4475 | 'Release_x64', |
| 4476 | ], |
| 4477 | }, |
Nihar Damarasingu | c5b983c | 2022-12-08 18:56:14 | [diff] [blame] | 4478 | 'win11-wpt-content-shell-fyi-rel': { |
| 4479 | 'args': [ |
| 4480 | '--target', |
| 4481 | 'Release_x64', |
| 4482 | ], |
| 4483 | }, |
Nihar Damarasingu | aac11d86 | 2022-10-03 20:24:24 | [diff] [blame] | 4484 | }, |
| 4485 | }, |
Kenneth Russell | eb60cbd2 | 2017-12-05 07:54:28 | [diff] [blame] | 4486 | } |