Skip to content

Commit fd0fadd

Browse files
committed
Fix jdk_verctor vm.gz.Z value for jdk17
- Fix jdk_verctor vm.gz.Z value Signed-off-by: Longyu Zhang <[email protected]>
1 parent f74c5d2 commit fd0fadd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

closed/test/jtreg-ext/requires/OpenJ9PropsExt.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,11 @@ public Map<String, String> call() {
3636

3737
Map<String, String> map = new HashMap<>();
3838
try {
39-
map.put("vm.graal.enabled", "false");
4039
map.put("vm.bits", vmBits());
41-
map.put("vm.hasJFR", "false");
4240
map.put("vm.compiler2.enabled", "false");
41+
map.put("vm.gc.Z", "false");
42+
map.put("vm.graal.enabled", "false");
43+
map.put("vm.hasJFR", "false");
4344
map.put("vm.jvmti", "true");
4445
map.put("vm.musl", "false");
4546
}

0 commit comments

Comments
 (0)