mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-11 16:40:36 +08:00
27 lines
476 B
Bash
27 lines
476 B
Bash
|
#!/bin/sh
|
||
|
# This shell script tests the output several previous tests.
|
||
|
# $Id: tst_output.sh,v 1.17 2010/05/14 16:21:15 ed Exp $
|
||
|
|
||
|
FILE=tst_interops2.h4
|
||
|
|
||
|
ECODE=0
|
||
|
|
||
|
echo ""
|
||
|
echo "*** Testing extended file format output."
|
||
|
set -e
|
||
|
|
||
|
echo "Test extended format output for a HDF4 file"
|
||
|
rm -f tmp
|
||
|
../ncdump/ncdump -K $FILE >tmp
|
||
|
if ! fgrep 'HDF4 mode=00001000' <tmp ; then
|
||
|
TMP=`cat tmp`
|
||
|
echo "*** Fail: extended format for an HDF4 file: result=" $TMP
|
||
|
ECODE=1
|
||
|
fi
|
||
|
|
||
|
rm -f tmp
|
||
|
|
||
|
exit $ECODE
|
||
|
|
||
|
|