2010-06-03 21:24:43 +08:00
|
|
|
#!/bin/sh
|
|
|
|
# For a netCDF-3 build, test nccopy on netCDF files in this directory
|
|
|
|
|
|
|
|
set -e
|
2012-05-09 06:37:56 +08:00
|
|
|
if test "x$srcdir" = "x"; then
|
|
|
|
srcdir=`dirname $0`;
|
|
|
|
fi
|
2012-07-18 04:13:17 +08:00
|
|
|
export srcdir
|
2010-06-03 21:24:43 +08:00
|
|
|
echo ""
|
|
|
|
|
|
|
|
TESTFILES='c0 c0tmp ctest0 ctest0_64 small small2 test0 test1
|
|
|
|
tst_calendars tst_mslp tst_mslp_64 tst_ncml tst_small tst_utf8 utf8'
|
|
|
|
|
2010-09-01 06:41:00 +08:00
|
|
|
echo "*** Testing netCDF-3 features of nccopy on ncdump/*.nc files"
|
2010-06-03 21:24:43 +08:00
|
|
|
for i in $TESTFILES ; do
|
2012-06-13 05:50:02 +08:00
|
|
|
echo "*** Testing nccopy $i.nc copy_of_$i.nc ..."
|
2010-06-03 21:24:43 +08:00
|
|
|
./nccopy $i.nc copy_of_$i.nc
|
|
|
|
./ncdump -n copy_of_$i $i.nc > tmp.cdl
|
|
|
|
./ncdump copy_of_$i.nc > copy_of_$i.cdl
|
|
|
|
diff copy_of_$i.cdl tmp.cdl
|
|
|
|
rm copy_of_$i.nc copy_of_$i.cdl tmp.cdl
|
|
|
|
done
|
2012-06-13 05:50:02 +08:00
|
|
|
echo "*** Testing nccopy -u"
|
2010-09-04 02:55:56 +08:00
|
|
|
../ncgen/ncgen -b $srcdir/tst_brecs.cdl
|
2010-09-01 06:41:00 +08:00
|
|
|
# convert record dimension to fixed-size dimension
|
|
|
|
./nccopy -u tst_brecs.nc copy_of_tst_brecs.nc
|
|
|
|
./ncdump -n copy_of_tst_brecs tst_brecs.nc | sed '/ = UNLIMITED ;/s/\(.*\) = UNLIMITED ; \/\/ (\(.*\) currently)/\1 = \2 ;/' > tmp.cdl
|
|
|
|
./ncdump copy_of_tst_brecs.nc > copy_of_tst_brecs.cdl
|
2012-05-09 03:36:27 +08:00
|
|
|
diff -b copy_of_tst_brecs.cdl tmp.cdl
|
2010-09-01 06:41:00 +08:00
|
|
|
rm copy_of_tst_brecs.cdl tmp.cdl tst_brecs.nc copy_of_tst_brecs.nc
|
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
echo "*** All nccopy tests passed!"
|
|
|
|
exit 0
|