Skip to content

Commit aeef729

Browse files
authored
Merge pull request #102 from LongyuZhang/gcz1
Fix jdk_verctor vm.gz.Z value for jdk17
2 parents a5f4e38 + fd0fadd commit aeef729

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)