summaryrefslogtreecommitdiffstats
path: root/testsuite/test03.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/test03.sh')
-rwxr-xr-xtestsuite/test03.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/testsuite/test03.sh b/testsuite/test03.sh
deleted file mode 100755
index 68a05f1..0000000
--- a/testsuite/test03.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-case "`uname -m`" in
- ia64) exit 77;; # Does not support non-pic shared libs
-esac
-rm -f test03 lib03*.so test03.log
-$CC -shared -O2 -o lib031.so $srcdir/lib031.c
-$CC -shared -O2 -o lib032.so $srcdir/lib032.c lib031.so
-$CCLINK -o test03 $srcdir/test03.c -Wl,--rpath-link,. lib032.so
-echo $PRELINK -vm ./test03 > test03.log
-$PRELINK -vm ./test03 >> test03.log 2>&1 || exit 1
-LD_LIBRARY_PATH=. ./test03 || exit 2
-# So that it is not prelinked again
-chmod -x ./test03