summaryrefslogtreecommitdiffstats
path: root/tests/shrink.sh
blob: 563270f233f9e307ff35158d1d1462ed86201859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /bin/sh -e

rpath=$(../src/patchelf --print-rpath ./libfoo.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 libfoo.so scratch/
../src/patchelf --shrink-rpath scratch/libfoo.so

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