Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
7d3e53c9
Commit
7d3e53c9
authored
Sep 19, 2019
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix test expectations for run-fork JVM args on Java 13+
Closes gh-17008
parent
19115d19
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
2 deletions
+17
-2
verify.groovy
...ls/spring-boot-maven-plugin/src/it/run-fork/verify.groovy
+17
-2
No files found.
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/run-fork/verify.groovy
View file @
7d3e53c9
import
java.lang.reflect.Method
;
import
static
org
.
junit
.
Assert
.
assertTrue
import
static
org
.
junit
.
Assert
.
assertTrue
def
boolean
isJava13OrLater
()
{
for
(
Method
method
:
String
.
class
.
getMethods
())
{
if
(
method
.
getName
().
equals
(
"stripIndent"
))
{
return
true
;
}
}
return
false
;
}
def
file
=
new
File
(
basedir
,
"build.log"
)
def
file
=
new
File
(
basedir
,
"build.log"
)
assertTrue
file
.
text
.
contains
(
"I haz been run from '$basedir'"
)
assertTrue
file
.
text
.
contains
(
"I haz been run from '$basedir'"
)
assertTrue
file
.
text
.
contains
(
"JVM argument(s): -Xverify:none -XX:TieredStopAtLevel=1"
)
if
(
isJava13OrLater
())
{
assertTrue
file
.
text
.
contains
(
"JVM argument(s): -XX:TieredStopAtLevel=1"
)
}
else
{
assertTrue
file
.
text
.
contains
(
"JVM argument(s): -Xverify:none -XX:TieredStopAtLevel=1"
)
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment