Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jdk17u
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
einsteinathome
openjdk
jdk17u
Commits
8f5b808c
Commit
8f5b808c
authored
Feb 29, 2012
by
Kumar Srinivasan
Browse files
Options
Downloads
Patches
Plain Diff
7148499: Stack size in tools/launcher/Settings.java needs to be increased
Reviewed-by: alanb
parent
b697d670
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
jdk/test/ProblemList.txt
+0
-3
0 additions, 3 deletions
jdk/test/ProblemList.txt
jdk/test/tools/launcher/Settings.java
+2
-2
2 additions, 2 deletions
jdk/test/tools/launcher/Settings.java
with
2 additions
and
5 deletions
jdk/test/ProblemList.txt
+
0
−
3
View file @
8f5b808c
...
@@ -331,9 +331,6 @@ sun/jvmstat/monitor/MonitoredVm/CR6672135.java generic-all
...
@@ -331,9 +331,6 @@ sun/jvmstat/monitor/MonitoredVm/CR6672135.java generic-all
tools/pack200/CommandLineTests.java generic-all
tools/pack200/CommandLineTests.java generic-all
tools/pack200/Pack200Test.java generic-all
tools/pack200/Pack200Test.java generic-all
# 7148499
tools/launcher/Settings.java generic-all
############################################################################
############################################################################
# jdk_util
# jdk_util
...
...
This diff is collapsed.
Click to expand it.
jdk/test/tools/launcher/Settings.java
+
2
−
2
View file @
8f5b808c
...
@@ -75,14 +75,14 @@ public class Settings extends TestHelper {
...
@@ -75,14 +75,14 @@ public class Settings extends TestHelper {
static
void
runTestOptionDefault
()
throws
IOException
{
static
void
runTestOptionDefault
()
throws
IOException
{
TestResult
tr
=
null
;
TestResult
tr
=
null
;
tr
=
doExec
(
javaCmd
,
"-Xms64m"
,
"-Xmx512m"
,
tr
=
doExec
(
javaCmd
,
"-Xms64m"
,
"-Xmx512m"
,
"-Xss
128
k"
,
"-XshowSettings"
,
"-jar"
,
testJar
.
getAbsolutePath
());
"-Xss
256
k"
,
"-XshowSettings"
,
"-jar"
,
testJar
.
getAbsolutePath
());
containsAllOptions
(
tr
);
containsAllOptions
(
tr
);
if
(!
tr
.
isOK
())
{
if
(!
tr
.
isOK
())
{
System
.
out
.
println
(
tr
.
status
);
System
.
out
.
println
(
tr
.
status
);
throw
new
RuntimeException
(
"test fails"
);
throw
new
RuntimeException
(
"test fails"
);
}
}
tr
=
doExec
(
javaCmd
,
"-Xms65536k"
,
"-Xmx712m"
,
tr
=
doExec
(
javaCmd
,
"-Xms65536k"
,
"-Xmx712m"
,
"-Xss
12288
0"
,
"-XshowSettings"
,
"-jar"
,
testJar
.
getAbsolutePath
());
"-Xss
25600
0"
,
"-XshowSettings"
,
"-jar"
,
testJar
.
getAbsolutePath
());
containsAllOptions
(
tr
);
containsAllOptions
(
tr
);
if
(!
tr
.
isOK
())
{
if
(!
tr
.
isOK
())
{
System
.
out
.
println
(
tr
.
status
);
System
.
out
.
println
(
tr
.
status
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment