mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 19:00:13 +01:00
ci/vkd3d: treat reading undefined variables as an error
This would've prevented the bug in the previous commit. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34639>
This commit is contained in:
parent
89d4ddce0e
commit
104f21c27b
1 changed files with 2 additions and 2 deletions
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
. "${SCRIPTS_DIR}/setup-test-env.sh"
|
||||
|
||||
set -e
|
||||
set -eu
|
||||
|
||||
comma_separated() {
|
||||
local IFS=,
|
||||
|
|
@ -21,7 +21,7 @@ INSTALL=$(realpath -s "$PWD"/install)
|
|||
# Modifiying here directly LD_LIBRARY_PATH may cause problems when
|
||||
# using a command wrapper. Hence, we will just set it when running the
|
||||
# command.
|
||||
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$INSTALL/lib/:/vkd3d-proton-tests/lib/"
|
||||
export LD_LIBRARY_PATH="${LD_LIBRARY_PATH:-}:$INSTALL/lib/:/vkd3d-proton-tests/lib/"
|
||||
|
||||
|
||||
# Set the Vulkan driver to use.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue