forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compound_suites.star
167 lines (150 loc) · 5.86 KB
/
compound_suites.star
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
# Copyright 2023 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# This file contains suite definitions that can be used in
# //testing/buildbot/waterfalls.pyl and will also be usable for builders that
# set their tests in starlark (once that is ready). The legacy_ prefix on the
# declarations indicates the capability to be used in //testing/buildbot. Once a
# suite is no longer needed in //testing/buildbot, targets.bundle (which does
# not yet exist) can be used for grouping tests in a more flexible manner.
load("//lib/targets.star", "targets")
targets.legacy_compound_suite(
name = "chrome_linux_isolated_script_tests",
basic_suites = [
"chrome_isolated_script_tests",
"chrome_private_code_test_isolated_scripts",
],
)
targets.legacy_compound_suite(
name = "chromium_linux_blink_rel_isolated_scripts",
basic_suites = [
"chromium_webkit_isolated_scripts",
"linux_specific_chromium_isolated_scripts",
"vulkan_swiftshader_isolated_scripts",
"chromium_web_tests_high_dpi_isolated_scripts",
],
)
targets.legacy_compound_suite(
name = "chromium_mac_rel_isolated_scripts_and_sizes",
basic_suites = [
"chrome_sizes_suite",
"chromedriver_py_tests_isolated_scripts",
"components_perftests_isolated_scripts",
"desktop_chromium_isolated_scripts",
"mac_specific_isolated_scripts",
"mojo_python_unittests_isolated_scripts",
"telemetry_perf_unittests_isolated_scripts",
],
)
targets.legacy_compound_suite(
name = "devtools_gtests",
basic_suites = [
"devtools_browser_tests_suite",
"blink_unittests_suite",
],
)
# BEGIN composition test suites used by the GPU bots
# TODO(jonross): remove this once Vulkan Swiftshader and Vulkan GL interop
# paths are merged. This should mirror
# `gpu_fyi_linux_release_telemetry_tests` but with additional
# `gpu_skia_renderer_vulkan_passthrough_telemetry_tests`
targets.legacy_compound_suite(
name = "gpu_fyi_linux_release_vulkan_telemetry_tests",
basic_suites = [
"gpu_common_and_optional_telemetry_tests",
"gpu_passthrough_telemetry_tests",
"gpu_webgl2_conformance_gl_passthrough_telemetry_tests",
"gpu_webgl_conformance_gl_passthrough_telemetry_tests",
"gpu_skia_renderer_vulkan_passthrough_telemetry_tests",
],
)
targets.legacy_compound_suite(
name = "gpu_fyi_only_mac_release_telemetry_tests",
basic_suites = [
"gpu_common_and_optional_telemetry_tests",
"gpu_gl_passthrough_ganesh_telemetry_tests",
"gpu_metal_passthrough_ganesh_telemetry_tests",
"gpu_metal_passthrough_graphite_telemetry_tests",
"gpu_webcodecs_gl_passthrough_ganesh_telemetry_test",
"gpu_webcodecs_metal_passthrough_ganesh_telemetry_test",
"gpu_webcodecs_metal_passthrough_graphite_telemetry_test",
"gpu_webgl2_conformance_gl_passthrough_ganesh_telemetry_tests",
"gpu_webgl2_conformance_metal_passthrough_graphite_telemetry_tests",
"gpu_webgl_conformance_gl_passthrough_ganesh_telemetry_tests",
"gpu_webgl_conformance_metal_passthrough_ganesh_telemetry_tests",
"gpu_webgl_conformance_metal_passthrough_graphite_telemetry_tests",
"gpu_webgl_conformance_swangle_passthrough_representative_telemetry_tests",
],
)
targets.legacy_compound_suite(
name = "gpu_fyi_win_release_telemetry_tests",
basic_suites = [
"gpu_common_and_optional_telemetry_tests",
"gpu_passthrough_graphite_telemetry_tests",
"gpu_passthrough_telemetry_tests",
"gpu_webcodecs_telemetry_test",
"gpu_webgl2_conformance_d3d11_passthrough_telemetry_tests",
"gpu_webgl_conformance_d3d11_passthrough_telemetry_tests",
"gpu_webgl_conformance_d3d9_passthrough_telemetry_tests",
"gpu_webgl_conformance_vulkan_passthrough_telemetry_tests",
],
)
targets.legacy_compound_suite(
name = "gpu_nexus5x_telemetry_tests_v8",
basic_suites = [
"gpu_common_and_optional_telemetry_tests",
"gpu_validating_telemetry_tests",
"gpu_webgl_conformance_gles_passthrough_telemetry_tests",
"gpu_webgl_conformance_validating_telemetry_tests",
],
)
targets.legacy_compound_suite(
name = "gpu_swangle_telemetry_tests",
basic_suites = [
"gpu_webgl_conformance_swangle_passthrough_telemetry_tests",
],
)
# END composition test suites used by the GPU bots
# This is:
# linux_chromium_gtests
# - non_android_and_cast_and_chromeos_chromium_gtests
# + linux_chromeos_lacros_gtests
# + linux_chromeos_specific_gtests
targets.legacy_compound_suite(
name = "linux_chromeos_gtests",
basic_suites = [
"aura_gtests",
"chromium_gtests",
"chromium_gtests_for_devices_with_graphical_output",
"chromium_gtests_for_linux_and_chromeos_only",
"chromium_gtests_for_win_and_linux_only",
"linux_chromeos_lacros_gtests",
"linux_chromeos_specific_gtests",
"linux_flavor_specific_chromium_gtests",
"non_android_chromium_gtests",
],
)
targets.legacy_compound_suite(
name = "linux_chromeos_isolated_scripts",
basic_suites = [
"blink_web_tests_ppapi_isolated_scripts",
"chrome_sizes_suite",
],
)
# TODO(crbug.com/40142574): Re-enable this if/when additional capacity
# targets.legacy_compound_suite(
# name = 'marshmallow_nougat_pie_isolated_scripts_with_proguard',
# basic_suites = [
# 'android_isolated_scripts',
# 'components_perftests_isolated_scripts',
# 'telemetry_android_minidump_unittests_isolated_scripts',
# 'telemetry_perf_unittests_isolated_scripts_android',
# ],
# )
targets.legacy_compound_suite(
name = "win_specific_isolated_scripts_and_sizes",
basic_suites = [
"chrome_sizes_suite",
"win_specific_isolated_scripts",
],
)