mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
14 lines
386 B
Bash
Executable File
14 lines
386 B
Bash
Executable File
#!/bin/sh
|
|
# This shell script runs the ncgen tests.
|
|
# $Id: run_tests.sh,v 1.10 2010/04/04 22:06:03 dmh Exp $
|
|
|
|
echo "*** Testing ncgen."
|
|
set -e
|
|
echo "*** creating classic file c0.nc from c0.cdl..."
|
|
./ncgen -b -o c0.nc $srcdir/c0.cdl
|
|
echo "*** creating 64-bit offset file c0_64.nc from c0.cdl..."
|
|
./ncgen -k 64-bit-offset -b -o c0_64.nc $srcdir/c0.cdl
|
|
|
|
echo "*** Test successful!"
|
|
exit 0
|