netcdf-c/ncgen3/run_tests.sh
2010-06-03 13:24:43 +00:00

14 lines
389 B
Bash
Executable File

#!/bin/sh
# This shell script runs the ncgen3 tests.
# $Id: run_tests.sh,v 1.9 2009/09/24 18:19:11 dmh Exp $
echo "*** Testing ncgen3."
set -e
echo "*** creating classic file c0.nc from c0.cdl..."
./ncgen3 -b -o c0.nc $srcdir/c0.cdl
echo "*** creating 64-bit offset file c0_64.nc from c0.cdl..."
./ncgen3 -k 64-bit-offset -b -o c0_64.nc $srcdir/c0.cdl
echo "*** Test successful!"
exit 0