7148499: Stack size in tools/launcher/Settings.java needs to be increased
Reviewed-by: alanb
This commit is contained in:
parent
b697d670cb
commit
8f5b808cfe
@ -331,9 +331,6 @@ sun/jvmstat/monitor/MonitoredVm/CR6672135.java generic-all
|
||||
tools/pack200/CommandLineTests.java generic-all
|
||||
tools/pack200/Pack200Test.java generic-all
|
||||
|
||||
# 7148499
|
||||
tools/launcher/Settings.java generic-all
|
||||
|
||||
############################################################################
|
||||
|
||||
# jdk_util
|
||||
|
@ -75,14 +75,14 @@ public class Settings extends TestHelper {
|
||||
static void runTestOptionDefault() throws IOException {
|
||||
TestResult tr = null;
|
||||
tr = doExec(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 = doExec(javaCmd, "-Xms65536k", "-Xmx712m",
|
||||
"-Xss122880", "-XshowSettings", "-jar", testJar.getAbsolutePath());
|
||||
"-Xss256000", "-XshowSettings", "-jar", testJar.getAbsolutePath());
|
||||
containsAllOptions(tr);
|
||||
if (!tr.isOK()) {
|
||||
System.out.println(tr.status);
|
||||
|
Loading…
Reference in New Issue
Block a user