SUGGESTED FIX
--- a/test/tools/launcher/Settings.java
+++ b/test/tools/launcher/Settings.java
@@ -75,14 +75,14 @@
static void runTestOptionDefault() throws IOException {
TestHelper.TestResult tr = null;
tr = TestHelper.doExec(TestHelper.javaCmd, "-Xms64m", "-Xmx512m",
- "-Xss128k", "-XshowSettings", "-jar", testJar.getAbsolutePath());
+ "-Xss256k", "-XshowSettings", "-jar", testJar.getAbsolutePath());
containsAllOptions(tr);
if (!tr.isOK()) {
System.out.println(tr.status);
throw new RuntimeException("test fails");
}
tr = TestHelper.doExec(TestHelper.javaCmd, "-Xms65536k", "-Xmx712m",
- "-Xss122880", "-XshowSettings", "-jar", testJar.getAbsolutePath());
+ "-Xss256000", "-XshowSettings", "-jar", testJar.getAbsolutePath());
containsAllOptions(tr);
if (!tr.isOK()) {
System.out.println(tr.status);
|
EVALUATION
This is a test failure, the launcher is fine, please see suggested fix,
the stack size needs to be increased as the requirements have gone up.
The reason the stack size is used to ensure the parsing, scaling is right
when displayed via -XshowSettings.
|