summaryrefslogtreecommitdiffstats
path: root/testsuite/undo1.sh
blob: ed61b6b40dc2ec33cd3c8d65449e02ae1a241ccd (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
#!/bin/bash
. `dirname $0`/functions.sh
rm -f undo1 undo1lib*.so undo1.log
rm -f prelink.cache
$CC -shared -O2 -fpic -o undo1lib1.so $srcdir/reloc1lib1.c
$CC -shared -O2 -fpic -o undo1lib2.so $srcdir/reloc1lib2.c undo1lib1.so
BINS="undo1"
LIBS="undo1lib1.so undo1lib2.so"
$CCLINK -o undo1 $srcdir/reloc1.c -Wl,--rpath-link,. undo1lib2.so
savelibs
echo $PRELINK ${PRELINK_OPTS--vm} ./undo1 > undo1.log
$PRELINK ${PRELINK_OPTS--vm} ./undo1 >> undo1.log 2>&1 || exit 1
grep -q ^`echo $PRELINK | sed 's/ .*$/: /'` undo1.log && exit 2
if [ "x$CROSS" = "x" ]; then
 LD_LIBRARY_PATH=. ./undo1 || exit 3
fi
readelf -a ./undo1 >> undo1.log 2>&1 || exit 4
# So that it is not prelinked again
chmod -x ./undo1
echo $PRELINK -uo undo1.undo undo1 >> undo1.log
$PRELINK -uo undo1.undo undo1 >> undo1.log 2>&1 || exit 5
cmp -s undo1.undo undo1.orig >> undo1.log 2>&1 || exit 6
rm -f undo1.undo
comparelibs >> undo1.log 2>&1 || exit 7