Allow for multiple forbidden paths
[releng/builder.git] / jjb / integration / integration-apex-run-tests.sh
index 49c7aa6d85bced1c158ae6c2fc52dad31e2983b6..84d06e59a3a3ab84b54103d52e55734fed7366eb 100644 (file)
@@ -126,11 +126,11 @@ 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
     ((suite_num = suite_num + 1))
-    suite_index="$(printf %02d ${suite_num})"
+    suite_index="$(printf %02d "${suite_num}")"
     suite_name="$(basename "${suite}" | cut -d. -f1)"
     log_name="${suite_index}_${suite_name}"
     robot -N "${log_name}" \
-    -c critical -e exclude -e "skip_if_${DISTROSTREAM}" -e NON_GATE \
+    -e exclude -e "skip_if_${DISTROSTREAM}" -e NON_GATE \
     --log "log_${log_name}.html" --report "report_${log_name}.html" --output "output_${log_name}.xml" \
     --removekeywords wuks \
     --removekeywords name:SetupUtils.Setup_Utils_For_Setup_And_Teardown \
@@ -171,6 +171,7 @@ for suite in ${SUITES}; do
     -v SSH_KEY:robot_id_rsa \
     -v TOOLS_SYSTEM_IP: \
     -v USER_HOME:"${HOME}" \
+    -v IS_KARAF_APPL:"${IS_KARAF_APPL}" \
     -v WORKSPACE:/tmp \
     "${TESTOPTIONS}" "${suite}" || true
 done