netcdf-c/ncgen/run_nc4_tests.sh

39 lines
1.4 KiB
Bash
Raw Normal View History

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
echo "*** creating netCDF-4 file c0_4.nc from c0_4.cdl..."
./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..."
./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"
./ncgen -k nc4 $srcdir/ncf199.cdl
../ncdump/ncdump ncf199.nc > tst_ncf199.cdl
echo "*** comparing binary against source file..."
diff -b -w $srcdir/ncf199.cdl tst_ncf199.cdl
2012-11-01 04:07:11 +08:00
echo "*** creating binary files for github issue 323..."
echo "*** github issue 323 test 1"
./ncgen -k nc4 $srcdir/compound_datasize_test.cdl
../ncdump/ncdump compound_datasize_test.nc > tst_compound_datasize_test.cdl
echo "*** comparing binary against source file..."
diff -b -w $srcdir/compound_datasize_test.cdl tst_compound_datasize_test.cdl
echo "*** github issue 323 test 2"
./ncgen -k nc4 $srcdir/compound_datasize_test2.cdl
../ncdump/ncdump compound_datasize_test2.nc > tst_compound_datasize_test2.cdl
echo "*** comparing binary against source file..."
diff -b -w $srcdir/compound_datasize_test2.cdl tst_compound_datasize_test2.cdl
2010-06-03 21:24:43 +08:00
echo "*** Test successful!"
exit 0