summaryrefslogtreecommitdiffstats
path: root/tests/set-rpath.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/set-rpath.sh')
-rwxr-xr-xtests/set-rpath.sh13
1 files changed, 6 insertions, 7 deletions
diff --git a/tests/set-rpath.sh b/tests/set-rpath.sh
index e3c3fe4..6446395 100755
--- a/tests/set-rpath.sh
+++ b/tests/set-rpath.sh
@@ -1,17 +1,16 @@
#! /bin/sh -e
-oldInterpreter=$(../src/patchelf --print-interpreter ./simple)
-echo "current interpreter is $oldInterpreter"
-
rm -rf scratch
mkdir -p scratch
+mkdir -p scratch/libsA
+mkdir -p scratch/libsB
cp main scratch/
-cp libfoo.so scratch/
-cp libbar.so scratch/
+cp libfoo.so scratch/libsA/
+cp libbar.so scratch/libsB/
-../src/patchelf --set-rpath $(pwd)/scratch scratch/main
-../src/patchelf --set-rpath $(pwd)/scratch scratch/libfoo.so
+../src/patchelf --set-rpath $(pwd)/scratch/libsA scratch/main
+../src/patchelf --set-rpath $(pwd)/scratch/libsB scratch/libsA/libfoo.so
exitCode=0
scratch/main || exitCode=$?