blob: 4a8fb96ebf8c4fdb60e984e5e7da1f4b70b2cc47 (
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
|
#! /bin/sh -e
SCRATCH=scratch/$(basename $0 .sh)
rm -rf ${SCRATCH}
mkdir -p ${SCRATCH}
cp libsimple.so ${SCRATCH}/
# set an initial DT_SONAME entry
../src/patchelf --set-soname libsimple.so.1.0 ${SCRATCH}/libsimple.so
newSoname=$(../src/patchelf --print-soname ${SCRATCH}/libsimple.so)
if test "$newSoname" != libsimple.so.1.0; then
echo "failed --set-soname test. Expected newSoname: libsimple.so.1.0, got: $newSoname"
exit 1
fi
# print DT_SONAME
soname=$(../src/patchelf --print-soname ${SCRATCH}/libsimple.so)
if test "$soname" != libsimple.so.1.0; then
echo "failed --print-soname test. Expected soname: libsimple.so.1.0, got: $soname"
exit 1
fi
# replace DT_SONAME entry
../src/patchelf --set-soname libsimple.so.1.1 ${SCRATCH}/libsimple.so
newSoname=$(../src/patchelf --print-soname ${SCRATCH}/libsimple.so)
if test "$newSoname" != libsimple.so.1.1; then
echo "failed --set-soname test. Expected newSoname: libsimple.so.1.1, got: $newSoname"
exit 1
fi
|