2010-06-03 21:24:43 +08:00
|
|
|
#!/bin/sh
|
2017-11-17 04:03:35 +08:00
|
|
|
# This shell script runs extra tests ncdump for netcdf-4
|
|
|
|
# Dennis Heimbigner, Ward Fisher
|
2017-03-09 08:01:10 +08:00
|
|
|
|
|
|
|
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
|
|
|
|
. ../test_common.sh
|
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
set -e
|
2012-07-18 04:13:17 +08:00
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
echo ""
|
|
|
|
echo "*** Running extra netcdf-4 tests."
|
|
|
|
|
2012-06-19 00:56:45 +08:00
|
|
|
#
|
|
|
|
# In windows, these tests fail because srcdir is prepended.
|
|
|
|
# e.g., Instead of 'ncdump ref_tst_compounds2' the file would
|
|
|
|
# contain:
|
|
|
|
# 'ncdump ./ref_tst_compounds2'. This causes the test to fail.
|
|
|
|
# But, 'srcdir' is necessary for make distcheck.
|
|
|
|
#
|
|
|
|
# Short term solution, use sed when on windows/MSYS to
|
|
|
|
# remove the './','../../ncdump'.
|
2017-11-17 04:03:35 +08:00
|
|
|
#
|
2018-03-21 11:31:31 +08:00
|
|
|
# I am undoing this because libdispatch/dwinpath.c
|
|
|
|
# should be taking care of this. If not, then that is
|
|
|
|
# what we need to fix. Alternatively, we can use top_srcdir,
|
|
|
|
# which is an absolute path
|
2017-11-17 04:03:35 +08:00
|
|
|
|
|
|
|
echo "*** running tst_string_data to create test files..."
|
|
|
|
${execdir}/tst_string_data
|
2012-06-19 00:56:45 +08:00
|
|
|
|
2018-03-21 11:31:31 +08:00
|
|
|
echo "*** dumping tst_string_data.nc to tst_string_data.cdl..."
|
|
|
|
${NCDUMP} tst_string_data.nc > tst_string_data.cdl
|
|
|
|
echo "*** comparing tst_string_data.cdl with ref_tst_string_data.cdl..."
|
|
|
|
diff -b tst_string_data.cdl ${top_srcdir}/ncdump/ref_tst_string_data.cdl
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
#echo '*** testing non-coordinate variable of same name as dimension...'
|
2018-03-21 11:31:31 +08:00
|
|
|
#${NCGEN} -v4 -b -o tst_noncoord.nc ${top_srcdir}/ncdump/ref_tst_noncoord.cdl
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2018-03-21 11:31:31 +08:00
|
|
|
echo '*** testing reference file ref_tst_compounds2.nc...'
|
|
|
|
${NCDUMP} ${top_srcdir}/ncdump/ref_tst_compounds2.nc > tst_compounds2.cdl
|
|
|
|
diff -b tst_compounds2.cdl ${top_srcdir}/ncdump/ref_tst_compounds2.cdl
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2018-03-21 11:31:31 +08:00
|
|
|
echo '*** testing reference file ref_tst_compounds3.nc...'
|
|
|
|
${NCDUMP} ${top_srcdir}/ncdump/ref_tst_compounds3.nc > tst_compounds3.cdl
|
|
|
|
diff -b tst_compounds3.cdl ${top_srcdir}/ncdump/ref_tst_compounds3.cdl
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2018-03-21 11:31:31 +08:00
|
|
|
echo '*** testing reference file ref_tst_compounds4.nc...'
|
|
|
|
${NCDUMP} ${top_srcdir}/ncdump/ref_tst_compounds4.nc > tst_compounds4.cdl
|
|
|
|
diff -b tst_compounds4.cdl ${top_srcdir}/ncdump/ref_tst_compounds4.cdl
|
2012-06-19 00:56:45 +08:00
|
|
|
|
2018-03-21 11:31:31 +08:00
|
|
|
# Exercise Jira NCF-213 bug fix
|
2014-03-09 11:41:30 +08:00
|
|
|
# rm -f tst_ncf213.cdl tst_ncf213.nc
|
2018-03-21 11:31:31 +08:00
|
|
|
${NCGEN} -b -o tst_ncf213.nc ${top_srcdir}/ncdump/ref_tst_ncf213.cdl
|
|
|
|
${NCDUMP} -s -h tst_ncf213.nc \
|
|
|
|
| sed -e 's/netcdflibversion=.*[|]/netcdflibversion=0.0.0|/' \
|
|
|
|
| sed -e 's/hdf5libversion=.*"/hdf5libversion=0.0.0"/' \
|
|
|
|
| sed -e 's|_SuperblockVersion = [0-9]|_SuperblockVersion = 0|' \
|
|
|
|
| cat >tst_ncf213.cdl
|
|
|
|
# Now compare
|
|
|
|
ok=1;
|
|
|
|
if diff -b ${top_srcdir}/ncdump/ref_tst_ncf213.cdl tst_ncf213.cdl ; then ok=1; else ok=0; fi
|
|
|
|
# cleanup
|
2014-03-09 11:41:30 +08:00
|
|
|
# rm -f tst_ncf213.cdl tst_ncf213.nc
|
2018-03-21 11:31:31 +08:00
|
|
|
if test $ok = 0 ; then
|
|
|
|
echo "*** FAIL: NCF-213 Bug Fix test"
|
|
|
|
exit 1
|
2012-06-19 00:56:45 +08:00
|
|
|
fi
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
echo "*** All ncgen and ncdump extra test output for netCDF-4 format passed!"
|
|
|
|
exit 0
|
2012-06-19 00:56:45 +08:00
|
|
|
|