Skip to content

Commit

Permalink
Support openj9 to run openjdk custom target
Browse files Browse the repository at this point in the history
- Leveraging hotspot_custom to support openj9 to run openjdk custom target

Signed-off-by: LongyuZhang <[email protected]>
  • Loading branch information
LongyuZhang committed Jun 5, 2024
1 parent 529a642 commit 47f0cbf
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
3 changes: 2 additions & 1 deletion buildenv/jenkins/JenkinsfileBase
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,8 @@ def runTest( ) {
env.SYSTEM_CUSTOM_TARGET=CUSTOM_TARGET
} else {
// remove suffix, then set CUSTOM_OPTION (i.e., jdk_custom_0 will become jdk_custom)
def removeSuffix = TARGET.replaceAll(/_\d+$/, "")
def removeDisabled = TARGET.replaceAll("disabled.", "")
def removeSuffix = removeDisabled.replaceAll(/_\d+$/, "")
CUSTOM_OPTION = "${removeSuffix.toUpperCase()}_TARGET='${CUSTOM_TARGET}'"
}
}
Expand Down
13 changes: 10 additions & 3 deletions openjdk/playlist.xml
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,16 @@
<groups>
<group>openjdk</group>
</groups>
<impls>
<impl>hotspot</impl>
</impls>
<disables>
<disable>
<comment>https://github.com/adoptium/aqa-tests/issues/5357</comment>
<impl>openj9</impl>
</disable>
<disable>
<comment>https://github.com/adoptium/aqa-tests/issues/5357</comment>
<impl>ibm</impl>
</disable>
</disables>
</test>
<test>
<testCaseName>hotspot_container</testCaseName>
Expand Down

0 comments on commit 47f0cbf

Please sign in to comment.