From 317872f64604dacbb7122be8722e779d7d7ddefa Mon Sep 17 00:00:00 2001 From: Denis Pynkin <denis.pynkin@collabora.com> Date: Thu, 11 Oct 2018 12:59:27 +0300 Subject: [PATCH] Allow to use libraries Some binaries need to be copied with shared libraries. Export LD_LIBRARY_PATH variable allows to put and use needed libraries from `$TESTDIR/$ARCH/lib` directory. Signed-off-by: Denis Pynkin <denis.pynkin@collabora.com> --- common/update-test-path | 1 + 1 file changed, 1 insertion(+) diff --git a/common/update-test-path b/common/update-test-path index 1766cbb..61174ff 100644 --- a/common/update-test-path +++ b/common/update-test-path @@ -12,4 +12,5 @@ aarch64) ARCHDIR=arm64 ;; esac PATH=${TESTPATH}/${ARCHDIR}/bin:$PATH +export LD_LIBRARY_PATH=${TESTPATH}/${ARCHDIR}/lib:$LD_LIBRARY_PATH -- GitLab