fixed cmake build for hdf4_tests

This commit is contained in:
Ed Hartnett 2018-03-05 05:38:00 -07:00
parent 4e646e03f6
commit a5713f7ac0
3 changed files with 4 additions and 55 deletions

View File

@ -1,26 +0,0 @@
#!/bin/sh
# Run test_chunk_hdf4 passing ${srcdir}
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
. ../test_common.sh
set -e
echo ""
echo "*** Testing hdf4 chunking..."
if test "x${srcdir}" = "x" ; then
srcdir="."
fi
if ./tst_chunk_hdf4 ; then
echo "***SUCCESS!! tst_chunk_hdf4"
else
RES=$?
echo "***FAIL: tst_chunk_hdf4"
exit $RES
fi
exit 0

View File

@ -1,5 +1,8 @@
#!/bin/sh
# This shell script tests the output several previous tests.
# This shell script runs tst_interops2 to create a HDF4 file, and read
# it with netCDF. Then the script runs ncdump on the HDF4 file.
# Ed Hartnett
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
@ -25,7 +28,6 @@ echo "*** Fail: extended format for an HDF4 file: result=" $TMP
ECODE=1
fi
# Clean up.
rm -f tmp_tst_formatx_hdf4
# Exit if there was a failure.

View File

@ -1,27 +0,0 @@
#!/bin/bash
# This shell script tests that an hdf4 file can be read a
# variable at a time.
#
# this was added in support of https://github.com/Unidata/netcdf-c/issues/264
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
. ../test_common.sh
FILE=tst_interops2.h4
set -e
echo ""
echo "*** Testing reading an individual variable from an HDF4 file."
${NCDUMP} -v hdf4_dataset_type_0 $FILE
${NCDUMP} -v hdf4_dataset_type_1 $FILE
${NCDUMP} -v hdf4_dataset_type_2 $FILE
${NCDUMP} -v hdf4_dataset_type_3 $FILE
${NCDUMP} -v hdf4_dataset_type_4 $FILE
${NCDUMP} -v hdf4_dataset_type_5 $FILE
${NCDUMP} -v hdf4_dataset_type_6 $FILE
${NCDUMP} -v hdf4_dataset_type_7 $FILE
echo "*** Success."