mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-09 08:11:38 +08:00
21 lines
334 B
Bash
21 lines
334 B
Bash
#!/bin/sh
|
|
|
|
export SETX=1
|
|
|
|
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
|
|
. ../test_common.sh
|
|
|
|
export NCPATHDEBUG=1
|
|
#export NCPATHFORMAT=1
|
|
|
|
F="ber-2002-10-01.nc"
|
|
PWD=`pwd`
|
|
EXPECTED="${PWD}/expected3"
|
|
|
|
URL='[log][cache]file://'
|
|
URL="${URL}${PWD}/testdata3/$F"
|
|
rm -f ./tmp
|
|
${NCDUMP} "${URL}" >./tmp
|
|
diff -w ${EXPECTED}/$F.dmp ./tmp
|
|
exit
|