Skip to content

Commit

Permalink
Make AIX use non-group multiJVM (adoptium#4513)
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Leonard <[email protected]>
  • Loading branch information
andrew-m-leonard authored Apr 17, 2023
1 parent 2b974a6 commit b5ded17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jck/jtrunner/JavaTestRunner.java
Original file line number Diff line number Diff line change
Expand Up @@ -565,8 +565,8 @@ public static boolean jckConfigurationForMultijvmWithNoAgent() throws Exception
extraJvmOptions += " -Dfile.encoding=US-ASCII";
}

// testExecutionType of multiJVM_group on Windows causes memory exhaustion, so limit to plain multiJVM
if (getJckVersionInt(jckVersionNo) >= 17 && platform.contains("win")) {
// testExecutionType of multiJVM_group on Windows and AIX causes memory exhaustion, so limit to non-group multiJVM
if (getJckVersionInt(jckVersionNo) >= 17 && (platform.contains("win") || platform.contains("aix"))) {
fileContent += "set jck.env.testPlatform.multiJVM \"Yes\";\n";
}

Expand Down

0 comments on commit b5ded17

Please sign in to comment.