Merge "Fix TESTOPTIONS and SUITES variables"
authorLuis Gomez <ecelgp@gmail.com>
Wed, 21 Aug 2019 18:06:44 +0000 (18:06 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Wed, 21 Aug 2019 18:06:44 +0000 (18:06 +0000)
jjb/integration/integration-deploy-openstack-run-test.sh

index 8c7192918a91ea6ec6daed613ebb9737d56c662d..0ca5106ce38907945139fd07a1da65f6ae27b58e 100644 (file)
@@ -1144,6 +1144,8 @@ printf "Stacking elapsed time: %s\n" "${stacktime}"
 echo "Starting Robot test suites ${SUITES} ..."
 # please add robot -v arguments on a single line and alphabetized
 suite_num=0
+# ${TESTOPTIONS}, ${SUITES} are space-separated parameters and should not be quoted.
+ # shellcheck disable=SC2086
 for suite in ${SUITES}; do
     # prepend an incremental counter to the suite name so that the full robot log combining all the suites as is done
     # in the rebot step below will list all the suites in chronological order as rebot seems to alphabetize them
@@ -1208,7 +1210,7 @@ for suite in ${SUITES}; do
     -v TOOLS_SYSTEM_3_IP:"${TOOLS_SYSTEM_3_IP}" \
     -v USER_HOME:"${HOME}" \
     -v WORKSPACE:/tmp \
-    "${TESTOPTIONS}" "${suite}" || true
+    ${TESTOPTIONS} ${suite} || true
 done
 #rebot exit codes seem to be different
 rebot --output "${WORKSPACE}/output.xml" --log log_full.html --report report.html -N openstack output_*.xml || true