Workaround busted /usr/bin/pip3
[releng/builder.git] / jjb / integration / integration-start-cluster-run-test.sh
index 2f2b14c1d84fd3f7315f09ace27a341007e7fe65..16c1eb9710448d1d46d9da09a6643d12aa0a246f 100644 (file)
@@ -111,6 +111,8 @@ done
 get_test_suites SUITES
 
 echo "Starting Robot test suites ${SUITES} ..."
+# ${TESTOPTIONS}, ${SUITES} are space-separated parameters and should not be quoted.
+# shellcheck disable=SC2086
 robot -N "${TESTPLAN}" \
       --removekeywords wuks -c critical -e exclude -e "skip_if_${DISTROSTREAM}" \
       -v BUNDLEFOLDER:"${BUNDLEFOLDER}" \
@@ -130,13 +132,13 @@ robot -N "${TESTPLAN}" \
       -v NUM_ODL_SYSTEM:"${NUM_ODL_SYSTEM}" \
       -v NUM_TOOLS_SYSTEM:"${NUM_TOOLS_SYSTEM}" \
       -v ODL_STREAM:"${DISTROSTREAM}" \
-      -v ODL_SYSTEM_IP:"${ODL_SYSTEM_IP}" "${odl_variables}" \
+      -v ODL_SYSTEM_IP:"${ODL_SYSTEM_IP}" ${odl_variables} \
       -v ODL_SYSTEM_USER:"${USER}" \
-      -v TOOLS_SYSTEM_IP:"${TOOLS_SYSTEM_IP}" "${tools_variables}" \
+      -v TOOLS_SYSTEM_IP:"${TOOLS_SYSTEM_IP}" ${tools_variables} \
       -v TOOLS_SYSTEM_USER:"${USER}" \
       -v USER_HOME:"${HOME}" \
       -v WORKSPACE:/tmp \
-      "${TESTOPTIONS}" "${SUITES}" || true
+      ${TESTOPTIONS} ${SUITES} || true