ci: Allow PIGLIT_TAG to be unset in deqp-runner script

Fixes `unbound variable` error with `set -u`.

Signed-off-by: Valentine Burley <valentine.burley@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38333>
This commit is contained in:
Valentine Burley 2025-12-03 14:16:02 +01:00 committed by Marge Bot
parent 9e62e22598
commit 8a39515124

View file

@ -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