mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-17 16:50:18 +08:00
20 lines
311 B
Bash
20 lines
311 B
Bash
#!/bin/sh
|
|
|
|
export SETX=1
|
|
|
|
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
|
|
. ../test_common.sh
|
|
|
|
export NCPATHDEBUG=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
|