Fix csit SUITES variable 28/83528/1
authorThanh Ha <zxiiro@gmail.com>
Thu, 8 Aug 2019 17:06:24 +0000 (13:06 -0400)
committerThanh Ha <zxiiro@gmail.com>
Thu, 8 Aug 2019 17:06:31 +0000 (13:06 -0400)
Change I43555ba960bf37f7cdd182be1574ae0249eb12d1 and
I43555ba960bf37f7cdd182be1574ae0249eb12d1 introduced this regression
trying to resolve shellcheck.

Change-Id: Iee506845d7af4c5e49e96134ef9422b4e84d5020
Signed-off-by: Thanh Ha <zxiiro@gmail.com>
jjb/integration/integration-deploy-controller-run-test.sh
jjb/integration/integration-start-cluster-run-test.sh

index 2c9a2a17aa8624fddf434ce6d55a29317a3a82a6..6195fa27da2f282180106b188d42dd57ecea70ef 100755 (executable)
@@ -49,6 +49,7 @@ done
 get_test_suites SUITES
 
 echo "Starting Robot test suites ${SUITES} ..."
+# shellcheck disable=SC2086
 robot -N "${TESTPLAN}" \
       --removekeywords wuks -c critical -e exclude -e "skip_if_${DISTROSTREAM}" \
       -v BUNDLEFOLDER:"${BUNDLEFOLDER}" \
@@ -86,7 +87,7 @@ robot -N "${TESTPLAN}" \
       -v TOOLS_SYSTEM_USER:"${USER}" \
       -v USER_HOME:"${HOME}" \
       -v WORKSPACE:/tmp \
-      "${TESTOPTIONS}" "${SUITES}" || true
+      "${TESTOPTIONS}" ${SUITES} || true
 
 echo "Examining the files in data/log and checking filesize"
 # shellcheck disable=SC2029
index 2f2b14c1d84fd3f7315f09ace27a341007e7fe65..0f1da123c5a54575839d520ded26389dfdb2fb19 100644 (file)
@@ -111,6 +111,7 @@ done
 get_test_suites SUITES
 
 echo "Starting Robot test suites ${SUITES} ..."
+# shellcheck disable=SC2086
 robot -N "${TESTPLAN}" \
       --removekeywords wuks -c critical -e exclude -e "skip_if_${DISTROSTREAM}" \
       -v BUNDLEFOLDER:"${BUNDLEFOLDER}" \
@@ -136,7 +137,7 @@ robot -N "${TESTPLAN}" \
       -v TOOLS_SYSTEM_USER:"${USER}" \
       -v USER_HOME:"${HOME}" \
       -v WORKSPACE:/tmp \
-      "${TESTOPTIONS}" "${SUITES}" || true
+      "${TESTOPTIONS}" ${SUITES} || true