mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-05 16:20:10 +08:00
48 lines
1.4 KiB
Bash
Executable File
48 lines
1.4 KiB
Bash
Executable File
#!/bin/sh
|
|
# For a netCDF-3 build, test nccopy on netCDF files in this directory
|
|
|
|
srcdir=`dirname $0`
|
|
cd $srcdir
|
|
srcdir=`pwd`
|
|
|
|
# compute the build directory
|
|
builddir=`pwd`/..
|
|
# Hack for CYGWIN
|
|
cd $srcdir
|
|
if [ `uname | cut -d "_" -f 1` = "MINGW32" ]; then
|
|
srcdir=`pwd | sed 's/\/c\//c:\//g'`
|
|
builddir="$srcdir"/..
|
|
fi
|
|
|
|
|
|
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
|