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

Add OpenJ9PropsExt properties for serviceability_jvmti_j9 #34

Merged
merged 1 commit into from
Oct 10, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions closed/test/jtreg-ext/requires/OpenJ9PropsExt.java
Original file line number Diff line number Diff line change
@@ -37,8 +37,10 @@ public Map<String, String> call() {
Map<String, String> map = new HashMap<>();
try {
map.put("vm.bits", vmBits());
map.put("vm.cds", "false");
map.put("vm.compiler2.enabled", "false");
map.put("vm.continuations", "false");
map.put("vm.flagless", "true");
map.put("vm.gc.G1", "false");
map.put("vm.gc.Parallel", "false");
map.put("vm.gc.Serial", "false");
@@ -49,6 +51,7 @@ public Map<String, String> call() {
map.put("vm.jvmti", "true");
map.put("vm.musl", "false");
map.put("vm.openj9", "true");
map.put("vm.opt.final.ClassUnloading", "false");
}
catch (Exception e) {
e.printStackTrace();