mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
67 lines
1.6 KiB
Bash
Executable File
67 lines
1.6 KiB
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 $
|
|
|
|
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
|
|
. ../test_common.sh
|
|
|
|
echo "*** Testing ncgen."
|
|
set -e
|
|
|
|
# This shell script runs the ncdump tests.
|
|
# get some config.h parameters
|
|
if test -f ${top_builddir}/config.h ; then
|
|
if fgrep -e '#define ENABLE_CDF5 1' ${top_builddir}/config.h >/dev/null ; then
|
|
CDF5=1
|
|
else
|
|
CDF5=0
|
|
fi
|
|
else
|
|
echo "Cannot locate config.h"
|
|
exit 1
|
|
fi
|
|
|
|
#VALGRIND="valgrind -q --error-exitcode=2 --leak-check=full"
|
|
|
|
validateNC() {
|
|
ORIGNAME=$1
|
|
BASENAME=tst_$1_run_ncgen_tests
|
|
INFILE=$top_srcdir/ncgen/$1.cdl
|
|
TMPFILE=tst_$2.cdl
|
|
shift
|
|
shift
|
|
ARGS=$@
|
|
|
|
echo "*** generating $BASENAME.nc ***"
|
|
if test "x$VALGRIND" = x ; then
|
|
${NCGEN} $ARGS -o $BASENAME.nc $INFILE
|
|
else
|
|
${VALGRIND} ${NCGEN} $ARGS -o $BASENAME.nc $INFILE
|
|
fi
|
|
${NCDUMP} -n $ORIGNAME $BASENAME.nc | sed 's/e+0/e+/g' > $TMPFILE
|
|
echo "*** comparing $BASENAME.nc against $INFILE *** "
|
|
diff -b -w $INFILE $TMPFILE
|
|
}
|
|
|
|
echo "*** creating classic file c0_run_ncgen_tests.nc from c0.cdl..."
|
|
|
|
validateNC c0 c0 -b
|
|
|
|
echo "*** creating 64-bit offset file c0_64_run_ncgen_tests.nc from c0.cdl..."
|
|
|
|
validateNC c0 "c0_64" -k 64-bit-offset -b
|
|
|
|
if test "x$ENABLE_CDF5" = x1 ; then
|
|
|
|
echo "*** creating 64-bit data file c5.nc from c5.cdl..."
|
|
${NCGEN} -k 64-bit-data -b -o tst_c5_run_ncgen_tests.nc $top_srcdir/ncgen/c5.cdl
|
|
if [ ! -f tst_c5_run_ncgen_tests.nc ]; then
|
|
echo "Failure."
|
|
exit 1
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "*** Test successful!"
|
|
exit 0
|