Skip to content
This repository was archived by the owner on Dec 13, 2024. It is now read-only.

Commit 629c463

Browse files
authored
Merge pull request #34 from JasonFengJ9/jvmitprops
Add OpenJ9PropsExt properties for serviceability_jvmti_j9
2 parents 9c604b0 + 89ec672 commit 629c463

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

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

+3
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,10 @@ public Map<String, String> call() {
3737
Map<String, String> map = new HashMap<>();
3838
try {
3939
map.put("vm.bits", vmBits());
40+
map.put("vm.cds", "false");
4041
map.put("vm.compiler2.enabled", "false");
4142
map.put("vm.continuations", "false");
43+
map.put("vm.flagless", "true");
4244
map.put("vm.gc.G1", "false");
4345
map.put("vm.gc.Parallel", "false");
4446
map.put("vm.gc.Serial", "false");
@@ -49,6 +51,7 @@ public Map<String, String> call() {
4951
map.put("vm.jvmti", "true");
5052
map.put("vm.musl", "false");
5153
map.put("vm.openj9", "true");
54+
map.put("vm.opt.final.ClassUnloading", "false");
5255
}
5356
catch (Exception e) {
5457
e.printStackTrace();

0 commit comments

Comments
 (0)