mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
18 lines
625 B
Bash
Executable File
18 lines
625 B
Bash
Executable File
#!/bin/sh
|
|
# This shell script tests ncdump -t option for CF calendar attributes
|
|
# $Id $
|
|
|
|
set -e
|
|
echo ""
|
|
echo "*** Testing ncdump -t output for times with CF calendar attribute"
|
|
echo "*** creating netcdf file tst_calendars.nc from tst_calendars.cdl..."
|
|
../ncgen/ncgen -b -o tst_calendars.nc $srcdir/tst_calendars.cdl
|
|
echo "*** creating tst_isotimes.cdl from tst_calendars.nc..."
|
|
./ncdump -n tst_times -t tst_calendars.nc > tst_times.cdl
|
|
echo "*** comparing tst_times.cdl with ref_times.cdl..."
|
|
diff tst_times.cdl $srcdir/ref_times.cdl
|
|
|
|
echo
|
|
echo "*** All ncdump test output for -t option with CF calendar atts passed!"
|
|
exit 0
|