summaryrefslogtreecommitdiffstats
path: root/testsuite/test00.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/test00.sh')
-rwxr-xr-xtestsuite/test00.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/testsuite/test00.sh b/testsuite/test00.sh
deleted file mode 100755
index 8c54dd6..0000000
--- a/testsuite/test00.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-rm -f prelink.cache
-rm -f test00 lib00*.so test00.log
-i=10
-while [ $i -lt 74 ]; do
- $CXX -shared -fpic -o lib00$i.so $srcdir/lib00.C
- i=`expr $i + 1`
-done
-$CXXLINK -o test00 $srcdir/test00.C lib00*.so
-echo $PRELINK -vR ./test00 > test00.log
-$PRELINK -vR ./test00 >> test00.log 2>&1 || exit 1
-LD_LIBRARY_PATH=. ./test00 || exit 2
-# So that it is not prelinked again
-chmod -x ./test00