blob: 2674e189e833f7991a1cb1dd0b3dfacba091af07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#! /bin/sh -e
rm -rf scratch
mkdir -p scratch
mkdir -p scratch/libsA
mkdir -p scratch/libsB
cp big-dynstr scratch/
cp libfoo.so scratch/libsA/
cp libbar.so scratch/libsB/
oldRPath=$(../src/patchelf --print-rpath scratch/big-dynstr)
if test -z "$oldRPath"; then oldRPath="/oops"; fi
../src/patchelf --set-rpath $oldRPath:$(pwd)/scratch/libsA:$(pwd)/scratch/libsB scratch/big-dynstr
exitCode=0
cd scratch && ./big-dynstr || exitCode=$?
if test "$exitCode" != 46; then
echo "bad exit code!"
exit 1
fi
|