mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 00:50:10 +01:00
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:
parent
9e62e22598
commit
8a39515124
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue