From 8a39515124e5578441ab2707b79bdf4709694943 Mon Sep 17 00:00:00 2001 From: Valentine Burley Date: Wed, 3 Dec 2025 14:16:02 +0100 Subject: [PATCH] ci: Allow PIGLIT_TAG to be unset in deqp-runner script Fixes `unbound variable` error with `set -u`. Signed-off-by: Valentine Burley Part-of: --- .gitlab-ci/deqp-runner.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/deqp-runner.sh b/.gitlab-ci/deqp-runner.sh index b75574a7e1b..bca0295cc21 100755 --- a/.gitlab-ci/deqp-runner.sh +++ b/.gitlab-ci/deqp-runner.sh @@ -39,7 +39,7 @@ if [ -n "${FLUSTER_TAG:-}" ]; then export LIBVA_MESSAGING_LEVEL=1 fi -if [ -n "$PIGLIT_TAG" ]; then +if [ -n "${PIGLIT_TAG:-}" ]; then # Are we using the right Piglit version? ci_tag_test_time_check "PIGLIT_TAG" elif [ -d "/piglit" ]; then