Skip to content

Commit

Permalink
Merge pull request #2898 from openshift-cherrypick-robot/cherry-pick-…
Browse files Browse the repository at this point in the history
…2896-to-release-4.15

[release-4.15] USHIFT-2195: Fix standard suites on run.sh
  • Loading branch information
openshift-merge-bot[bot] authored Jan 18, 2024
2 parents eef840c + 39b4176 commit 0bc5f95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ cd "${SCRIPTDIR}" || (echo "Did not find ${SCRIPTDIR}" 1>&2; exit 1)
TESTS="$*"
# if TESTS is not set - run the standard suite.
if [ -z "${TESTS}" ]; then
TESTS="./suites/standard"
TESTS=(./suites/standard1 ./suites/standard2)
fi

set -x
Expand All @@ -77,7 +77,7 @@ if ${DRYRUN}; then
"${RF_BINARY}" \
--dryrun \
--outputdir "${OUTDIR}" \
${TESTS}
"${TESTS[@]}"
else
# shellcheck disable=SC2086
"${RF_BINARY}" \
Expand All @@ -86,5 +86,5 @@ else
-V "${RF_VARIABLES}" \
-x junit.xml \
--outputdir "${OUTDIR}" \
${TESTS}
"${TESTS[@]}"
fi

0 comments on commit 0bc5f95

Please sign in to comment.