Skip to content
Open
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions jck/jck_target_folder_check/jck_target_folder_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,12 @@ genTargetList() {
}

genTestFolderList() {
if [ "$VERSION" -eq 8 ] ; then
if [ "$VERSION" -eq 8 ] ; then
ver="$VERSION"c
elif [ "$VERSION" -eq 11 ] ; then
ver="$VERSION"a
elif [ "$VERSION" -eq 17 ] ; then
ver="$VERSION"a
else
ver="$VERSION"
fi
Expand All @@ -67,7 +71,7 @@ genTestFolderList() {
cd $JCK_ROOT/*-compiler-$ver/tests
find . -maxdepth 2 -mindepth 2 -type d > $outputdir/compiler-dirs.txt

if [ $ver == "8c" ]; then
if [ "$ver" == "8c" ] || [ "$ver" == "11a" ] || [ "$ver" == "17a" ]; then
cd $JCK_ROOT/*-devtools-$ver/tests
find . -maxdepth 2 -mindepth 2 -type d > $outputdir/devtools-dirs.txt
fi
Expand Down