automated/linux/deqp-runner: Remove unneeded quotes in deqp-runner
Signed-off-by: Aníbal Limón <anibal.limon@linaro.org>
diff --git a/automated/linux/deqp-runner/deqp-runner.sh b/automated/linux/deqp-runner/deqp-runner.sh
index 4c74bd3..73c9cdf 100755
--- a/automated/linux/deqp-runner/deqp-runner.sh
+++ b/automated/linux/deqp-runner/deqp-runner.sh
@@ -60,7 +60,9 @@
report_set_start "$test_set_name"
set +e
-deqp-runner --deqp "${DEQP_BIN}" --output "$DEQP_RESULT_FILE" "${DEQP_CASES}" "${DEQP_FAIL}" "${DEQP_EXCLUDE}" "${DEQP_RUNNER_OPTIONS}" "${DEQP_RUNNER_JOBS}" -- "${DEQP_OPTIONS}"
+# Disable next check because the variables are options and fails when are quoted.
+# shellcheck disable=SC2086
+deqp-runner --deqp ${DEQP_BIN} --output $DEQP_RESULT_FILE ${DEQP_CASES} ${DEQP_FAIL} ${DEQP_EXCLUDE} ${DEQP_RUNNER_OPTIONS} ${DEQP_RUNNER_JOBS} -- ${DEQP_OPTIONS}
DEQP_EXITCODE=$?
set -e