2015-10-23 04:09:19 +08:00
|
|
|
#!/bin/sh
|
2017-03-09 08:01:10 +08:00
|
|
|
|
|
|
|
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
|
|
|
|
|
|
|
|
. ../test_common.sh
|
|
|
|
|
2015-10-23 04:09:19 +08:00
|
|
|
#
|
|
|
|
# Moving some netcdf-4 only tests here, out of tst_nccopy and run_utf8_tests.
|
|
|
|
# Without this, the tests fail when netcdf-4 is disabled.
|
|
|
|
|
|
|
|
set -e
|
2017-03-09 08:01:10 +08:00
|
|
|
|
2015-10-23 04:09:19 +08:00
|
|
|
echo ""
|
|
|
|
|
|
|
|
rm -f utf8.nc utf8.cdl
|
|
|
|
echo "*** creating enhanced file with utf8 characters..."
|
2017-03-09 08:01:10 +08:00
|
|
|
${NCGEN} -4 -b -o utf8.nc ${srcdir}/ref_tst_utf8_4.cdl
|
2015-10-23 04:09:19 +08:00
|
|
|
echo "*** dump and compare utf8 output..."
|
2017-03-09 08:01:10 +08:00
|
|
|
${NCDUMP} utf8.nc > utf8.cdl
|
2015-10-23 04:09:19 +08:00
|
|
|
diff -b -w utf8.cdl ${srcdir}/ref_tst_utf8_4.cdl
|