Skip to content
Snippets Groups Projects
Commit 0e868dac authored by Frederic Danis's avatar Frederic Danis
Browse files

update-test-path: Fix LD_LIBRARY_PATH setup


This script fails when LD_LIBRARY_PATH is not set before calling it and
calling script has `nounset` option set.

Signed-off-by: default avatarFrédéric Danis <frederic.danis@collabora.com>
parent d4ca24fc
No related branches found
No related tags found
3 merge requests!14Backport Bind mount malicious library to test unauthorized access,!13Backport Bind mount malicious library to test unauthorized access,!12Bind mount malicious library to test unauthorized access
......@@ -12,5 +12,5 @@ aarch64) ARCHDIR=arm64 ;;
esac
PATH=${TESTPATH}/${ARCHDIR}/bin:$PATH
export LD_LIBRARY_PATH=${TESTPATH}/${ARCHDIR}/lib:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH=${TESTPATH}/${ARCHDIR}/lib:${LD_LIBRARY_PATH:-}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment