forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_suite_exceptions.pyl
1702 lines (1700 loc) · 45.4 KB
/
test_suite_exceptions.pyl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright 2017 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# This is a .pyl, or "Python Literal", file. You can treat it just like a
# .json file, with the following exceptions:
# * all keys must be quoted (use single quotes, please);
# * comments are allowed, using '#' syntax; and
# * trailing commas are allowed.
# Exceptions to the common test suites can only include removal from
# particular bots, and modifications on particular bots. By design,
# it's not possible to add one-off tests to bots. Instead they have to
# be added to one of the test suites in test_suites.pyl.
#
# The goal is to drive the number of exceptions to zero, to make all
# the bots behave similarly.
{
'android_webview_unittests': {
'remove_from': [
# On chromium.android, these do not need to run prior to M.
'android-kitkat-arm-rel',
'KitKat Phone Tester (dbg)',
'KitKat Tablet Tester',
],
},
'angle_end2end_tests': {
'remove_from': [
# chromium.gpu.fyi
# TODO(ynovikov) Investigate why the test breaks on older devices.
'Android FYI Release (Nexus 5)',
'Android FYI Release (Nexus 6)',
'Android FYI Release (Nexus 9)',
# Temporarily disabled due to AMDGPU-PRO issues crbug.com/786219
'Linux FYI Release (AMD R7 240)',
],
},
'angle_perftests': {
'remove_from': [
'Android FYI Release (Nexus 5)', # crbug.com/915429
'Android FYI Release (Nexus 6)', # anglebug.com/2433
],
},
'angle_unittests': {
'remove_from': [
# chromium.gpu.fyi
# On Android, these are already run on the main waterfall.
'Android FYI Release (Nexus 5X)',
],
'modifications': {
'Linux ASan LSan Tests (1)': {
'swarming': {
'shards': 10,
},
},
},
},
'browser_tests': {
'remove_from': [
# chromium.clang
'CrWinAsanCov',
'linux-win_cross-rel',
'ToTLinuxTSan', # https://crbug.com/368525
# chromium.memory
'Linux TSan Tests', # https://crbug.com/368525
# chromium.win
'Win10 Tests x64 (dbg)',
],
'modifications': {
# chromium.chromiumos
'linux-chromeos-dbg': {
'swarming': {
'shards': 21,
},
},
# chromium.clang
'ToTMac': {
# A subset of tests seem to cause WindowServer deaths on VMs.
# crbug.com/828031 et al.
'args': [
'--test-launcher-filter-file=../../testing/buildbot/filters/mac_window_server_killers.browser_tests.filter',
'--gtest_shuffle',
],
},
'ToTMacASan': {
# A subset of tests seem to cause WindowServer deaths on VMs.
# crbug.com/828031 et al.
'args': [
'--test-launcher-filter-file=../../testing/buildbot/filters/mac_window_server_killers.browser_tests.filter',
'--gtest_shuffle',
],
},
'ToTWin(dbg)': {
'swarming': {
'shards': 20,
},
},
'ToTWin64(dbg)': {
'swarming': {
'shards': 20,
},
},
# chromium.fyi
'Chromium Mac 10.13': {
# A subset of tests seem to cause WindowServer deaths on VMs.
# crbug.com/828031 et al.
'args': [
'--test-launcher-filter-file=../../testing/buildbot/filters/mac_window_server_killers.browser_tests.filter',
'--gtest_shuffle',
],
},
'mac-osxbeta-rel': {
# A subset of tests seem to cause WindowServer deaths on VMs.
# crbug.com/828031 et al.
'args': [
'--test-launcher-filter-file=../../testing/buildbot/filters/mac_window_server_killers.browser_tests.filter',
'--gtest_shuffle',
],
},
# chromium.mac
'Mac10.10 Tests': {
# A subset of tests seem to cause WindowServer deaths on VMs.
# crbug.com/828031 et al.
'args': [
'--test-launcher-filter-file=../../testing/buildbot/filters/mac_window_server_killers.browser_tests.filter',
'--gtest_shuffle',
],
},
'Mac10.11 Tests': {
# A subset of tests seem to cause WindowServer deaths on VMs.
# crbug.com/828031 et al.
'args': [
'--test-launcher-filter-file=../../testing/buildbot/filters/mac_window_server_killers.browser_tests.filter',
'--gtest_shuffle',
],
},
'Mac10.12 Tests': {
# A subset of tests seem to cause WindowServer deaths on VMs.
# crbug.com/828031 et al.
'args': [
'--test-launcher-filter-file=../../testing/buildbot/filters/mac_window_server_killers.browser_tests.filter',
'--gtest_shuffle',
],
},
'Mac10.13 Tests': {
# A subset of tests seem to cause WindowServer deaths on VMs.
# crbug.com/828031 et al.
'args': [
'--test-launcher-filter-file=../../testing/buildbot/filters/mac_window_server_killers.browser_tests.filter',
'--gtest_shuffle',
],
},
'Mac10.13 Tests (dbg)': {
# A subset of tests seem to cause WindowServer deaths on VMs.
# crbug.com/828031 et al.
'args': [
'--test-launcher-filter-file=../../testing/buildbot/filters/mac_window_server_killers.browser_tests.filter',
'--gtest_shuffle',
],
},
# chromium.memory
'Linux ASan LSan Tests (1)': {
# These are very slow on the ASAN trybot for some reason.
# crbug.com/794372
'swarming': {
'shards': 30,
},
},
'Mac ASan 64 Tests (1)': {
# A subset of tests seem to cause WindowServer deaths on VMs.
# crbug.com/828031 et al.
'args': [
'--test-launcher-filter-file=../../testing/buildbot/filters/mac_window_server_killers.browser_tests.filter',
'--gtest_shuffle',
],
'swarming': {
'shards': 20,
},
},
'Linux ChromiumOS MSan Tests': {
# These are very slow on the Chrome OS MSAN trybot for some reason.
# crbug.com/865455
'swarming': {
'shards': 25,
},
},
'Linux Chromium OS ASan LSan Tests (1)': {
# These are very slow on the ASAN trybot for some reason.
# crbug.com/794372
'swarming': {
'shards': 31,
},
},
# chromium.win
'Win7 Tests (1)': {
# This is for slow test execution that often becomes a critical path of
# swarming jobs. crbug.com/868114
'swarming': {
'shards': 15,
},
},
'Win7 Tests (dbg)(1)': {
'swarming': {
'shards': 20,
},
},
'Win10 Tests x64': {
# crbug.com/868082
'args': [
'--disable-features=WebRTC-H264WithOpenH264FFmpeg',
],
'swarming': {
# This is for slow test execution that often becomes a critical path of
# swarming jobs. crbug.com/868114
'shards': 15,
}
},
# client.v8.chromium
'Linux - Future (dbg)': {
'swarming': {
'shards': 10,
},
},
},
},
'cast_shell_browsertests': {
'modifications': {
'Cast Audio Linux': {
'args': [
'--enable-local-file-accesses',
'--ozone-platform=headless',
'--no-sandbox',
'--test-launcher-jobs=1',
],
'swarming': {
'can_use_on_swarming_builders': False, # https://crbug.com/861753
},
},
'Cast Linux': {
'args': [
'--enable-local-file-accesses',
'--ozone-platform=headless',
'--no-sandbox',
'--test-launcher-jobs=1',
],
'swarming': {
'can_use_on_swarming_builders': False, # https://crbug.com/861753
},
},
},
},
'checkbins': {
'remove_from': [
'linux-dbg',
'linux-rel',
'mac-dbg',
'mac-rel',
],
},
# Note: keep experiment percentages the same as
# network_service_chrome_public_test_apk.
'chrome_public_test_apk': {
'modifications': {
# chromium.android
'android-kitkat-arm-rel': {
'swarming': {
'shards': 12,
},
},
'android-marshmallow-arm64-rel': {
# TODO(crbug.com/731759): Enable this once we're confident that it
# passes.
'experiment_percentage': 0,
},
'KitKat Phone Tester (dbg)': {
'swarming': {
'shards': 20,
},
},
'Marshmallow 64 bit Tester': {
# TODO(crbug.com/731759): Enable this once we're confident that it
# passes.
'experiment_percentage': 100,
'swarming': {
'shards': 14,
},
},
'Oreo Phone Tester': {
# TODO(https://crbug.com/884413): Re-enable this once the tests are
# either passing or there is more capacity.
'experiment_percentage': 0,
},
# chromium.swarm
'Android N5X Swarm': {
# TODO(crbug.com/731759): Enable this once we're confident that it
# passes.
'experiment_percentage': 100,
},
},
},
'chrome_public_test_vr_apk': {
'remove_from': [
# chromium.android
'KitKat Tablet Tester',
'Lollipop Tablet Tester',
'Marshmallow Tablet Tester',
# chromium.clang
'ToTAndroid',
'ToTAndroidCFI',
],
},
'chrome_public_test_vr_apk-vega': {
'modifications': {
# chromium.android
'Oreo Phone Tester': {
'swarming': {
'dimension_sets': [
{
'device_os': 'OVR1.180808.003',
'device_type': 'vega',
'os': 'Android',
},
],
},
}
}
},
'components_unittests': {
'modifications': {
# chromium.memory
'Linux ASan LSan Tests (1)': {
# These are very slow on the ASAN trybot for some reason.
# crbug.com/794372
'swarming': {
'shards': 5,
},
},
'Linux Chromium OS ASan LSan Tests (1)': {
# These are very slow on the ASAN trybot for some reason.
# crbug.com/794372
'swarming': {
'shards': 5,
},
},
},
},
'content_browsertests': {
'modifications': {
# chromium.linux
'Cast Audio Linux': {
'args': [
'--test-launcher-filter-file=../../testing/buildbot/filters/cast-linux.content_browsertests.filter',
],
},
'Cast Linux': {
'args': [
'--test-launcher-filter-file=../../testing/buildbot/filters/cast-linux.content_browsertests.filter',
],
},
# chromium.win
'Win10 Tests x64 (dbg)': {
'experiment_percentage': 100,
# crbug.com/868082
'args': [
'--disable-features=WebRTC-H264WithOpenH264FFmpeg',
],
},
'Win10 Tests x64': {
# crbug.com/868082
'args': [
'--disable-features=WebRTC-H264WithOpenH264FFmpeg',
],
},
},
},
'content_shell_crash_test': {
'remove_from': [
# chromium.linux
'Linux Tests (dbg)(1)(32)', # https://crbug.com/859264
],
'modifications': {
# chromium.win
'Win10 Tests x64 (dbg)': {
'experiment_percentage': 100, # https://crbug.com/861730
},
},
},
'content_unittests': {
'modifications': {
# chromium.memory
'Linux ASan LSan Tests (1)': {
# These are slow on the ASAN trybot for some reason.
# crbug.com/794372
'swarming': {
'shards': 2,
},
},
'Linux ChromiumOS MSan Tests': {
# These are very slow on the Chrome OS MSAN trybot for some reason.
# crbug.com/865455
'swarming': {
'shards': 2,
},
},
},
},
'context_lost_tests': {
'modifications': {
'Mac FYI GPU ASAN Release': {
'args': [
'--is-asan',
]
},
},
},
'crashpad_tests': {
'remove_from': [
# chromium.clang
'linux-win_cross-rel', # https://crbug.com/762167
],
},
'dawn_end2end_tests': {
'remove_from': [
# chromium.gpu.fyi
'Linux FYI Experimental Release (Intel HD 630)', # https://crbug.com/927459
'Linux FYI Release (AMD R7 240)', # https://crbug.com/915430
],
},
'extensions_browsertests': {
'modifications': {
'Win10 Tests x64 (dbg)': {
'experiment_percentage': 100, # https://crbug.com/876615
},
},
},
'gin_unittests': {
'remove_from': [
# chromium.clang
'ToTLinuxASan', # https://crbug.com/831667
# chromium.memory
'Linux ASan LSan Tests (1)', # https://crbug.com/831667
'Linux Chromium OS ASan LSan Tests (1)', # https://crbug.com/831667
],
},
'gl_tests': {
'remove_from': [
# chromium.clang
'CFI Linux ToT',
# chromium.gpu.fyi
'Android FYI Release (Nexus 5X)',
# chromium.memory
# Can't run on MSAN because gl_tests uses the hardware driver,
# which isn't instrumented.
'Linux MSan Tests',
],
'modifications': {
# chromium.memory
# TODO(kbr): figure out a better way to specify blocks of
# arguments like this for tests on multiple machines.
'Linux ASan LSan Tests (1)': {
'args': [
'--use-gpu-in-tests',
'--no-xvfb',
],
'swarming': {
'dimension_sets': [
{
'gpu': '10de:1cb3',
'os': 'Ubuntu',
'pool': 'Chrome-GPU',
},
],
},
'use_xvfb': False,
},
'Linux ASan LSan Tests (1)': {
'args': [
'--use-gpu-in-tests',
'--no-xvfb',
],
'swarming': {
'dimension_sets': [
{
'gpu': '10de:1cb3',
'os': 'Ubuntu',
'pool': 'Chrome-GPU',
},
],
},
'use_xvfb': False,
},
'Linux CFI': {
'args': [
'--use-gpu-in-tests',
'--no-xvfb',
],
'swarming': {
'dimension_sets': [
{
'gpu': '10de:1cb3',
'os': 'Ubuntu',
'pool': 'Chrome-GPU',
},
],
},
'use_xvfb': False,
},
'Linux TSan Tests': {
'args': [
'--use-gpu-in-tests',
'--no-xvfb',
],
'swarming': {
'dimension_sets': [
{
'gpu': '10de:1cb3',
'os': 'Ubuntu',
'pool': 'Chrome-GPU',
},
],
},
'use_xvfb': False,
},
},
},
'gl_unittests': {
'remove_from': [
# chromium.gpu.fyi
# On Android, these are already run on the main waterfall.
# Run them on the one-off Android FYI bots, though.
'Android FYI Release (Nexus 5X)',
# Temporarily disabled due to AMDGPU-PRO issues crbug.com/786219
'Linux FYI Release (AMD R7 240)',
],
'modifications': {
# chromium.clang
'CFI Linux ToT': {
'args': [
'--use-gpu-in-tests',
'--no-xvfb',
],
'swarming': {
'dimension_sets': [
{
'gpu': '10de:1cb3',
'os': 'Ubuntu',
'pool': 'Chrome-GPU',
},
],
},
'use_xvfb': False,
},
# chromium.memory
'Linux CFI': {
'args': [
'--use-gpu-in-tests',
'--no-xvfb',
],
'swarming': {
'dimension_sets': [
{
'gpu': '10de:1cb3',
'os': 'Ubuntu',
'pool': 'Chrome-GPU',
},
],
},
'use_xvfb': False,
},
},
},
'gl_unittests_ozone': {
'remove_from': [
# Can't run on MSAN because gl_unittests_ozone uses the hardware driver,
# which isn't instrumented.
'Linux ChromiumOS MSan Tests',
],
},
'info_collection_tests': {
'remove_from': [
# chromium.gpu.fyi
# The Mac ASAN swarming bot runs tests on two different GPU
# types, so we can't have one expected vendor ID / device ID.
'Mac FYI GPU ASAN Release',
# client.v8.fyi
'Android V8 FYI Release (Nexus 5X)',
'Linux V8 FYI Release (NVIDIA)',
'Linux V8 FYI Release - pointer compression (NVIDIA)',
'Mac V8 FYI Release (Intel)',
'Win V8 FYI Release (NVIDIA)',
],
},
'interactive_ui_tests': {
'modifications': {
# chromium.clang
'ToTLinuxTSan': {
# These are slow on the TSan bots for some reason, crbug.com/794372
'swarming': {
'shards': 6,
},
},
# chromium.win
'Win7 Tests (dbg)(1)': {
'swarming': {
'shards': 4,
},
},
# chromium.memory
'Linux ASan LSan Tests (1)': {
# These are slow on the ASan trybot for some reason, crbug.com/794372
'swarming': {
'shards': 6,
},
},
'Linux TSan Tests': {
# These are slow on the TSan bots for some reason, crbug.com/794372
'swarming': {
'shards': 6,
},
},
'Linux ChromiumOS MSan Tests': {
# These are very slow on the Chrome OS MSAN trybot for some reason.
# crbug.com/865455
'swarming': {
'shards': 5,
},
},
# client.v8.chromium
'Linux - Future (dbg)': {
'swarming': {
'shards': 3,
},
},
# chromium.win; temporary, https://crbug.com/818832
'Win10 Tests x64 (dbg)': {
'experiment_percentage': 100,
},
},
},
'monochrome_public_test_ar_apk': {
'modifications': {
# chromium.android
# We need to match the Playstore version as well because AR tests fail on
# old versions of the Playstore.
'Oreo Phone Tester': {
'swarming': {
'dimension_sets': [
{
'device_os': 'OPR3.170623.008',
'device_playstore_version': '12.8.23-all',
'device_type': 'marlin',
'os': 'Android',
},
],
},
},
},
},
'nacl_helper_nonsfi_unittests': {
'remove_from': [
# chromium.memory
'Linux TSan Tests', # Sets enable_nacl=false.
],
},
'nacl_loader_unittests': {
'remove_from': [
# chromium.clang
'ToTMacASan', # The mac asan tot bot sets enable_nacl=false
'linux-win_cross-rel', # Sets enable_nacl=false, https://crbug.com/774186
# chromium.memory
'Linux TSan Tests', # The TSan bot sets enable_nacl=false
'Mac ASan 64 Tests (1)', # The mac asan bot sets enable_nacl=false
],
},
'net_unittests': {
'remove_from': [
# chromium.fyi
'fuchsia-fyi-arm64-rel', # https://crbug.com/877248
'fuchsia-fyi-x64-dbg', # https://crbug.com/844416
],
'modifications': {
# chromium.clang
'ToTLinuxASan': {
# TODO(crbug.com/794372): net_unittests is slow under ASan.
'swarming': {
'shards': 16,
},
},
'ToTLinuxTSan': {
'swarming': {
'shards': 4,
}
},
# chromium.memory
'Linux ASan LSan Tests (1)': {
# These are very slow on the ASAN trybot for some reason.
# crbug.com/794372
'swarming': {
'shards': 16,
},
},
'Linux Chromium OS ASan LSan Tests (1)': {
# These are very slow on the ASAN trybot for some reason.
# crbug.com/794372
'swarming': {
'shards': 8,
}
},
'Linux ChromiumOS MSan Tests': {
# These are very slow on the Chrome OS MSAN trybot for some reason.
# crbug.com/865455
'swarming': {
'shards': 2,
},
},
'Linux TSan Tests': {
'swarming': {
'shards': 4,
}
},
# The suite runs signficantly slower on linux dbg, so increase shards.
'Linux Tests (dbg)(1)': {
'swarming': {
'shards': 2,
},
},
'Linux Tests (dbg)(1)(32)': {
'swarming': {
'shards': 2,
},
},
'linux-chromeos-dbg': {
'swarming': {
'shards': 2,
},
},
},
},
'network_service_browser_tests': {
'remove_from': [
# chromium.clang
'ToTLinuxTSan', # https://crbug.com/368525
# chromium.memory
'Linux ASan LSan Tests (1)', # No capacity, https://crbug.com/852442
'Linux TSan Tests', # No capacity, https://crbug.com/852442
# chromium.win
'Win7 Tests (1)', # For swarming capacity reasons.
'Win10 Tests x64 (dbg)', # Matches browser_tests.
# Only run network service tests on Mac 10.12 for capacity reasons.
'Chromium Mac 10.13',
'Mac10.10 Tests',
'Mac10.11 Tests',
'Mac10.13 Tests',
'Mac10.13 Tests (dbg)',
'Mac ASan 64 Tests (1)',
'Mac ASan 64 Tests (1)',
'ToTMacASan',
],
'modifications': {
# chromium.win
'Win10 Tests x64': {
# crbug.com/868082
'args': [
'--disable-features=WebRTC-H264WithOpenH264FFmpeg',
],
# This is for slow test execution that often becomes a critical path of
# swarming jobs. crbug.com/868114
'swarming': {
'shards': 20,
},
},
},
},
# Note: keep experiment percentages the same as chrome_public_test_apk.
'network_service_chrome_public_test_apk': {
# Only run these on the phone testers for now due to capacity.
'remove_from': [
# chromium.android
'android-kitkat-arm-rel',
'android-marshmallow-arm64-rel',
'KitKat Tablet Tester',
'Lollipop Tablet Tester',
'Marshmallow Tablet Tester',
'KitKat Phone Tester (dbg)',
# chromium.memory
'Android CFI',
# chromium.clang
'ToTAndroid',
'ToTAndroidCFI',
],
'modifications': {
# chromium.android
'Marshmallow 64 bit Tester': {
# TODO(crbug.com/731759): Enable this once we're confident that it
# passes.
'experiment_percentage': 100,
},
'Oreo Phone Tester': {
'experiment_percentage': 100,
},
},
},
'network_service_components_browsertests': {
'remove_from': [
# chromium.memory
'Linux ASan LSan Tests (1)', # No capacity, https://crbug.com/852442
'Linux TSan Tests', # No capacity, https://crbug.com/852442
# chromium.win
'Win7 Tests (1)', # For swarming capacity reasons.
'Win10 Tests x64 (dbg)', # Matches components_browsertests.
# Only run network service tests on Mac 10.12 for capacity reasons.
'Chromium Mac 10.13',
'Mac10.10 Tests',
'Mac10.11 Tests',
'Mac10.13 Tests',
'Mac10.13 Tests (dbg)',
'Mac ASan 64 Tests (1)',
'Mac ASan 64 Tests (1)',
'ToTMacASan',
],
},
'network_service_content_browsertests': {
'remove_from': [
# chromium.clang
'ToTLinuxTSan', # Match 'Linux TSan Tests' below since this is slow.
# chromium.memory
'Linux ASan LSan Tests (1)', # No capacity, https://crbug.com/852442
'Linux TSan Tests', # No capacity, https://crbug.com/852442
# chromium.win
'Win7 Tests (1)', # For swarming capacity reasons.
'Win10 Tests x64 (dbg)', # flaky: https://crbug.com/852786
# Only run network service tests on Mac 10.12 for capacity reasons.
'Chromium Mac 10.13',
'Mac10.10 Tests',
'Mac10.11 Tests',
'Mac10.13 Tests',
'Mac10.13 Tests (dbg)',
'Mac ASan 64 Tests (1)',
'Mac ASan 64 Tests (1)',
'ToTMacASan',
],
},
'network_service_content_shell_test_apk': {
# Only run these on the phone testers for now due to capacity.
'remove_from': [
# chromium.android
'android-kitkat-arm-rel',
'android-marshmallow-arm64-rel',
'KitKat Tablet Tester',
'Lollipop Tablet Tester',
'Marshmallow Tablet Tester',
'KitKat Phone Tester (dbg)',
# chromium.memory
'Android CFI',
# chromium.clang
'ToTAndroid',
'ToTAndroidCFI',
],
},
'network_service_extensions_browsertests': {
'remove_from': [
# chromium.memory
'Linux ASan LSan Tests (1)', # No capacity, https://crbug.com/852442
'Linux TSan Tests', # No capacity, https://crbug.com/852442
# chromium.win
'Win7 Tests (1)', # For swarming capacity reasons.
'Win10 Tests x64 (dbg)', # Matches extensions_browsertests.
# Only run network service tests on Mac 10.12 for capacity reasons.
'Chromium Mac 10.13',
'Mac10.10 Tests',
'Mac10.11 Tests',
'Mac10.13 Tests',
'Mac10.13 Tests (dbg)',
'Mac ASan 64 Tests (1)',
'Mac ASan 64 Tests (1)',
'ToTMacASan',
],
},
'network_service_interactive_ui_tests': {
'remove_from': [
# chromium.clang
'ToTLinuxTSan', # Match 'Linux TSan Tests' below since this is slow.
# chromium.memory
'Linux ASan LSan Tests (1)', # No capacity, https://crbug.com/852442
'Linux TSan Tests', # No capacity, https://crbug.com/852442
# chromium.win
'Win7 Tests (1)', # For swarming capacity reasons.
# Only run network service tests on Mac 10.12 for capacity reasons.
'Chromium Mac 10.13',
'Mac10.10 Tests',
'Mac10.11 Tests',
'Mac10.13 Tests',
'Mac10.13 Tests (dbg)',
'Mac ASan 64 Tests (1)',
'Mac ASan 64 Tests (1)',
'ToTMacASan',
],
'modifications': {
# chromium.win
'Win10 Tests x64 (dbg)': {
'experiment_percentage': 100, # https://crbug.com/852786
},
},
},
'non_single_process_mash_browser_tests': {
'modifications': {
# chromium.chromiumos
'linux-chromeos-dbg': {
'swarming': {
'shards': 20,
},
},
# chromium.memory
'Linux Chromium OS ASan LSan Tests (1)': {
# These are very slow on the ASAN trybot for some reason.
# crbug.com/794372
'swarming': {
'shards': 30,
},
},
'Linux ChromiumOS MSan Tests': {
'swarming': {
'shards': 20,
},
},
},
},
'not_site_per_process_webkit_layout_tests': {
'remove_from': [
# chromium.linux
# TODO(dpranke): Should we be running this step on Linux Tests (dbg)(1)?
'Linux Tests (dbg)(1)',
'Linux Tests (dbg)(1)(32)',
],
},
'notification_helper_unittests': {
'remove_from': [
# The test uses WinRT, which only exists in Windows 8 or above.
# (https://crbug.com/813553)
# chromium.win
'Win 7 Tests x64 (1)',
'Win7 Tests (1)',
'Win7 Tests (dbg)(1)',
# chromium.clang; all these bots run Windows 7.
'ToTWin',
'ToTWin(dbg)',
'ToTWin(dll)',
'ToTWin64',
'ToTWin64(dbg)',
'ToTWin64(dll)',
'ToTWinCFI',
'ToTWinCFI64',
'ToTWinLibcxx64',
'ToTWinThinLTO64',
],
},
'performance_test_suite': {
'modifications': {
'Mac10.13 Tests (dbg)': {
'args': [
'--browser=debug',
],
},
'Win10 Tests x64 (dbg)': {
'args': [
'--browser=debug_x64',
],
'experiment_percentage': 100,
},
'Win7 Tests (dbg)(1)': {
'args': [
'--browser=debug',
],
},
},
},
'remoting_unittests': {
'remove_from': [
# chromium.linux
'Linux Tests (dbg)(1)(32)', # https://crbug.com/852895
],
},
'services_unittests': {
'remove_from': [
# chromium.clang
'ToTLinuxMSan', # https://crbug.com/831676
# chromium.gpu.fyi
# The face and barcode detection tests fail on the Mac Pros.
'Mac Pro FYI Release (AMD)',
# chromium.memory
'Linux ChromiumOS MSan Tests', # https://crbug.com/831676
'Linux MSan Tests', # https://crbug.com/831676
],
},
'sizes': {
'remove_from': [
'win32-dbg',
'win32-rel',
'win-dbg',
'win-rel',