blob: 3bdfc127254a989fce2b58335a2f45b5c54a2a5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#! /bin/sh -e
rm -rf scratch
mkdir -p scratch
mkdir -p scratch/libsA
mkdir -p scratch/libsB
cp main-scoped scratch/
cp libfoo-scoped.so scratch/libsA/
cp libbar-scoped.so scratch/libsB/
oldRPath=$(../src/patchelf --print-rpath scratch/main-scoped)
if test -z "$oldRPath"; then oldRPath="/oops"; fi
../src/patchelf --set-rpath $oldRPath:$(pwd)/scratch/libsA:$(pwd)/scratch/libsB scratch/main-scoped
# "main" contains libbar in its RUNPATH, but that's ignored when
# resolving libfoo. So libfoo won't find libbar and this will fail.
exitCode=0
(cd scratch && ./main-scoped) || exitCode=$?
if test "$exitCode" = 46; then
echo "expected failure"
exit 1
fi
# So set an RUNPATH on libfoo as well.
oldRPath=$(../src/patchelf --print-rpath scratch/libsA/libfoo-scoped.so)
if test -z "$oldRPath"; then oldRPath="/oops"; fi
../src/patchelf --set-rpath $oldRPath:$(pwd)/scratch/libsB scratch/libsA/libfoo-scoped.so
exitCode=0
(cd scratch && ./main-scoped) || exitCode=$?
if test "$exitCode" != 46; then
echo "bad exit code!"
exit 1
fi
# Remove the libbar PATH from main using --shrink-rpath.
../src/patchelf --shrink-rpath scratch/main-scoped
if ../src/patchelf --print-rpath scratch/main-scoped | grep /libsB; then
echo "shrink failed"
exit 1
fi
# And it should still run.
exitCode=0
(cd scratch && ./main-scoped) || exitCode=$?
if test "$exitCode" != 46; then
echo "bad exit code!"
exit 1
fi
|