2010-06-03 21:24:43 +08:00
|
|
|
#!/bin/sh
|
|
|
|
# This shell script runs the ncdump tests.
|
|
|
|
# $Id: run_nc4_tests.sh,v 1.4 2010/05/18 20:05:23 dmh Exp $
|
|
|
|
|
2015-11-20 04:44:07 +08:00
|
|
|
if test "x$srcdir" = x ; then srcdir="."; fi
|
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
echo "*** Testing ncgen for netCDF-4."
|
|
|
|
set -e
|
2015-11-20 04:44:07 +08:00
|
|
|
|
2013-11-18 05:26:14 +08:00
|
|
|
echo "*** creating netCDF-4 file c0_4.nc from c0_4.cdl..."
|
2014-12-29 13:42:05 +08:00
|
|
|
./ncgen -k nc4 -b -o c0_4.nc $srcdir/c0_4.cdl
|
2015-11-20 04:44:07 +08:00
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
echo "*** creating netCDF-4 classic model file c0_4c.nc from c0.cdl..."
|
2014-12-29 13:42:05 +08:00
|
|
|
./ncgen -k nc7 -b -o c0_4c.nc $srcdir/c0.cdl
|
2015-11-20 04:44:07 +08:00
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
echo "*** creating C code for CAM file ref_camrun.cdl..."
|
|
|
|
./ncgen -lc $srcdir/ref_camrun.cdl >ref_camrun.c
|
|
|
|
|
2012-11-01 04:07:11 +08:00
|
|
|
echo "*** test for jira NCF-199 bug"
|
2014-12-29 13:42:05 +08:00
|
|
|
./ncgen -k nc4 $srcdir/ncf199.cdl
|
2012-11-01 04:07:11 +08:00
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
echo "*** Test successful!"
|
|
|
|
exit 0
|