mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-05 16:20:10 +08:00
31 lines
872 B
Bash
Executable File
31 lines
872 B
Bash
Executable File
#!/bin/sh
|
|
# This shell script runs an ncgen buf in handling character _Fillvalue.
|
|
srcdir=`dirname $0`
|
|
cd $srcdir
|
|
srcdir=`pwd`
|
|
|
|
# compute the build directory
|
|
builddir=`pwd`/..
|
|
# Hack for CYGWIN
|
|
cd $srcdir
|
|
if [ `uname | cut -d "_" -f 1` = "MINGW32" ]; then
|
|
srcdir=`pwd | sed 's/\/c\//c:\//g'`
|
|
builddir="$srcdir"/..
|
|
fi
|
|
|
|
|
|
set -e
|
|
echo ""
|
|
echo "*** Testing char _Fillvalue bug fix."
|
|
|
|
# echo "*** Create tst_charfill.nc from tst_charfill.cdl..."
|
|
rm -f tst_charfill.nc tmp_tst_charfill.cdl
|
|
../ncgen/ncgen -b -o tst_charfill.nc $srcdir/tst_charfill.cdl
|
|
# echo "*** dumping tst_charfill.nc to tmp_tst_charfill.cdl..."
|
|
./ncdump tst_charfill.nc > tmp_tst_charfill.cdl
|
|
# echo "*** comparing tmp_tst_charfill.cdl with ref_tst_charfill.cdl..."
|
|
diff -b tmp_tst_charfill.cdl $srcdir/ref_tst_charfill.cdl
|
|
|
|
echo "*** All char _Fillvalue bug test for netCDF-4 format passed!"
|
|
exit 0
|