We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44ea825 commit 517ec23Copy full SHA for 517ec23
jck/jtrunner/JavaTestRunner.java
@@ -565,6 +565,11 @@ public static boolean jckConfigurationForMultijvmWithNoAgent() throws Exception
565
extraJvmOptions += " -Dfile.encoding=US-ASCII";
566
}
567
568
+ // testExecutionType of multiJVM_group on Windows causes memory exhaustion, so limit to plain multiJVM
569
+ if (getJckVersionInt(jckVersionNo) >= 17 && platform.contains("win")) {
570
+ fileContent += "set jck.env.testPlatform.multiJVM \"Yes\";\n";
571
+ }
572
+
573
// Set the operating system as 'Windows' for Windows and 'other' for all other operating systems.
574
// If 'other' is specified when executing on Windows, then Windows specific settings such
575
// as systemRoot are rejected, and the JCK harness assumes that DISPLAY is required for GUI tests.
0 commit comments