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