summaryrefslogtreecommitdiffstats
path: root/trunk/testsuite/cycle1.sh
blob: 3dc7f93fa0020f21e5ecb3635eca9f68bb56add3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
. `dirname $0`/functions.sh
rm -f cycle1 cycle1lib*.so cycle1.log
rm -f prelink.cache
# Test whether prelink doesn't segfault or loop endlessly on
# bogus library dependency chains
echo 'int foo;' | $CC -shared -O2 -fpic -o cycle1lib1.so -xc -
echo 'int bar;' | $CC -shared -O2 -fpic -o cycle1lib2.so -xc - -xnone cycle1lib1.so
echo 'int foo;' | $CC -shared -O2 -fpic -o cycle1lib1.so -xc - -xnone cycle1lib2.so
BINS="cycle1"
LIBS="cycle1lib1.so cycle1lib2.so"
echo 'int main (void) { return 0; } ' \
  | $CCLINK -o cycle1 -xc - -xnone -Wl,--rpath-link,. cycle1lib2.so
savelibs
echo $PRELINK ${PRELINK_OPTS--vm} ./cycle1 > cycle1.log
$PRELINK ${PRELINK_OPTS--vm} ./cycle1 >> cycle1.log 2>&1 || exit 1
grep -v 'has a dependency cycle' cycle1.log \
  | grep -q ^`echo $PRELINK | sed 's/ .*$/: /'` && exit 2
grep -q "^`echo $PRELINK | sed 's/ .*$/: .*has a dependency cycle/'`" \
  cycle1.log || exit 3
LD_LIBRARY_PATH=. ./cycle1 || exit 4
# So that it is not prelinked again
chmod -x ./cycle1