Files
patchelf/tests/set-rpath.sh
2008-05-28 12:29:23 +00:00

27 lines
590 B
Bash
Executable File

#! /bin/sh -e
rm -rf scratch
mkdir -p scratch
mkdir -p scratch/libsA
mkdir -p scratch/libsB
cp main scratch/
cp libfoo.so scratch/libsA/
cp libbar.so scratch/libsB/
oldRPath=$(../src/patchelf --print-rpath scratch/main)
if test -z "$oldRPath"; then oldRPath="/oops"; fi
../src/patchelf --force-rpath --set-rpath $oldRPath:$(pwd)/scratch/libsA:$(pwd)/scratch/libsB scratch/main
if test "$(uname)" = FreeBSD; then
export LD_LIBRARY_PATH=$(pwd)/scratch/libsB
fi
exitCode=0
(cd scratch && ./main) || exitCode=$?
if test "$exitCode" != 46; then
echo "bad exit code!"
exit 1
fi