summaryrefslogtreecommitdiffstats
path: root/tests/shrink.sh
blob: a60911cff5c6c84f86fadf26284302c455e8ee2b (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

rpath=$(../src/patchelf --print-rpath ./libbar.so)
echo "RPATH before: $rpath"
if ! echo "$rpath" | grep -q /no-such-path; then
    echo "incomplete RPATH"
    exit 1
fi

rm -rf scratch
mkdir -p scratch
cp libbar.so scratch/
../src/patchelf --shrink-rpath scratch/libbar.so

rpath=$(../src/patchelf --print-rpath scratch/libbar.so)
echo "RPATH after: $rpath"
if echo "$rpath" | grep -q /no-such-path; then
    echo "RPATH not shrunk"
    exit 1
fi

LD_LIBRARY_PATH=. ./main