mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
35 lines
1.2 KiB
Bash
Executable File
35 lines
1.2 KiB
Bash
Executable File
#!/bin/sh
|
|
if test "x$SETX" = x1 ; then echo "file=$0"; set -x ; fi
|
|
# For a netCDF-3 build, test nccopy on netCDF files in this directory
|
|
|
|
set -e
|
|
if test "x$srcdir" = "x"; then
|
|
srcdir=`dirname $0`;
|
|
fi
|
|
export srcdir
|
|
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'
|
|
|
|
echo "*** Testing netCDF-3 features of nccopy on ncdump/*.nc files"
|
|
for i in $TESTFILES ; do
|
|
echo "*** Testing nccopy $i.nc copy_of_$i.nc ..."
|
|
./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
|
|
echo "*** Testing nccopy -u"
|
|
../ncgen/ncgen -b $srcdir/tst_brecs.cdl
|
|
# 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
|
|
diff -b copy_of_tst_brecs.cdl tmp.cdl
|
|
rm copy_of_tst_brecs.cdl tmp.cdl tst_brecs.nc copy_of_tst_brecs.nc
|
|
|
|
echo "*** All nccopy tests passed!"
|
|
exit 0
|