2017-08-29 04:56:01 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
2017-08-29 08:11:24 +08:00
|
|
|
export SETX=1
|
|
|
|
|
2017-08-29 04:56:01 +08:00
|
|
|
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
|
|
|
|
. ../test_common.sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2017-08-29 08:11:24 +08:00
|
|
|
rm -f testnc.h5 testszip.nc
|
|
|
|
|
2017-08-29 04:56:01 +08:00
|
|
|
echo "*** Testing tst_szip "
|
2017-08-29 08:11:24 +08:00
|
|
|
./test_szip
|
2017-08-29 04:56:01 +08:00
|
|
|
echo "***Passed"
|
|
|
|
|
|
|
|
echo "*** Testing h5testszip "
|
|
|
|
./h5testszip
|
|
|
|
echo "***Passed"
|
|
|
|
|
|
|
|
echo "*** Testing h5testszip on testszip.nc"
|
|
|
|
./h5testszip ./testszip.nc
|
|
|
|
echo "***Passed"
|
|
|
|
|
2017-08-29 08:11:24 +08:00
|
|
|
rm -f testnc.h5 testszip.nc
|
2017-08-29 04:56:01 +08:00
|
|
|
|
2017-08-29 08:11:24 +08:00
|
|
|
exit
|