Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

jck23 api/javax_management no longer requires jmxResourcePathValue set #5592

Merged
merged 1 commit into from
Sep 12, 2024
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
4 changes: 2 additions & 2 deletions jck/jtrunner/JavatestUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -575,8 +575,8 @@ private static boolean generateJTB() throws Exception {
if ( tests.startsWith("vm/jvmti") || tests.equals("vm") ) {
fileContent += "set jck.env.runtime.testExecute.jvmtiLivePhase Yes;\n";
}
if ( tests.contains("api/javax_management") || tests.equals("api") ) {

if ( jckVersionInt < 23 && (tests.contains("api/javax_management") || tests.equals("api")) ) {
fileContent += "set jck.env.runtime.testExecute.jmxResourcePathValue \"" + nativesLoc + "\"" + ";\n";
}

Expand Down