mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
34 lines
1.2 KiB
Bash
Executable File
34 lines
1.2 KiB
Bash
Executable File
#!/bin/sh
|
|
# For a netCDF-3 build, test nccopy on netCDF files in this directory
|
|
|
|
set -e
|
|
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 "*** copy $i.nc to 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
|
|
echo "*** compare " with copy_of_$i.cdl
|
|
diff copy_of_$i.cdl tmp.cdl
|
|
rm copy_of_$i.nc copy_of_$i.cdl tmp.cdl
|
|
done
|
|
echo "*** Test nccopy -u"
|
|
echo "*** creating tst_brecs.nc from tst_brecs.cdl..."
|
|
../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
|
|
echo "*** compare result of nccopy -u with expected result ..."
|
|
diff copy_of_tst_brecs.cdl tmp.cdl
|
|
rm copy_of_tst_brecs.cdl tmp.cdl tst_brecs.nc copy_of_tst_brecs.nc
|
|
|
|
echo
|
|
echo "*** All nccopy tests passed!"
|
|
exit 0
|