/usr/share/doc/libsuperlu-dev/runtests.sh is in libsuperlu3-dev 3.0+20070106-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #! /bin/sh
# set -x
if test ! -z $1; then
test -d $1 && cp -r /usr/share/doc/libsuperlu-dev/tests $1
cp -r /usr/share/doc/libsuperlu-dev/examples $1/EXAMPLE
gunzip $1/EXAMPLE/g10.gz
cp /usr/share/doc/libsuperlu-dev/make.inc $1
cd $1/tests/MATGEN
make CFLAGS="-I/usr/include/superlu"
cd $1/tests/
make CFLAGS="-I/usr/include/superlu"
cd $1/EXAMPLE/
make CFLAGS="-I/usr/include/superlu"
else
echo "usage: $0 <test directory>"
fi
|