Skip to content

Commit

Permalink
kept as before
Browse files Browse the repository at this point in the history
  • Loading branch information
annaibm committed Jun 20, 2024
1 parent 8425e68 commit cdaf7e9
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions get.sh
Original file line number Diff line number Diff line change
Expand Up @@ -770,22 +770,22 @@ checkOpenJ9RepoSHA()
parseCommandLineArgs "$@"
if [ "$USE_TESTENV_PROPERTIES" = true ]; then
teFile="./testenv/testenv.properties"
if [[ "$PLATFORM" == *"zos"* ]]; then
echo "load ./testenv/testenv_zos.properties"
source ./testenv/testenv_zos.properties
teFile="./testenv/testenv_zos.properties"
elif [[ "$PLATFORM" == *"arm"* ]] && [[ "$JDK_VERSION" == "8" ]] ; then
echo "load ./testenv/testenv_arm32.properties"
source ./testenv/testenv_arm32.properties
teFile="./testenv/testenv_arm32.properties"
else
echo "load ./testenv/testenv.properties"
source ./testenv/testenv.properties
fi
if [[ $JDK_IMPL != "openj9" && $JDK_IMPL != "ibm" ]]; then
echo "Running checkTags with $teFile and $JDK_VERSION"
./scripts/testenv/checkTags.sh $teFile $JDK_VERSION
fi
if [[ "$PLATFORM" == *"zos"* ]]; then
echo "load ./testenv/testenv_zos.properties"
source ./testenv/testenv_zos.properties
teFile="./testenv/testenv_zos.properties"
elif [[ "$PLATFORM" == *"arm"* ]] && [[ "$JDK_VERSION" == "8" ]] ; then
echo "load ./testenv/testenv_arm32.properties"
source ./testenv/testenv_arm32.properties
teFile="./testenv/testenv_arm32.properties"
else
echo "load ./testenv/testenv.properties"
source ./testenv/testenv.properties
fi
if [[ $JDK_IMPL != "openj9" && $JDK_IMPL != "ibm" ]]; then
echo "Running checkTags with $teFile and $JDK_VERSION"
./scripts/testenv/checkTags.sh $teFile $JDK_VERSION
fi
else
> ./testenv/testenv.properties
fi
Expand Down

0 comments on commit cdaf7e9

Please sign in to comment.