You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
386 B
17 lines
386 B
#!/bin/sh
|
|
|
|
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
|
|
. ../test_common.sh
|
|
|
|
# This shell script tests bug reported in github issue
|
|
# https://github.com/Unidata/netcdf-c/issues/1826
|
|
|
|
set -e
|
|
|
|
echo ""
|
|
echo "*** Testing data conversions when a variable has fill value but never written"
|
|
|
|
${NCGEN} -4 -b -o tmp_fillonly.nc $srcdir/ref_fillonly.cdl
|
|
${execdir}/tst_fillonly${ext}
|
|
|
|
exit 0
|
|
|