You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assertstd.assertEqual([x for x instd.objectFields(common_json.jdks) if x != "galahad-jdk"], std.objectFields(jdks_data)),
79
+
# We do not want to expose galahad-jdk, labsjdk-(ce|ee)-25 are synthetized from latest
80
+
local is_labsjdk_25(x) = std.startsWith(x, "labsjdk-ee-25") || std.startsWith(x, "labsjdk-ce-25"),
81
+
assertstd.assertEqual([x for x instd.objectFields(common_json.jdks) if x != "galahad-jdk"], [x for x instd.objectFields(jdks_data) if !is_labsjdk_25(x)]),
72
82
# Verify oraclejdk-latest and labsjdk-ee-latest versions match
73
83
assert
74
84
local _labsjdk = common_json.jdks["labsjdk-ee-latest"];
help="A comma-separated list of suite dependencies whose commit info must not be included.")
4051
4059
parser.add_argument(
4052
-
"--extras", default=None, help="One or more comma separated key:value pairs to add to the results file.")
4060
+
"--extras", default=None, help="One or more comma separated key:value pairs to add to the results file. Takes precedence over the keys defined in MX_BENCHMARK_EXTRAS in case of duplicates.")
4053
4061
parser.add_argument(
4054
4062
'--dry-run', action='store_true', help="Only displays the resulting file without saving it.")
help="A comma-separated list of suite dependencies whose commit info must not be included.")
4122
4130
parser.add_argument(
4123
-
"--extras", default=None, help="One or more comma separated key:value pairs to add to the results file.")
4131
+
"--extras", default=None, help="One or more comma separated key:value pairs to add to the results file. Takes precedence over the keys defined in MX_BENCHMARK_EXTRAS in case of duplicates.")
4124
4132
parser.add_argument(
4125
4133
"--list", default=None, action="store_true",
4126
4134
help="Print the list of all available benchmark suites or all benchmarks available in a suite.")
0 commit comments