mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
Merge branch 'develop' into file_locking_squash_2
This commit is contained in:
commit
7391f5f26c
216
bin/release
216
bin/release
@ -39,7 +39,7 @@ USAGE()
|
||||
{
|
||||
cat << EOF
|
||||
Usage: $0 -d <dir> [--docver BRANCHNAME] [-h] [--nocheck] [--private] <methods> ...
|
||||
-d DIR The name of the directory where the releas(es) should be
|
||||
-d DIR The name of the directory where the releas(es) should be
|
||||
placed.
|
||||
--docver BRANCHNAME This is added for 1.8 and beyond to get the correct
|
||||
version of documentation files from the hdf5docs
|
||||
@ -53,10 +53,10 @@ The other command-line options are the names of the programs to use
|
||||
for compressing the resulting tar archive (if none are given then
|
||||
"tar" is assumed):
|
||||
|
||||
tar -- use tar and don't do any compressing.
|
||||
gzip -- use gzip with "-9" and append ".gz" to the output name.
|
||||
tar -- use tar and don't do any compressing.
|
||||
gzip -- use gzip with "-9" and append ".gz" to the output name.
|
||||
bzip2 -- use bzip2 with "-9" and append ".bz2" to the output name.
|
||||
zip -- convert all text files to DOS style and form a zip file for Windows use.
|
||||
zip -- convert all text files to DOS style and form a zip file for Windows use.
|
||||
cmake-tgz -- create a tar file using the gzip default level with a build-unix.sh
|
||||
command file and all other CMake files needed to build HDF5 source
|
||||
using CMake on unix machines.
|
||||
@ -122,8 +122,8 @@ EOF
|
||||
tar2zip()
|
||||
{
|
||||
if [ $# -ne 3 ]; then
|
||||
echo "usage: tar2zip <tarfilename> <zipfilename>"
|
||||
return 1
|
||||
echo "usage: tar2zip <tarfilename> <zipfilename>"
|
||||
return 1
|
||||
fi
|
||||
ztmpdir=/tmp/ztmpdir$$
|
||||
mkdir -p $ztmpdir
|
||||
@ -135,10 +135,10 @@ tar2zip()
|
||||
(cd $ztmpdir; tar xf -) < $tarfile
|
||||
# sanity check
|
||||
if [ ! -d $ztmpdir/$version ]; then
|
||||
echo "untar did not create $ztmpdir/$version source dir"
|
||||
# cleanup
|
||||
rm -rf $ztmpdir
|
||||
return 1
|
||||
echo "untar did not create $ztmpdir/$version source dir"
|
||||
# cleanup
|
||||
rm -rf $ztmpdir
|
||||
return 1
|
||||
fi
|
||||
# step 2: convert text files
|
||||
# There maybe a simpler way to do this.
|
||||
@ -147,11 +147,11 @@ tar2zip()
|
||||
# -q quiet mode
|
||||
# grep redirect output to /dev/null because -q or -s are not portable.
|
||||
find $ztmpdir/$version | \
|
||||
while read inf; do \
|
||||
if file $inf | grep "$inf\: .*text" > /dev/null 2>&1 ; then \
|
||||
unix2dos -q -k $inf; \
|
||||
fi\
|
||||
done
|
||||
while read inf; do \
|
||||
if file $inf | grep "$inf\: .*text" > /dev/null 2>&1 ; then \
|
||||
unix2dos -q -k $inf; \
|
||||
fi\
|
||||
done
|
||||
# step 3: make zipball
|
||||
# -9 maximum compression
|
||||
# -y Store symbolic links as such in the zip archive
|
||||
@ -202,8 +202,8 @@ tar2zip()
|
||||
tar2cmakezip()
|
||||
{
|
||||
if [ $# -ne 3 ]; then
|
||||
echo "usage: tar2cmakezip <tarfilename> <zipfilename>"
|
||||
return 1
|
||||
echo "usage: tar2cmakezip <tarfilename> <zipfilename>"
|
||||
return 1
|
||||
fi
|
||||
cmziptmpdir=/tmp/cmziptmpdir$$
|
||||
cmziptmpsubdir=$cmziptmpdir/CMake-$HDF5_VERS
|
||||
@ -216,10 +216,10 @@ tar2cmakezip()
|
||||
(cd $cmziptmpsubdir; tar xf -) < $tarfile
|
||||
# sanity check
|
||||
if [ ! -d $cmziptmpsubdir/$version ]; then
|
||||
echo "untar did not create $cmziptmpsubdir/$version source dir"
|
||||
# cleanup
|
||||
rm -rf $cmziptmpdir
|
||||
return 1
|
||||
echo "untar did not create $cmziptmpsubdir/$version source dir"
|
||||
# cleanup
|
||||
rm -rf $cmziptmpdir
|
||||
return 1
|
||||
fi
|
||||
|
||||
# step 2: add batch file for building CMake on window
|
||||
@ -245,11 +245,11 @@ tar2cmakezip()
|
||||
# -q quiet mode
|
||||
# grep redirect output to /dev/null because -q or -s are not portable.
|
||||
find $cmziptmpsubdir/$version | \
|
||||
while read inf; do \
|
||||
if file $inf | grep "$inf\: .*text" > /dev/null 2>&1 ; then \
|
||||
unix2dos -q -k $inf; \
|
||||
fi\
|
||||
done
|
||||
while read inf; do \
|
||||
if file $inf | grep "$inf\: .*text" > /dev/null 2>&1 ; then \
|
||||
unix2dos -q -k $inf; \
|
||||
fi\
|
||||
done
|
||||
|
||||
# step 3: make zipball
|
||||
# -9 maximum compression
|
||||
@ -301,8 +301,8 @@ tar2cmakezip()
|
||||
tar2cmaketgz()
|
||||
{
|
||||
if [ $# -ne 3 ]; then
|
||||
echo "usage: tar2cmaketgz <tarfilename> <tgzfilename>"
|
||||
return 1
|
||||
echo "usage: tar2cmaketgz <tarfilename> <tgzfilename>"
|
||||
return 1
|
||||
fi
|
||||
cmgztmpdir=/tmp/cmgztmpdir$$
|
||||
cmgztmpsubdir=$cmgztmpdir/CMake-$HDF5_VERS
|
||||
@ -315,10 +315,10 @@ tar2cmaketgz()
|
||||
(cd $cmgztmpsubdir; tar xf -) < $tarfile
|
||||
# sanity check
|
||||
if [ ! -d $cmgztmpsubdir/$version ]; then
|
||||
echo "untar did not create $cmgztmpsubdir/$version source dir"
|
||||
# cleanup
|
||||
rm -rf $cmgztmpdir
|
||||
return 1
|
||||
echo "untar did not create $cmgztmpsubdir/$version source dir"
|
||||
# cleanup
|
||||
rm -rf $cmgztmpdir
|
||||
return 1
|
||||
fi
|
||||
|
||||
|
||||
@ -384,8 +384,8 @@ tar2cmaketgz()
|
||||
tar2hpccmaketgz()
|
||||
{
|
||||
if [ $# -ne 3 ]; then
|
||||
echo "usage: tar2hpccmaketgz <tarfilename> <tgzfilename>"
|
||||
return 1
|
||||
echo "usage: tar2hpccmaketgz <tarfilename> <tgzfilename>"
|
||||
return 1
|
||||
fi
|
||||
cmgztmpdir=/tmp/cmgztmpdir$$
|
||||
cmgztmpsubdir=$cmgztmpdir/HPC-CMake-$HDF5_VERS
|
||||
@ -398,10 +398,10 @@ tar2hpccmaketgz()
|
||||
(cd $cmgztmpsubdir; tar xf -) < $tarfile
|
||||
# sanity check
|
||||
if [ ! -d $cmgztmpsubdir/$version ]; then
|
||||
echo "untar did not create $cmgztmpsubdir/$version source dir"
|
||||
# cleanup
|
||||
rm -rf $cmgztmpdir
|
||||
return 1
|
||||
echo "untar did not create $cmgztmpsubdir/$version source dir"
|
||||
# cleanup
|
||||
rm -rf $cmgztmpdir
|
||||
return 1
|
||||
fi
|
||||
|
||||
|
||||
@ -442,7 +442,7 @@ check=yes
|
||||
release_date=`date +%F`
|
||||
today=`date +%Y%m%d`
|
||||
pmode='no'
|
||||
tmpdir="../#release_tmp.$$" # tmp work directory
|
||||
tmpdir="../#release_tmp.$$" # tmp work directory
|
||||
DOC_URL=https://git@bitbucket.hdfgroup.org/scm/hdffv/hdf5doc.git
|
||||
CPPLUS_RM_NAME=cpplus_RM
|
||||
MAINT_MODE_ENABLED=""
|
||||
@ -459,11 +459,11 @@ fi
|
||||
RESTORE_VERSION()
|
||||
{
|
||||
if [ X-${VERS_OLD} != X- ]; then
|
||||
echo restoring version information back to $VERS_OLD
|
||||
rm -f config/lt_vers.am
|
||||
cp $tmpdir/lt_vers.am config/lt_vers.am
|
||||
bin/h5vers -s $VERS_OLD
|
||||
VERS_OLD=
|
||||
echo restoring version information back to $VERS_OLD
|
||||
rm -f config/lt_vers.am
|
||||
cp $tmpdir/lt_vers.am config/lt_vers.am
|
||||
bin/h5vers -s $VERS_OLD
|
||||
VERS_OLD=
|
||||
fi
|
||||
}
|
||||
|
||||
@ -473,32 +473,32 @@ while [ -n "$1" ]; do
|
||||
arg=$1
|
||||
shift
|
||||
case "$arg" in
|
||||
-d)
|
||||
DEST=$1
|
||||
shift
|
||||
;;
|
||||
--nocheck)
|
||||
check=no
|
||||
;;
|
||||
-h)
|
||||
USAGE
|
||||
exit 0
|
||||
;;
|
||||
--private)
|
||||
pmode=yes
|
||||
;;
|
||||
-d)
|
||||
DEST=$1
|
||||
shift
|
||||
;;
|
||||
--nocheck)
|
||||
check=no
|
||||
;;
|
||||
-h)
|
||||
USAGE
|
||||
exit 0
|
||||
;;
|
||||
--private)
|
||||
pmode=yes
|
||||
;;
|
||||
--docver)
|
||||
DOCVERSION=$1
|
||||
shift
|
||||
;;
|
||||
-*)
|
||||
echo "Unknown switch: $arg" 1>&2
|
||||
USAGE
|
||||
exit 1
|
||||
;;
|
||||
*)
|
||||
methods="$methods $arg"
|
||||
;;
|
||||
-*)
|
||||
echo "Unknown switch: $arg" 1>&2
|
||||
USAGE
|
||||
exit 1
|
||||
;;
|
||||
*)
|
||||
methods="$methods $arg"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
@ -553,7 +553,7 @@ if [ "X$fail" = "Xyes" ]; then
|
||||
echo "--nocheck argument to the bin/release command."
|
||||
exit 1
|
||||
else
|
||||
echo "Continuing anyway..."
|
||||
echo "Continuing anyway..."
|
||||
fi
|
||||
fi
|
||||
|
||||
@ -595,61 +595,61 @@ MD5file=$HDF5_VERS.md5
|
||||
cp /dev/null $DEST/$MD5file
|
||||
for comp in $methods; do
|
||||
case $comp in
|
||||
tar)
|
||||
cp -p $tmpdir/$HDF5_VERS.tar $DEST/$HDF5_VERS.tar
|
||||
(cd $DEST; md5sum $HDF5_VERS.tar >> $MD5file)
|
||||
;;
|
||||
gzip)
|
||||
test "$verbose" && echo " Running gzip..." 1>&2
|
||||
gzip -9 <$tmpdir/$HDF5_VERS.tar >$DEST/$HDF5_VERS.tar.gz
|
||||
(cd $DEST; md5sum $HDF5_VERS.tar.gz >> $MD5file)
|
||||
;;
|
||||
tar)
|
||||
cp -p $tmpdir/$HDF5_VERS.tar $DEST/$HDF5_VERS.tar
|
||||
(cd $DEST; md5sum $HDF5_VERS.tar >> $MD5file)
|
||||
;;
|
||||
gzip)
|
||||
test "$verbose" && echo " Running gzip..." 1>&2
|
||||
gzip -9 <$tmpdir/$HDF5_VERS.tar >$DEST/$HDF5_VERS.tar.gz
|
||||
(cd $DEST; md5sum $HDF5_VERS.tar.gz >> $MD5file)
|
||||
;;
|
||||
cmake-tgz)
|
||||
test "$verbose" && echo " Creating CMake tar.gz file..." 1>&2
|
||||
tar2cmaketgz $HDF5_VERS $tmpdir/$HDF5_VERS.tar $DEST/CMake-$HDF5_VERS.tar.gz 1>&2
|
||||
(cd $DEST; md5sum CMake-$HDF5_VERS.tar.gz >> $MD5file)
|
||||
test "$verbose" && echo " Creating CMake tar.gz file..." 1>&2
|
||||
tar2cmaketgz $HDF5_VERS $tmpdir/$HDF5_VERS.tar $DEST/CMake-$HDF5_VERS.tar.gz 1>&2
|
||||
(cd $DEST; md5sum CMake-$HDF5_VERS.tar.gz >> $MD5file)
|
||||
;;
|
||||
hpc-cmake-tgz)
|
||||
test "$verbose" && echo " Creating HPC-CMake tar.gz file..." 1>&2
|
||||
tar2hpccmaketgz $HDF5_VERS $tmpdir/$HDF5_VERS.tar $DEST/HPC-CMake-$HDF5_VERS.tar.gz 1>&2
|
||||
(cd $DEST; md5sum HPC-CMake-$HDF5_VERS.tar.gz >> $MD5file)
|
||||
test "$verbose" && echo " Creating HPC-CMake tar.gz file..." 1>&2
|
||||
tar2hpccmaketgz $HDF5_VERS $tmpdir/$HDF5_VERS.tar $DEST/HPC-CMake-$HDF5_VERS.tar.gz 1>&2
|
||||
(cd $DEST; md5sum HPC-CMake-$HDF5_VERS.tar.gz >> $MD5file)
|
||||
;;
|
||||
bzip2)
|
||||
test "$verbose" && echo " Running bzip2..." 1>&2
|
||||
bzip2 -9 <$tmpdir/$HDF5_VERS.tar >$DEST/$HDF5_VERS.tar.bz2
|
||||
(cd $DEST; md5sum $HDF5_VERS.tar.bz2 >> $MD5file)
|
||||
;;
|
||||
zip)
|
||||
test "$verbose" && echo " Creating zip ball..." 1>&2
|
||||
tar2zip $HDF5_VERS $tmpdir/$HDF5_VERS.tar $DEST/$HDF5_VERS.zip 1>&2
|
||||
(cd $DEST; md5sum $HDF5_VERS.zip >> $MD5file)
|
||||
;;
|
||||
bzip2)
|
||||
test "$verbose" && echo " Running bzip2..." 1>&2
|
||||
bzip2 -9 <$tmpdir/$HDF5_VERS.tar >$DEST/$HDF5_VERS.tar.bz2
|
||||
(cd $DEST; md5sum $HDF5_VERS.tar.bz2 >> $MD5file)
|
||||
;;
|
||||
zip)
|
||||
test "$verbose" && echo " Creating zip ball..." 1>&2
|
||||
tar2zip $HDF5_VERS $tmpdir/$HDF5_VERS.tar $DEST/$HDF5_VERS.zip 1>&2
|
||||
(cd $DEST; md5sum $HDF5_VERS.zip >> $MD5file)
|
||||
;;
|
||||
cmake-zip)
|
||||
test "$verbose" && echo " Creating CMake-zip ball..." 1>&2
|
||||
tar2cmakezip $HDF5_VERS $tmpdir/$HDF5_VERS.tar $DEST/CMake-$HDF5_VERS.zip 1>&2
|
||||
(cd $DEST; md5sum CMake-$HDF5_VERS.zip >> $MD5file)
|
||||
;;
|
||||
doc)
|
||||
doc)
|
||||
if [ "${DOCVERSION}" = "" ]; then
|
||||
DOCVERSION=master
|
||||
fi
|
||||
test "$verbose" && echo " Creating docs..." 1>&2
|
||||
# Check out docs from git repo
|
||||
(cd $tmpdir; git clone -q $DOC_URL ${DOCVERSION} > /dev/null) || exit 1
|
||||
test "$verbose" && echo " Creating docs..." 1>&2
|
||||
# Check out docs from git repo
|
||||
(cd $tmpdir; git clone -q $DOC_URL ${DOCVERSION} > /dev/null) || exit 1
|
||||
# Create doxygen C++ RM
|
||||
(cd c++/src && doxygen cpp_doc_config > /dev/null ) || exit 1
|
||||
# Replace version of C++ RM with just-created version
|
||||
rm -rf $tmpdir/${DOCVERSION}/html/$CPPLUS_RM_NAME || exit 1
|
||||
mv c++/src/$CPPLUS_RM_NAME $tmpdir/${DOCVERSION}/html/$CPPLUS_RM_NAME || exit 1
|
||||
(cd c++/src && doxygen cpp_doc_config > /dev/null ) || exit 1
|
||||
# Replace version of C++ RM with just-created version
|
||||
rm -rf $tmpdir/${DOCVERSION}/html/$CPPLUS_RM_NAME || exit 1
|
||||
mv c++/src/$CPPLUS_RM_NAME $tmpdir/${DOCVERSION}/html/$CPPLUS_RM_NAME || exit 1
|
||||
# Compress the docs and move them to the release area
|
||||
mv $tmpdir/${DOCVERSION} $tmpdir/${HDF5_VERS}_docs || exit 1
|
||||
(cd $tmpdir && tar cf ${HDF5_VERS}_docs.tar ${HDF5_VERS}_docs) || exit 1
|
||||
mv $tmpdir/${HDF5_VERS}_docs.tar $DEST || exit 1
|
||||
;;
|
||||
*)
|
||||
echo "***Error*** Unknown method $comp"
|
||||
exit 1
|
||||
;;
|
||||
mv $tmpdir/${DOCVERSION} $tmpdir/${HDF5_VERS}_docs || exit 1
|
||||
(cd $tmpdir && tar cf ${HDF5_VERS}_docs.tar ${HDF5_VERS}_docs) || exit 1
|
||||
mv $tmpdir/${HDF5_VERS}_docs.tar $DEST || exit 1
|
||||
;;
|
||||
*)
|
||||
echo "***Error*** Unknown method $comp"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
|
@ -138,7 +138,7 @@ static const H5AC_class_t *const H5AC_class_s[] = {
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5AC_init
|
||||
*
|
||||
* Purpose: Initialize the interface from some other layer.
|
||||
* Purpose: Initialize the interface from some other layer.
|
||||
*
|
||||
* Return: Success: non-negative
|
||||
* Failure: negative
|
||||
|
@ -295,7 +295,7 @@ CATCH
|
||||
|
||||
END_FUNC(PKG) /* end H5EA__iblock_debug() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5EA__sblock_debug
|
||||
*
|
||||
|
@ -1436,7 +1436,7 @@ done:
|
||||
* constant H5P_DEFAULT). The bytes to be written come from the
|
||||
* buffer BUF.
|
||||
*
|
||||
* Return: SNon-negative on success/Negative on failure
|
||||
* Return: Non-negative on success/Negative on failure
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
120
src/H5I.c
120
src/H5I.c
@ -33,9 +33,9 @@
|
||||
#include "H5ACprivate.h" /* Metadata cache */
|
||||
#include "H5CXprivate.h" /* API Contexts */
|
||||
#include "H5Dprivate.h" /* Datasets */
|
||||
#include "H5Eprivate.h" /* Error handling */
|
||||
#include "H5Fprivate.h" /* File access */
|
||||
#include "H5FLprivate.h" /* Free Lists */
|
||||
#include "H5Eprivate.h" /* Error handling */
|
||||
#include "H5Fprivate.h" /* File access */
|
||||
#include "H5FLprivate.h" /* Free Lists */
|
||||
#include "H5Gprivate.h" /* Groups */
|
||||
#include "H5Ipkg.h" /* IDs */
|
||||
#include "H5MMprivate.h" /* Memory management */
|
||||
@ -145,7 +145,7 @@ static int H5I__iterate_pub_cb(void *obj, hid_t id, void *udata);
|
||||
static int H5I__find_id_cb(void *_item, void *_key, void *_udata);
|
||||
static int H5I__id_dump_cb(void *_item, void *_key, void *_udata);
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_term_package
|
||||
*
|
||||
@ -197,7 +197,7 @@ H5I_term_package(void)
|
||||
FUNC_LEAVE_NOAPI(n)
|
||||
} /* end H5I_term_package() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Iregister_type
|
||||
*
|
||||
@ -278,7 +278,7 @@ done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Iregister_type() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_register_type
|
||||
*
|
||||
@ -339,7 +339,7 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I_register_type() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Itype_exists
|
||||
*
|
||||
@ -371,7 +371,7 @@ done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Itype_exists() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Inmembers
|
||||
*
|
||||
@ -421,7 +421,7 @@ done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Inmembers() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_nmembers
|
||||
*
|
||||
@ -458,7 +458,7 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I_nmembers() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I__unwrap
|
||||
*
|
||||
@ -502,7 +502,7 @@ H5I__unwrap(void *obj_ptr, H5I_type_t type)
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I__unwrap() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Iclear_type
|
||||
*
|
||||
@ -535,7 +535,7 @@ done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Iclear_type() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_clear_type
|
||||
*
|
||||
@ -577,7 +577,7 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I_clear_type() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I__clear_type_cb
|
||||
*
|
||||
@ -643,7 +643,7 @@ H5I__clear_type_cb(void *_id, void H5_ATTR_UNUSED *key, void *_udata)
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I__clear_type_cb() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Idestroy_type
|
||||
*
|
||||
@ -677,7 +677,7 @@ done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Idestroy_type() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I__destroy_type
|
||||
*
|
||||
@ -729,7 +729,7 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I__destroy_type() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Iregister
|
||||
*
|
||||
@ -757,7 +757,7 @@ done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Iregister() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_register
|
||||
*
|
||||
@ -819,7 +819,7 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I_register() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_register_using_existing_id
|
||||
*
|
||||
@ -890,7 +890,7 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I_register_using_existing_id() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_subst
|
||||
*
|
||||
@ -927,7 +927,7 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I_subst() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_object
|
||||
*
|
||||
@ -957,7 +957,7 @@ H5I_object(hid_t id)
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I_object() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Iobject_verify
|
||||
*
|
||||
@ -991,7 +991,7 @@ done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Iobject_verify() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_object_verify
|
||||
*
|
||||
@ -1026,7 +1026,7 @@ H5I_object_verify(hid_t id, H5I_type_t id_type)
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* H5I_object_verify() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_get_type
|
||||
*
|
||||
@ -1060,7 +1060,7 @@ H5I_get_type(hid_t id)
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I_get_type() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Iget_type
|
||||
*
|
||||
@ -1087,13 +1087,13 @@ H5Iget_type(hid_t id)
|
||||
ret_value = H5I_get_type(id);
|
||||
|
||||
if(ret_value <= H5I_BADID || (int)ret_value >= H5I_next_type || NULL == H5I_object(id))
|
||||
HGOTO_DONE(H5I_BADID);
|
||||
HGOTO_DONE(H5I_BADID);
|
||||
|
||||
done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Iget_type() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_is_file_object
|
||||
*
|
||||
@ -1144,7 +1144,7 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value);
|
||||
} /* H5I_is_file_object() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Iremove_verify
|
||||
*
|
||||
@ -1180,7 +1180,7 @@ done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Iremove_verify() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I__remove_verify
|
||||
*
|
||||
@ -1213,7 +1213,7 @@ H5I__remove_verify(hid_t id, H5I_type_t id_type)
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I__remove_verify() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I__remove_common
|
||||
*
|
||||
@ -1258,7 +1258,7 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I__remove_common() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_remove
|
||||
*
|
||||
@ -1298,7 +1298,7 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I_remove() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Idec_ref
|
||||
*
|
||||
@ -1334,7 +1334,7 @@ done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Idec_ref() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_dec_ref
|
||||
*
|
||||
@ -1404,7 +1404,7 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I_dec_ref() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_dec_app_ref
|
||||
*
|
||||
@ -1452,7 +1452,7 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I_dec_app_ref() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_dec_app_ref_always_close
|
||||
*
|
||||
@ -1494,7 +1494,7 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I_dec_app_ref_always_close() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Iinc_ref
|
||||
*
|
||||
@ -1525,7 +1525,7 @@ done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Iinc_ref() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_inc_ref
|
||||
*
|
||||
@ -1563,7 +1563,7 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I_inc_ref() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Iget_ref
|
||||
*
|
||||
@ -1594,7 +1594,7 @@ done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Iget_ref() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_get_ref
|
||||
*
|
||||
@ -1627,7 +1627,7 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I_get_ref() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Iinc_type_ref
|
||||
*
|
||||
@ -1660,7 +1660,7 @@ done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Iinc_ref() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I__inc_type_ref
|
||||
*
|
||||
@ -1694,14 +1694,14 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I__inc_type_ref() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Idec_type_ref
|
||||
*
|
||||
* Purpose: Decrements the reference count on an entire type of IDs.
|
||||
* If the type reference count becomes zero then the type is
|
||||
* destroyed along with all atoms in that type regardless of
|
||||
* their reference counts. Destroying IDs involves calling
|
||||
* their reference counts. Destroying IDs involves calling
|
||||
* the free-func for each ID's object and then adding the ID
|
||||
* struct to the ID free list. Public interface to
|
||||
* H5I_dec_type_ref.
|
||||
@ -1736,14 +1736,14 @@ done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Idec_type_ref() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_dec_type_ref
|
||||
*
|
||||
* Purpose: Decrements the reference count on an entire type of IDs.
|
||||
* If the type reference count becomes zero then the type is
|
||||
* destroyed along with all atoms in that type regardless of
|
||||
* their reference counts. Destroying IDs involves calling
|
||||
* their reference counts. Destroying IDs involves calling
|
||||
* the free-func for each ID's object and then adding the ID
|
||||
* struct to the ID free list.
|
||||
* Returns the number of references to the type on success; a
|
||||
@ -1789,7 +1789,7 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I_dec_type_ref() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Iget_type_ref
|
||||
*
|
||||
@ -1822,7 +1822,7 @@ done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Iget_ref() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I__get_type_ref
|
||||
*
|
||||
@ -1857,7 +1857,7 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I__get_type_ref() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Iis_valid
|
||||
*
|
||||
@ -1887,7 +1887,7 @@ done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Iis_valid() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I__search_cb
|
||||
*
|
||||
@ -1922,7 +1922,7 @@ H5I__search_cb(void *obj, hid_t id, void *_udata)
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I__search_cb() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Isearch
|
||||
*
|
||||
@ -1973,7 +1973,7 @@ done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Isearch() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I__iterate_pub_cb
|
||||
*
|
||||
@ -2013,7 +2013,7 @@ H5I__iterate_pub_cb(void H5_ATTR_UNUSED *obj, hid_t id, void *_udata)
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I__iterate_pub_cb() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Iiterate
|
||||
*
|
||||
@ -2060,7 +2060,7 @@ done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Iiterate() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I__iterate_cb
|
||||
*
|
||||
@ -2108,7 +2108,7 @@ H5I__iterate_cb(void *_item, void H5_ATTR_UNUSED *_key, void *_udata)
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I__iterate_cb() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_iterate
|
||||
*
|
||||
@ -2167,7 +2167,7 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I_iterate() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I__find_id
|
||||
*
|
||||
@ -2212,7 +2212,7 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I__find_id() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Iget_name
|
||||
*
|
||||
@ -2263,7 +2263,7 @@ done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Iget_name() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5Iget_file_id
|
||||
*
|
||||
@ -2307,7 +2307,7 @@ done:
|
||||
FUNC_LEAVE_API(ret_value)
|
||||
} /* end H5Iget_file_id() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I__find_id_cb
|
||||
*
|
||||
@ -2345,7 +2345,7 @@ H5I__find_id_cb(void *_item, void H5_ATTR_UNUSED *_key, void *_udata)
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I__find_id_cb() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_find_id
|
||||
*
|
||||
@ -2394,7 +2394,7 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5I_find_id() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I__id_dump_cb
|
||||
*
|
||||
@ -2482,7 +2482,7 @@ H5I__id_dump_cb(void *_item, void H5_ATTR_UNUSED *_key, void *_udata)
|
||||
FUNC_LEAVE_NOAPI(H5_ITER_CONT)
|
||||
} /* end H5I__id_dump_cb() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5I_dump_ids_for_type
|
||||
*
|
||||
|
@ -110,7 +110,7 @@ H5O_fsinfo_decode(H5F_t *f, H5O_t H5_ATTR_UNUSED *open_oh,
|
||||
|
||||
/* Allocate space for message */
|
||||
if(NULL == (fsinfo = H5FL_CALLOC(H5O_fsinfo_t)))
|
||||
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed")
|
||||
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed")
|
||||
|
||||
for(ptype = H5F_MEM_PAGE_SUPER; ptype < H5F_MEM_PAGE_NTYPES; ptype++)
|
||||
fsinfo->fs_addr[ptype - 1] = HADDR_UNDEF;
|
||||
|
@ -12,7 +12,7 @@
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
* Programmer: Quincey Koziol <koziol@ncsa.uiuc.edu>
|
||||
* Programmer: Quincey Koziol
|
||||
* Tuesday, June 16, 1998
|
||||
*
|
||||
* Purpose: Point selection dataspace I/O functions.
|
||||
|
12
src/H5Tdbg.c
12
src/H5Tdbg.c
@ -13,11 +13,11 @@
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
* Created: H5Tdbg.c
|
||||
* Jul 19 2007
|
||||
* Quincey Koziol <koziol@hdfgroup.org>
|
||||
* Created: H5Tdbg.c
|
||||
* Jul 19 2007
|
||||
* Quincey Koziol
|
||||
*
|
||||
* Purpose: Dump debugging information about a datatype
|
||||
* Purpose: Dump debugging information about a datatype
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -72,7 +72,7 @@
|
||||
/*******************/
|
||||
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5T__print_stats
|
||||
*
|
||||
@ -137,7 +137,7 @@ H5T__print_stats(H5T_path_t H5_ATTR_UNUSED * path, int H5_ATTR_UNUSED * nprint/*
|
||||
FUNC_LEAVE_NOAPI(SUCCEED)
|
||||
} /* end H5T__print_stats() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5T_debug
|
||||
*
|
||||
|
122
src/H5Z.c
122
src/H5Z.c
@ -35,10 +35,10 @@
|
||||
#ifdef H5Z_DEBUG
|
||||
typedef struct H5Z_stats_t {
|
||||
struct {
|
||||
hsize_t total; /* total number of bytes processed */
|
||||
hsize_t errors; /* bytes of total attributable to errors */
|
||||
hsize_t total; /* total number of bytes processed */
|
||||
hsize_t errors; /* bytes of total attributable to errors */
|
||||
H5_timevals_t times; /* execution time including errors */
|
||||
} stats[2]; /* 0 = output, 1 = input */
|
||||
} stats[2]; /* 0 = output, 1 = input */
|
||||
} H5Z_stats_t;
|
||||
#endif /* H5Z_DEBUG */
|
||||
|
||||
@ -132,9 +132,9 @@ H5Z_term_package(void)
|
||||
|
||||
if(H5_PKG_INIT_VAR) {
|
||||
#ifdef H5Z_DEBUG
|
||||
char comment[16], bandwidth[32];
|
||||
int dir, nprint = 0;
|
||||
size_t i;
|
||||
char comment[16], bandwidth[32];
|
||||
int dir, nprint = 0;
|
||||
size_t i;
|
||||
|
||||
if(H5DEBUG(Z)) {
|
||||
for(i = 0; i < H5Z_table_used_g; i++) {
|
||||
@ -142,33 +142,34 @@ H5Z_term_package(void)
|
||||
if(0 == H5Z_stat_table_g[i].stats[dir].total)
|
||||
continue;
|
||||
|
||||
if(0 == nprint++) {
|
||||
/* Print column headers */
|
||||
HDfprintf(H5DEBUG(Z), "H5Z: filter statistics "
|
||||
"accumulated over life of library:\n");
|
||||
HDfprintf(H5DEBUG(Z),
|
||||
" %-16s %10s %10s %8s %8s %8s %10s\n",
|
||||
"Filter", "Total", "Errors", "User",
|
||||
"System", "Elapsed", "Bandwidth");
|
||||
HDfprintf(H5DEBUG(Z),
|
||||
" %-16s %10s %10s %8s %8s %8s %10s\n",
|
||||
"------", "-----", "------", "----",
|
||||
"------", "-------", "---------");
|
||||
} /* end if */
|
||||
if(0 == nprint++) {
|
||||
/* Print column headers */
|
||||
HDfprintf(H5DEBUG(Z), "H5Z: filter statistics "
|
||||
"accumulated over life of library:\n");
|
||||
HDfprintf(H5DEBUG(Z),
|
||||
" %-16s %10s %10s %8s %8s %8s %10s\n",
|
||||
"Filter", "Total", "Errors", "User",
|
||||
"System", "Elapsed", "Bandwidth");
|
||||
HDfprintf(H5DEBUG(Z),
|
||||
" %-16s %10s %10s %8s %8s %8s %10s\n",
|
||||
"------", "-----", "------", "----",
|
||||
"------", "-------", "---------");
|
||||
} /* end if */
|
||||
|
||||
/* Truncate the comment to fit in the field */
|
||||
HDstrncpy(comment, H5Z_table_g[i].name, sizeof comment);
|
||||
comment[sizeof(comment) - 1] = '\0';
|
||||
/* Truncate the comment to fit in the field */
|
||||
HDstrncpy(comment, H5Z_table_g[i].name, sizeof comment);
|
||||
comment[sizeof(comment) - 1] = '\0';
|
||||
|
||||
/*
|
||||
* Format bandwidth to have four significant digits and
|
||||
* units of `B/s', `kB/s', `MB/s', `GB/s', or `TB/s' or
|
||||
* the word `Inf' if the elapsed time is zero.
|
||||
*/
|
||||
H5_bandwidth(bandwidth, (double)(H5Z_stat_table_g[i].stats[dir].total),
|
||||
/*
|
||||
* Format bandwidth to have four significant digits and
|
||||
* units of `B/s', `kB/s', `MB/s', `GB/s', or `TB/s' or
|
||||
* the word `Inf' if the elapsed time is zero.
|
||||
*/
|
||||
H5_bandwidth(bandwidth,
|
||||
(double)(H5Z_stat_table_g[i].stats[dir].total),
|
||||
H5Z_stat_table_g[i].stats[dir].times.elapsed);
|
||||
|
||||
/* Print the statistics */
|
||||
/* Print the statistics */
|
||||
HDfprintf(H5DEBUG(Z), " %s%-15s %10Hd %10Hd %8T %8T %8T %10s\n",
|
||||
(dir ? "<" : ">"), comment,
|
||||
H5Z_stat_table_g[i].stats[dir].total,
|
||||
@ -177,12 +178,12 @@ H5Z_term_package(void)
|
||||
H5Z_stat_table_g[i].stats[dir].times.system,
|
||||
H5Z_stat_table_g[i].stats[dir].times.elapsed,
|
||||
bandwidth);
|
||||
} /* end for */
|
||||
} /* end for */
|
||||
} /* end if */
|
||||
} /* end for */
|
||||
} /* end for */
|
||||
} /* end if */
|
||||
#endif /* H5Z_DEBUG */
|
||||
|
||||
/* Free the table of filters */
|
||||
/* Free the table of filters */
|
||||
if(H5Z_table_g) {
|
||||
H5Z_table_g = (H5Z_class2_t *)H5MM_xfree(H5Z_table_g);
|
||||
|
||||
@ -1256,7 +1257,7 @@ H5Z_pipeline(const H5O_pline_t *pline, unsigned flags,
|
||||
int fclass_idx; /* Index of filter class in global table */
|
||||
H5Z_class2_t *fclass = NULL; /* Filter class pointer */
|
||||
#ifdef H5Z_DEBUG
|
||||
H5Z_stats_t *fstats = NULL; /* Filter stats pointer */
|
||||
H5Z_stats_t *fstats = NULL; /* Filter stats pointer */
|
||||
H5_timer_t timer; /* Timer for filter operations */
|
||||
H5_timevals_t times; /* Elapsed time for each operation */
|
||||
#endif
|
||||
@ -1278,12 +1279,12 @@ H5Z_pipeline(const H5O_pline_t *pline, unsigned flags,
|
||||
H5_timer_init(&timer);
|
||||
#endif
|
||||
if(pline && (flags & H5Z_FLAG_REVERSE)) { /* Read */
|
||||
for(i = pline->nused; i > 0; --i) {
|
||||
idx = i - 1;
|
||||
if(*filter_mask & ((unsigned)1 << idx)) {
|
||||
failed |= (unsigned)1 << idx;
|
||||
continue; /* filter excluded */
|
||||
} /* end if */
|
||||
for(i = pline->nused; i > 0; --i) {
|
||||
idx = i - 1;
|
||||
if(*filter_mask & ((unsigned)1 << idx)) {
|
||||
failed |= (unsigned)1 << idx;
|
||||
continue; /* filter excluded */
|
||||
}
|
||||
|
||||
/* If the filter isn't registered and the application doesn't
|
||||
* indicate no plugin through HDF5_PRELOAD_PLUG (using the symbol "::"),
|
||||
@ -1304,7 +1305,7 @@ H5Z_pipeline(const H5O_pline_t *pline, unsigned flags,
|
||||
/* Search in the table of registered filters again to find the dynamic filter just loaded and registered */
|
||||
if((fclass_idx = H5Z_find_idx(pline->filter[idx].id)) < 0)
|
||||
issue_error = TRUE;
|
||||
} /* end if */
|
||||
}
|
||||
else
|
||||
issue_error = TRUE;
|
||||
|
||||
@ -1353,24 +1354,25 @@ H5Z_pipeline(const H5O_pline_t *pline, unsigned flags,
|
||||
*nbytes = *buf_size;
|
||||
failed |= (unsigned)1 << idx;
|
||||
H5E_clear_stack(NULL);
|
||||
} /* end if */
|
||||
}
|
||||
else
|
||||
*nbytes = new_nbytes;
|
||||
} /* end for */
|
||||
} else if (pline) { /* Write */
|
||||
for(idx = 0; idx < pline->nused; idx++) {
|
||||
if(*filter_mask & ((unsigned)1 << idx)) {
|
||||
failed |= (unsigned)1 << idx;
|
||||
continue; /* filter excluded */
|
||||
} /* end if */
|
||||
if((fclass_idx = H5Z_find_idx(pline->filter[idx].id)) < 0) {
|
||||
}
|
||||
}
|
||||
else if(pline) { /* Write */
|
||||
for(idx = 0; idx < pline->nused; idx++) {
|
||||
if(*filter_mask & ((unsigned)1 << idx)) {
|
||||
failed |= (unsigned)1 << idx;
|
||||
continue; /* filter excluded */
|
||||
}
|
||||
if((fclass_idx = H5Z_find_idx(pline->filter[idx].id)) < 0) {
|
||||
/* Check if filter is optional -- If it isn't, then error */
|
||||
if((pline->filter[idx].flags & H5Z_FLAG_OPTIONAL) == 0)
|
||||
HGOTO_ERROR(H5E_PLINE, H5E_WRITEERROR, FAIL, "required filter is not registered")
|
||||
failed |= (unsigned)1 << idx;
|
||||
if((pline->filter[idx].flags & H5Z_FLAG_OPTIONAL) == 0)
|
||||
HGOTO_ERROR(H5E_PLINE, H5E_WRITEERROR, FAIL, "required filter is not registered")
|
||||
failed |= (unsigned)1 << idx;
|
||||
H5E_clear_stack(NULL);
|
||||
continue; /* filter excluded */
|
||||
} /* end if */
|
||||
continue; /* filter excluded */
|
||||
} /* end if */
|
||||
|
||||
fclass = &H5Z_table_g[fclass_idx];
|
||||
|
||||
@ -1390,25 +1392,25 @@ H5Z_pipeline(const H5O_pline_t *pline, unsigned flags,
|
||||
fstats->stats[0].times.system += times.system;
|
||||
fstats->stats[0].times.user += times.user;
|
||||
|
||||
fstats->stats[0].total += MAX(*nbytes, new_nbytes);
|
||||
fstats->stats[0].total += MAX(*nbytes, new_nbytes);
|
||||
if(0 == new_nbytes)
|
||||
fstats->stats[0].errors += *nbytes;
|
||||
#endif
|
||||
|
||||
if(0 == new_nbytes) {
|
||||
if(0 == (pline->filter[idx].flags & H5Z_FLAG_OPTIONAL)) {
|
||||
if((cb_struct.func && (H5Z_CB_FAIL==cb_struct.func(pline->filter[idx].id, *buf, *nbytes, cb_struct.op_data)))
|
||||
if((cb_struct.func && (H5Z_CB_FAIL == cb_struct.func(pline->filter[idx].id, *buf, *nbytes, cb_struct.op_data)))
|
||||
|| !cb_struct.func)
|
||||
HGOTO_ERROR(H5E_PLINE, H5E_WRITEERROR, FAIL, "filter returned failure")
|
||||
|
||||
*nbytes = *buf_size;
|
||||
} /* end if */
|
||||
}
|
||||
failed |= (unsigned)1 << idx;
|
||||
H5E_clear_stack(NULL);
|
||||
} /* end if */
|
||||
}
|
||||
else
|
||||
*nbytes = new_nbytes;
|
||||
} /* end for */
|
||||
} /* end for */
|
||||
}
|
||||
|
||||
*filter_mask = failed;
|
||||
|
@ -38,7 +38,7 @@
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
#ifdef H5_STDC_HEADERS
|
||||
# include <limits.h> /*for H5T_NATIVE_CHAR defn in H5Tpublic.h */
|
||||
# include <limits.h> /*for H5T_NATIVE_CHAR defn in H5Tpublic.h */
|
||||
# include <stdarg.h> /*for variadic functions in H5VLpublic.h */
|
||||
#endif
|
||||
#ifndef __cplusplus
|
||||
@ -183,7 +183,7 @@ typedef long long ssize_t;
|
||||
*/
|
||||
#if H5_SIZEOF_LONG_LONG >= 8
|
||||
H5_GCC_DIAG_OFF(long-long)
|
||||
typedef unsigned long long hsize_t;
|
||||
typedef unsigned long long hsize_t;
|
||||
typedef signed long long hssize_t;
|
||||
H5_GCC_DIAG_ON(long-long)
|
||||
# define H5_SIZEOF_HSIZE_T H5_SIZEOF_LONG_LONG
|
||||
@ -229,7 +229,7 @@ H5_GCC_DIAG_ON(long-long)
|
||||
#else
|
||||
# error "nothing appropriate for H5_PRINTF_HADDR_FMT"
|
||||
#endif
|
||||
#define HADDR_MAX (HADDR_UNDEF-1)
|
||||
#define HADDR_MAX (HADDR_UNDEF-1)
|
||||
|
||||
/* uint32_t type is used for creation order field for messages. It may be
|
||||
* defined in Posix.1g, otherwise it is defined here.
|
||||
@ -297,7 +297,7 @@ typedef enum {
|
||||
H5_ITER_INC, /* Increasing order */
|
||||
H5_ITER_DEC, /* Decreasing order */
|
||||
H5_ITER_NATIVE, /* No particular order, whatever is fastest */
|
||||
H5_ITER_N /* Number of iteration orders */
|
||||
H5_ITER_N /* Number of iteration orders */
|
||||
} H5_iter_order_t;
|
||||
|
||||
/* Iteration callback values */
|
||||
@ -314,10 +314,10 @@ typedef enum {
|
||||
* links in groups/attributes on objects.
|
||||
*/
|
||||
typedef enum H5_index_t {
|
||||
H5_INDEX_UNKNOWN = -1, /* Unknown index type */
|
||||
H5_INDEX_NAME, /* Index on names */
|
||||
H5_INDEX_CRT_ORDER, /* Index on creation order */
|
||||
H5_INDEX_N /* Number of indices defined */
|
||||
H5_INDEX_UNKNOWN = -1, /* Unknown index type */
|
||||
H5_INDEX_NAME, /* Index on names */
|
||||
H5_INDEX_CRT_ORDER, /* Index on creation order */
|
||||
H5_INDEX_N /* Number of indices defined */
|
||||
} H5_index_t;
|
||||
|
||||
/*
|
||||
|
@ -13,11 +13,11 @@
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
* Created: H5system.c
|
||||
* Aug 21 2006
|
||||
* Quincey Koziol <koziol@hdfgroup.org>
|
||||
* Created: H5system.c
|
||||
* Aug 21 2006
|
||||
* Quincey Koziol
|
||||
*
|
||||
* Purpose: System call wrapper implementations.
|
||||
* Purpose: System call wrapper implementations.
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
@ -311,7 +311,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'a':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -764,7 +764,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
break;
|
||||
|
||||
default:
|
||||
HDfprintf (out, "BADTYPE(D%c)", type[1]);
|
||||
HDfprintf(out, "BADTYPE(D%c)", type[1]);
|
||||
goto error;
|
||||
} /* end switch */
|
||||
break;
|
||||
@ -1149,7 +1149,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 's':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -1226,7 +1226,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
break;
|
||||
|
||||
default:
|
||||
HDfprintf (out, "BADTYPE(H%c)", type[1]);
|
||||
HDfprintf(out, "BADTYPE(H%c)", type[1]);
|
||||
goto error;
|
||||
} /* end switch */
|
||||
break;
|
||||
@ -1414,7 +1414,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
break;
|
||||
|
||||
case H5I_NTYPES:
|
||||
HDfprintf (out, "%ld (ntypes - error)", (long)obj);
|
||||
HDfprintf(out, "%ld (ntypes - error)", (long)obj);
|
||||
break;
|
||||
|
||||
default:
|
||||
@ -1518,7 +1518,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
else {
|
||||
int is = HDva_arg(ap, int);
|
||||
|
||||
HDfprintf (out, "%d", is);
|
||||
HDfprintf(out, "%d", is);
|
||||
asize[argno] = is;
|
||||
} /* end else */
|
||||
break;
|
||||
@ -1638,7 +1638,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
break;
|
||||
|
||||
default:
|
||||
HDfprintf (out, "BADTYPE(I%c)", type[1]);
|
||||
HDfprintf(out, "BADTYPE(I%c)", type[1]);
|
||||
goto error;
|
||||
} /* end switch */
|
||||
break;
|
||||
@ -1664,7 +1664,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'l':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -1808,7 +1808,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
else {
|
||||
off_t offset = HDva_arg(ap, off_t);
|
||||
|
||||
HDfprintf (out, "%ld", (long)offset);
|
||||
HDfprintf(out, "%ld", (long)offset);
|
||||
} /* end else */
|
||||
break;
|
||||
|
||||
@ -2517,7 +2517,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
break;
|
||||
|
||||
default:
|
||||
HDfprintf (out, "BADTYPE(T%c)", type[1]);
|
||||
HDfprintf(out, "BADTYPE(T%c)", type[1]);
|
||||
goto error;
|
||||
} /* end switch */
|
||||
break;
|
||||
@ -2533,9 +2533,9 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
htri_t tri_var = HDva_arg (ap, htri_t);
|
||||
|
||||
if(tri_var>0)
|
||||
HDfprintf (out, "TRUE");
|
||||
HDfprintf(out, "TRUE");
|
||||
else if(!tri_var)
|
||||
HDfprintf (out, "FALSE");
|
||||
HDfprintf(out, "FALSE");
|
||||
else
|
||||
HDfprintf(out, "FAIL(%d)", (int)tri_var);
|
||||
} /* end else */
|
||||
@ -2592,7 +2592,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
break;
|
||||
|
||||
default:
|
||||
HDfprintf (out, "BADTYPE(U%c)", type[1]);
|
||||
HDfprintf(out, "BADTYPE(U%c)", type[1]);
|
||||
goto error;
|
||||
} /* end switch */
|
||||
break;
|
||||
@ -2602,7 +2602,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'a':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -2638,7 +2638,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'A':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -2656,7 +2656,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'b':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -2686,7 +2686,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'B':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -2716,7 +2716,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'C':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -2733,7 +2733,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'c':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -2769,7 +2769,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'd':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -2796,7 +2796,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'e':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -2820,7 +2820,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'f':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -2844,7 +2844,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'g':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -2886,7 +2886,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'h':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -2925,7 +2925,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'i':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -2949,7 +2949,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'j':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -2973,7 +2973,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'k':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -3000,7 +3000,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'l':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -3027,7 +3027,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'L':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -3051,7 +3051,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'm':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -3078,7 +3078,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'n':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -3108,7 +3108,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'o':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -3144,7 +3144,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'r':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -3171,7 +3171,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 's':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -3194,7 +3194,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'S':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -3251,7 +3251,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 't':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -3299,7 +3299,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'u':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -3317,7 +3317,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'v':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -3422,7 +3422,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'w':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -3448,7 +3448,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'x':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -3466,7 +3466,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'y':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -3502,7 +3502,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
|
||||
case 'z':
|
||||
if(ptr) {
|
||||
if(vp)
|
||||
HDfprintf (out, "0x%p", vp);
|
||||
HDfprintf(out, "0x%p", vp);
|
||||
else
|
||||
HDfprintf(out, "NULL");
|
||||
} /* end if */
|
||||
@ -3712,7 +3712,7 @@ error:
|
||||
HDfprintf(out, ";\n");
|
||||
else {
|
||||
last_call_depth = current_depth++;
|
||||
HDfprintf (out, ")");
|
||||
HDfprintf(out, ")");
|
||||
} /* end else */
|
||||
HDfflush(out);
|
||||
|
||||
|
@ -12,7 +12,7 @@
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
* Programmer: Quincey Koziol <koziol@hdfgroup.org>
|
||||
* Programmer: Quincey Koziol
|
||||
* Wednesday, March 17, 2010
|
||||
*
|
||||
* Purpose: srcdir querying support.
|
||||
@ -20,8 +20,6 @@
|
||||
#ifndef _H5SRCDIR_H
|
||||
#define _H5SRCDIR_H
|
||||
|
||||
/* Include the header file with the correct relative path for the srcdir string */
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
@ -12,7 +12,7 @@
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
* Programmer: Quincey Koziol <koziol@hdfgroup.org>
|
||||
* Programmer: Quincey Koziol
|
||||
* Apr 17, 2007
|
||||
*
|
||||
* Purpose: This program is run to generate an HDF5 data file with several
|
||||
|
@ -23,9 +23,8 @@
|
||||
* the library on the trunk as of when this file is checked in.
|
||||
*/
|
||||
|
||||
#include <assert.h>
|
||||
|
||||
#include "testhdf5.h"
|
||||
#include "h5test.h"
|
||||
|
||||
#define FILENAME "specmetaread.h5"
|
||||
#define DIM 10
|
||||
|
@ -2097,8 +2097,14 @@ h5_compare_file_bytes(char *f1name, char *f2name)
|
||||
HDrewind(f1ptr);
|
||||
HDrewind(f2ptr);
|
||||
for (ii = 0; ii < f1size; ii++) {
|
||||
HDfread(&f1char, 1, 1, f1ptr);
|
||||
HDfread(&f2char, 1, 1, f2ptr);
|
||||
if(HDfread(&f1char, 1, 1, f1ptr) != 1) {
|
||||
ret_value = -1;
|
||||
goto done;
|
||||
}
|
||||
if(HDfread(&f2char, 1, 1, f2ptr) != 1) {
|
||||
ret_value = -1;
|
||||
goto done;
|
||||
}
|
||||
if (f1char != f2char) {
|
||||
HDfprintf(stderr, "Mismatch @ 0x%llX: 0x%X != 0x%X\n", ii, f1char, f2char);
|
||||
ret_value = -1;
|
||||
@ -2107,13 +2113,11 @@ h5_compare_file_bytes(char *f1name, char *f2name)
|
||||
}
|
||||
|
||||
done:
|
||||
if (f1ptr) {
|
||||
if (f1ptr)
|
||||
HDfclose(f1ptr);
|
||||
}
|
||||
if (f2ptr) {
|
||||
if (f2ptr)
|
||||
HDfclose(f2ptr);
|
||||
}
|
||||
return(ret_value);
|
||||
return ret_value;
|
||||
} /* end h5_compare_file_bytes() */
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
@ -2220,7 +2224,10 @@ h5_duplicate_file_by_bytes(const char *orig, const char *dest)
|
||||
}
|
||||
|
||||
while (read_size > 0) {
|
||||
HDfread(dup_buf, read_size, 1, orig_ptr); /* warning: no error-check */
|
||||
if(HDfread(dup_buf, read_size, 1, orig_ptr) != 1) {
|
||||
ret_value = -1;
|
||||
goto done;
|
||||
}
|
||||
HDfwrite(dup_buf, read_size, 1, dest_ptr);
|
||||
fsize -= read_size;
|
||||
read_size = MIN(fsize, max_buf);
|
||||
|
@ -333,7 +333,7 @@ hsize_t diff_attr_data(hid_t attr1_id, hid_t attr2_id,
|
||||
hsize_t dims1[H5S_MAX_RANK]; /* dimensions of dataset */
|
||||
hsize_t dims2[H5S_MAX_RANK]; /* dimensions of dataset */
|
||||
hsize_t nfound = 0;
|
||||
int j;
|
||||
size_t sz;
|
||||
diff_err_t ret_value = opts->err_stat;
|
||||
|
||||
H5TOOLS_START_DEBUG(" - errstat:%d", opts->err_stat);
|
||||
@ -384,19 +384,19 @@ hsize_t diff_attr_data(hid_t attr1_id, hid_t attr2_id,
|
||||
|
||||
H5TOOLS_DEBUG("attr_names: %s - %s", name1, name2);
|
||||
if (name1) {
|
||||
j = (int)HDstrlen(name1);
|
||||
H5TOOLS_DEBUG("attr1_name: %s - %d", name1, j);
|
||||
if (j > 0) {
|
||||
opts->obj_name[0] = (char *)HDmalloc((size_t)j + 1);
|
||||
HDstrncpy(opts->obj_name[0], name1, (size_t)j + 1);
|
||||
sz = HDstrlen(name1);
|
||||
H5TOOLS_DEBUG("attr1_name: %s - %d", name1, sz);
|
||||
if (sz > 0) {
|
||||
opts->obj_name[0] = (char *)HDmalloc(sz + 1);
|
||||
HDstrncpy(opts->obj_name[0], name1, sz + 1);
|
||||
}
|
||||
}
|
||||
if (name2) {
|
||||
j = (int)HDstrlen(name2);
|
||||
H5TOOLS_DEBUG("attr2_name: %s - %d", name2, j);
|
||||
if (j > 0) {
|
||||
opts->obj_name[1] = (char *)HDmalloc((size_t)j + 1);
|
||||
HDstrncpy(opts->obj_name[1], name2, (size_t)j + 1);
|
||||
sz = HDstrlen(name2);
|
||||
H5TOOLS_DEBUG("attr2_name: %s - %d", name2, sz);
|
||||
if (sz > 0) {
|
||||
opts->obj_name[1] = (char *)HDmalloc(sz + 1);
|
||||
HDstrncpy(opts->obj_name[1], name2, sz + 1);
|
||||
}
|
||||
}
|
||||
H5TOOLS_DEBUG("attr_names: %s - %s", opts->obj_name[0], opts->obj_name[1]);
|
||||
@ -404,6 +404,9 @@ hsize_t diff_attr_data(hid_t attr1_id, hid_t attr2_id,
|
||||
/* pass dims1 and dims2 for maxdims as well since attribute's maxdims
|
||||
* are always same */
|
||||
if(diff_can_type(ftype1_id, ftype2_id, rank1, rank2, dims1, dims2, dims1, dims2, opts, 0) == 1) {
|
||||
|
||||
int j;
|
||||
|
||||
/*-----------------------------------------------------------------
|
||||
* "upgrade" the smaller memory size
|
||||
*------------------------------------------------------------------
|
||||
@ -461,22 +464,18 @@ hsize_t diff_attr_data(hid_t attr1_id, hid_t attr2_id,
|
||||
|
||||
H5TOOLS_DEBUG("attr_names: %s - %s : %s - %s", name1, name2, path1, path2);
|
||||
if (name1) {
|
||||
j = (int)HDstrlen(name1) + (int)HDstrlen(path1) + 7;
|
||||
H5TOOLS_DEBUG("attr1_name: %s - %d", name1, j);
|
||||
if (j > 0) {
|
||||
opts->obj_name[0] = (char *)HDcalloc((size_t)j + 1, sizeof(char));
|
||||
HDsnprintf(opts->obj_name[0], j, "%s of <%s>", name1, path1);
|
||||
opts->obj_name[0][j] = '\0';
|
||||
}
|
||||
sz = HDstrlen(name1) + HDstrlen(path1) + 7;
|
||||
H5TOOLS_DEBUG("attr1_name: %s - %d", name1, sz);
|
||||
opts->obj_name[0] = (char *)HDcalloc(sz + 1, sizeof(char));
|
||||
HDsnprintf(opts->obj_name[0], sz, "%s of <%s>", name1, path1);
|
||||
opts->obj_name[0][sz] = '\0';
|
||||
}
|
||||
if (name2) {
|
||||
j = (int)HDstrlen(name2) + (int)HDstrlen(path2) + 7;
|
||||
H5TOOLS_DEBUG("attr2_name: %s - %d", name2, j);
|
||||
if (j > 0) {
|
||||
opts->obj_name[1] = (char *)HDcalloc((size_t)j + 1, sizeof(char));
|
||||
HDsnprintf(opts->obj_name[1], j, "%s of <%s>", name2, path2);
|
||||
opts->obj_name[1][j] = '\0';
|
||||
}
|
||||
sz = HDstrlen(name2) + HDstrlen(path2) + 7;
|
||||
H5TOOLS_DEBUG("attr2_name: %s - %d", name2, sz);
|
||||
opts->obj_name[1] = (char *)HDcalloc(sz + 1, sizeof(char));
|
||||
HDsnprintf(opts->obj_name[1], sz, "%s of <%s>", name2, path2);
|
||||
opts->obj_name[1][sz] = '\0';
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------
|
||||
|
@ -90,6 +90,7 @@ static void check_options(diff_opt_t* opts)
|
||||
* Return: <none>
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
#if 0
|
||||
static void
|
||||
parse_hsize_list(const char *h_list, subset_d *d)
|
||||
{
|
||||
@ -139,6 +140,7 @@ parse_hsize_list(const char *h_list, subset_d *d)
|
||||
d->len = size_count;
|
||||
H5TOOLS_ENDDEBUG("");
|
||||
}
|
||||
#endif
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: parse_subset_params
|
||||
@ -149,6 +151,7 @@ parse_hsize_list(const char *h_list, subset_d *d)
|
||||
* Failure: NULL
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
#if 0
|
||||
static struct subset_t *
|
||||
parse_subset_params(const char *dset)
|
||||
{
|
||||
@ -190,7 +193,7 @@ parse_subset_params(const char *dset)
|
||||
|
||||
return s;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: parse_command_line
|
||||
|
@ -64,7 +64,7 @@ static struct long_options l_opts[] = {
|
||||
{ NULL, 0, '\0' }
|
||||
};
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: usage
|
||||
*
|
||||
@ -185,7 +185,7 @@ error:
|
||||
return(-1); ;
|
||||
} /* parse_command_line() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: leave
|
||||
*
|
||||
@ -387,7 +387,7 @@ error:
|
||||
return -1;
|
||||
} /* end convert_dsets_cb() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: main
|
||||
*
|
||||
|
@ -49,7 +49,7 @@ typedef struct mkgrp_opt_t {
|
||||
|
||||
mkgrp_opt_t params_g; /* Command line parameter settings */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: leave
|
||||
*
|
||||
@ -81,7 +81,7 @@ leave(int ret)
|
||||
HDexit(ret);
|
||||
} /* end leave() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: usage
|
||||
*
|
||||
@ -113,7 +113,7 @@ usage(const char *prog)
|
||||
PRINTVALSTREAM(rawoutstream, "\n");
|
||||
} /* end usage() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: parse_command_line
|
||||
*
|
||||
@ -248,7 +248,7 @@ parse_command_line(int argc, const char *argv[], mkgrp_opt_t *options)
|
||||
return 0;
|
||||
} /* parse_command_line() */
|
||||
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: main
|
||||
*
|
||||
|
@ -200,6 +200,7 @@ TOOLTEST()
|
||||
fi
|
||||
runh5diff=no
|
||||
fi
|
||||
|
||||
if [ "$3" = -o ]; then
|
||||
outputfile=$4
|
||||
else
|
||||
@ -219,6 +220,7 @@ TOOLTEST()
|
||||
$RUNSERIAL $H5COPY_BIN $@
|
||||
) > $actualout 2> $actualerr
|
||||
RET=$?
|
||||
|
||||
if [ $RET != 0 ]; then
|
||||
echo "*FAILED*"
|
||||
echo "failed result is:"
|
||||
@ -268,6 +270,7 @@ TOOLTEST_PREFILL()
|
||||
$RUNSERIAL $H5COPY_BIN -i $inputfile -o $outputfile -v -s $grp_name -d $grp_name2
|
||||
) > $actualout 2> $actualerr
|
||||
RET=$?
|
||||
|
||||
if [ $RET != 0 ]; then
|
||||
echo "*FAILED*"
|
||||
echo "failed result is:"
|
||||
@ -282,6 +285,7 @@ TOOLTEST_PREFILL()
|
||||
$RUNSERIAL $H5COPY_BIN -i $inputfile -o $outputfile -v -s $obj_name -d $obj_name2
|
||||
) > $actualout 2> $actualerr
|
||||
RET=$?
|
||||
|
||||
if [ $RET != 0 ]; then
|
||||
echo "*FAILED*"
|
||||
echo "failed result is:"
|
||||
@ -313,6 +317,7 @@ TOOLTEST_SAME()
|
||||
else
|
||||
runh5diff=no
|
||||
fi
|
||||
|
||||
if [ "$3" = -o ]; then
|
||||
outputfile=$4
|
||||
else
|
||||
@ -330,6 +335,7 @@ TOOLTEST_SAME()
|
||||
$RUNSERIAL $H5COPY_BIN -i $inputfile -o $outputfile -v -s $grp_name -d $grp_name
|
||||
) > $actualout 2> $actualerr
|
||||
RET=$?
|
||||
|
||||
if [ $RET != 0 ]; then
|
||||
echo "*FAILED*"
|
||||
echo "failed result is:"
|
||||
@ -344,6 +350,7 @@ TOOLTEST_SAME()
|
||||
$RUNSERIAL $H5COPY_BIN -i $outputfile -o $outputfile -v -s $grp_name -d $grp_name2
|
||||
) > $actualout 2> $actualerr
|
||||
RET=$?
|
||||
|
||||
if [ $RET != 0 ]; then
|
||||
echo "*FAILED*"
|
||||
echo "failed result is:"
|
||||
@ -406,6 +413,7 @@ TOOLTEST_FAIL()
|
||||
if [ "$1" = -i ]; then
|
||||
inputfile=$2
|
||||
fi
|
||||
|
||||
if [ "$3" = -o ]; then
|
||||
outputfile=$4
|
||||
fi
|
||||
@ -417,8 +425,8 @@ TOOLTEST_FAIL()
|
||||
#echo "#############################"
|
||||
$RUNSERIAL $H5COPY_BIN $@
|
||||
) > $actualout 2> $actualerr
|
||||
|
||||
RET=$?
|
||||
|
||||
# save actualout and actualerr in case they are needed later.
|
||||
cp $actualout $actualout_sav
|
||||
STDOUT_FILTER $actualout
|
||||
|
@ -135,24 +135,24 @@ CLEAN_TESTFILES_AND_TESTDIR()
|
||||
# -h print help page
|
||||
while [ $# -gt 0 ]; do
|
||||
case "$1" in
|
||||
-p) # reset the tool name and bin to run ph5diff tests
|
||||
TESTNAME=ph5diff
|
||||
H5DIFF=../../src/h5diff/ph5diff # The tool name
|
||||
H5DIFF_BIN=`pwd`/$H5DIFF # The path of the tool binary
|
||||
pmode=yes
|
||||
shift
|
||||
;;
|
||||
-p) # reset the tool name and bin to run ph5diff tests
|
||||
TESTNAME=ph5diff
|
||||
H5DIFF=../../src/h5diff/ph5diff # The tool name
|
||||
H5DIFF_BIN=`pwd`/$H5DIFF # The path of the tool binary
|
||||
pmode=yes
|
||||
shift
|
||||
;;
|
||||
-h) # print help page
|
||||
echo "$0 [-p] [-h]"
|
||||
echo " -p run ph5diff tests"
|
||||
echo " -h print help page"
|
||||
shift
|
||||
exit 0
|
||||
;;
|
||||
echo "$0 [-p] [-h]"
|
||||
echo " -p run ph5diff tests"
|
||||
echo " -h print help page"
|
||||
shift
|
||||
exit 0
|
||||
;;
|
||||
*) # unknown option
|
||||
echo "$0: Unknown option ($1)"
|
||||
exit 1
|
||||
;;
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
@ -218,19 +218,21 @@ TOOLTEST() {
|
||||
# Run test.
|
||||
TESTING $H5DIFF $@
|
||||
(
|
||||
#echo "#############################"
|
||||
#echo "Expected output for '$H5DIFF $@'"
|
||||
#echo "#############################"
|
||||
cd $TESTDIR
|
||||
eval $ENVCMD $RUNCMD $H5DIFF_BIN "$@"
|
||||
#echo "#############################"
|
||||
#echo "Expected output for '$H5DIFF $@'"
|
||||
#echo "#############################"
|
||||
cd $TESTDIR
|
||||
eval $ENVCMD $RUNCMD $H5DIFF_BIN "$@"
|
||||
) >$actual 2>$actual_err
|
||||
EXIT_CODE=$?
|
||||
|
||||
# save actual and actual_err in case they are needed later.
|
||||
cp $actual $actual_sav
|
||||
STDOUT_FILTER $actual
|
||||
cp $actual_err $actual_err_sav
|
||||
STDERR_FILTER $actual_err
|
||||
cat $actual_err >> $actual
|
||||
|
||||
# don't add exit code check in pmode, as it causes failure. (exit code
|
||||
# is from mpirun not tool)
|
||||
# if any problem occurs relate to an exit code, it will be caught in
|
||||
@ -260,27 +262,29 @@ TOOLTEST() {
|
||||
actual_sorted=actual_sorted
|
||||
sort $expect -o $expect_sorted
|
||||
sort $actual -o $actual_sorted
|
||||
|
||||
# remove "EXIT CODE:" line from expect file. test for exit code
|
||||
# is done by serial mode.
|
||||
grep -v "EXIT CODE:" $expect_sorted > $expect_sorted.noexit
|
||||
mv $expect_sorted.noexit $expect_sorted
|
||||
if $CMP $expect_sorted $actual_sorted; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
if test yes = "$verbose"; then
|
||||
echo "====Expected result ($expect_sorted) differs from actual result ($actual_sorted)"
|
||||
$DIFF $expect_sorted $actual_sorted |sed 's/^/ /'
|
||||
echo "====The actual output ($actual_sav)"
|
||||
sed 's/^/ /' < $actual_sav
|
||||
echo "====The actual stderr ($actual_err_sav)"
|
||||
sed 's/^/ /' < $actual_err_sav
|
||||
echo "====End of actual stderr ($actual_err_sav)"
|
||||
echo ""
|
||||
|
||||
if $CMP $expect_sorted $actual_sorted; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
if test yes = "$verbose"; then
|
||||
echo "====Expected result ($expect_sorted) differs from actual result ($actual_sorted)"
|
||||
$DIFF $expect_sorted $actual_sorted |sed 's/^/ /'
|
||||
echo "====The actual output ($actual_sav)"
|
||||
sed 's/^/ /' < $actual_sav
|
||||
echo "====The actual stderr ($actual_err_sav)"
|
||||
sed 's/^/ /' < $actual_err_sav
|
||||
echo "====End of actual stderr ($actual_err_sav)"
|
||||
echo ""
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
@ -306,18 +310,20 @@ TOOLTEST_ERR() {
|
||||
# Run test.
|
||||
TESTING $H5DIFF $@
|
||||
(
|
||||
#echo "#############################"
|
||||
#echo "Expected output for '$H5DIFF $@'"
|
||||
#echo "#############################"
|
||||
cd $TESTDIR
|
||||
eval $ENVCMD $RUNCMD $H5DIFF_BIN "$@"
|
||||
#echo "#############################"
|
||||
#echo "Expected output for '$H5DIFF $@'"
|
||||
#echo "#############################"
|
||||
cd $TESTDIR
|
||||
eval $ENVCMD $RUNCMD $H5DIFF_BIN "$@"
|
||||
) >$actual 2>$actual_err
|
||||
EXIT_CODE=$?
|
||||
|
||||
# save actual and actual_err in case they are needed later.
|
||||
cp $actual $actual_sav
|
||||
STDOUT_FILTER $actual
|
||||
cp $actual_err $actual_err_sav
|
||||
STDERR_FILTER $actual_err
|
||||
|
||||
# don't add exit code check in pmode, as it causes failure. (exit code
|
||||
# is from mpirun not tool)
|
||||
# if any problem occurs relate to an exit code, it will be caught in
|
||||
@ -348,23 +354,24 @@ TOOLTEST_ERR() {
|
||||
sort $expect_err -o $expect_sorted
|
||||
sort $actual_err -o $actual_sorted
|
||||
mv $expect_sorted.noexit $expect_sorted
|
||||
if $CMP $expect_sorted $actual_sorted; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
if test yes = "$verbose"; then
|
||||
echo "====Expected result ($expect_sorted) differs from actual result ($actual_sorted)"
|
||||
$DIFF $expect_sorted $actual_sorted |sed 's/^/ /'
|
||||
echo "====The actual output ($actual_sav)"
|
||||
sed 's/^/ /' < $actual_sav
|
||||
echo "====The actual stderr ($actual_err_sav)"
|
||||
sed 's/^/ /' < $actual_err_sav
|
||||
echo "====End of actual stderr ($actual_err_sav)"
|
||||
echo ""
|
||||
|
||||
if $CMP $expect_sorted $actual_sorted; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
if test yes = "$verbose"; then
|
||||
echo "====Expected result ($expect_sorted) differs from actual result ($actual_sorted)"
|
||||
$DIFF $expect_sorted $actual_sorted |sed 's/^/ /'
|
||||
echo "====The actual output ($actual_sav)"
|
||||
sed 's/^/ /' < $actual_sav
|
||||
echo "====The actual stderr ($actual_err_sav)"
|
||||
sed 's/^/ /' < $actual_err_sav
|
||||
echo "====End of actual stderr ($actual_err_sav)"
|
||||
echo ""
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
|
@ -500,18 +500,20 @@ TOOLTEST() {
|
||||
# Run test.
|
||||
TESTING $H5DIFF $@
|
||||
(
|
||||
#echo "#############################"
|
||||
#echo "Expected output for '$H5DIFF $@'"
|
||||
#echo "#############################"
|
||||
cd $TESTDIR
|
||||
eval $RUNCMD $H5DIFF_BIN "$@"
|
||||
#echo "#############################"
|
||||
#echo "Expected output for '$H5DIFF $@'"
|
||||
#echo "#############################"
|
||||
cd $TESTDIR
|
||||
eval $RUNCMD $H5DIFF_BIN "$@"
|
||||
) >$actual 2>$actual_err
|
||||
EXIT_CODE=$?
|
||||
|
||||
# save actual and actual_err in case they are needed later.
|
||||
cp $actual $actual_sav
|
||||
STDOUT_FILTER $actual
|
||||
cp $actual_err $actual_err_sav
|
||||
STDERR_FILTER $actual_err
|
||||
|
||||
# don't add exit code check in pmode, as it causes failure. (exit code
|
||||
# is from mpirun not tool)
|
||||
# if any problem occurs relate to an exit code, it will be caught in
|
||||
@ -545,23 +547,24 @@ TOOLTEST() {
|
||||
# is done by serial mode.
|
||||
grep -v "EXIT CODE:" $expect_sorted > $expect_sorted.noexit
|
||||
mv $expect_sorted.noexit $expect_sorted
|
||||
if $CMP $expect_sorted $actual_sorted; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
if test yes = "$verbose"; then
|
||||
echo "====Expected result ($expect_sorted) differs from actual result ($actual_sorted)"
|
||||
$DIFF $expect_sorted $actual_sorted |sed 's/^/ /'
|
||||
echo "====The actual output ($actual_sav)"
|
||||
sed 's/^/ /' < $actual_sav
|
||||
echo "====The actual stderr ($actual_err_sav)"
|
||||
sed 's/^/ /' < $actual_err_sav
|
||||
echo "====End of actual stderr ($actual_err_sav)"
|
||||
echo ""
|
||||
|
||||
if $CMP $expect_sorted $actual_sorted; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
if test yes = "$verbose"; then
|
||||
echo "====Expected result ($expect_sorted) differs from actual result ($actual_sorted)"
|
||||
$DIFF $expect_sorted $actual_sorted |sed 's/^/ /'
|
||||
echo "====The actual output ($actual_sav)"
|
||||
sed 's/^/ /' < $actual_sav
|
||||
echo "====The actual stderr ($actual_err_sav)"
|
||||
sed 's/^/ /' < $actual_err_sav
|
||||
echo "====End of actual stderr ($actual_err_sav)"
|
||||
echo ""
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
|
@ -181,8 +181,8 @@ TOOLTEST() {
|
||||
# Run test.
|
||||
TESTING $H5DUMP $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$ENVCMD $RUNSERIAL $H5DUMP_BIN "$@"
|
||||
cd $TESTDIR
|
||||
$ENVCMD $RUNSERIAL $H5DUMP_BIN "$@"
|
||||
) >$actual 2>$actual_err
|
||||
|
||||
# save actual and actual_err in case they are needed later.
|
||||
@ -192,24 +192,24 @@ TOOLTEST() {
|
||||
STDERR_FILTER $actual_err
|
||||
cat $actual_err >> $actual
|
||||
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expect $actual > /dev/null 2>&1 ; then
|
||||
echo " PASSED"
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $caseless $expect $actual |sed 's/^/ /'
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $caseless $expect $actual |sed 's/^/ /'
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav $actual_ext
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav $actual_ext
|
||||
fi
|
||||
|
||||
}
|
||||
|
@ -465,14 +465,14 @@ TESTING() {
|
||||
TOOLTEST() {
|
||||
# check if caseless compare and diff requested
|
||||
if [ "$1" = ignorecase ]; then
|
||||
caseless="-i"
|
||||
# replace cmp with diff which runs much longer.
|
||||
xCMP="$DIFF -i"
|
||||
shift
|
||||
caseless="-i"
|
||||
# replace cmp with diff which runs much longer.
|
||||
xCMP="$DIFF -i"
|
||||
shift
|
||||
else
|
||||
caseless=""
|
||||
# stick with faster cmp if ignorecase is not requested.
|
||||
xCMP="$CMP"
|
||||
caseless=""
|
||||
# stick with faster cmp if ignorecase is not requested.
|
||||
xCMP="$CMP"
|
||||
fi
|
||||
|
||||
expect="$TESTDIR/$1"
|
||||
@ -485,8 +485,8 @@ TOOLTEST() {
|
||||
# Run test.
|
||||
TESTING $DUMPER $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
) >$actual 2>$actual_err
|
||||
|
||||
# save actual and actual_err in case they are needed later.
|
||||
@ -495,24 +495,24 @@ TOOLTEST() {
|
||||
cp $actual_err $actual_err_sav
|
||||
STDERR_FILTER $actual_err
|
||||
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $xCMP $expect $actual > /dev/null 2>&1 ; then
|
||||
echo " PASSED"
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $caseless $expect $actual |sed 's/^/ /'
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $caseless $expect $actual |sed 's/^/ /'
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav $actual_ext
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav $actual_ext
|
||||
fi
|
||||
|
||||
}
|
||||
@ -534,41 +534,41 @@ TOOLTEST2() {
|
||||
# Run test.
|
||||
TESTING $DUMPER $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
) >$actual 2>$actual_err
|
||||
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expect $actual; then
|
||||
if [ ! -f $expectdata ]; then
|
||||
# Create the expect data file if it doesn't yet exist.
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actualdata $expectdata
|
||||
echo " Expected data (*.exp) missing"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expectdata $actualdata; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected datafile (*.exp) differs from actual datafile (*.txt)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expectdata $actualdata |sed 's/^/ /'
|
||||
fi
|
||||
elif $CMP $expect $actual; then
|
||||
if [ ! -f $expectdata ]; then
|
||||
# Create the expect data file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actualdata $expectdata
|
||||
echo " Expected data (*.exp) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expectdata $actualdata; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected datafile (*.exp) differs from actual datafile (*.txt)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expectdata $actualdata |sed 's/^/ /'
|
||||
fi
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actualdata $actual_err
|
||||
rm -f $actual $actualdata $actual_err
|
||||
fi
|
||||
|
||||
}
|
||||
@ -592,56 +592,55 @@ TOOLTEST2A() {
|
||||
# Run test.
|
||||
TESTING $DUMPER $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
) >$actual 2>$actual_err
|
||||
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expect $actual; then
|
||||
if [ ! -f $expectdata ]; then
|
||||
# Create the expect data file if it doesn't yet exist.
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actualdata $expectdata
|
||||
echo " Expected data (*.exp) missing"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $DIFF $expectdata $actualdata; then
|
||||
if [ ! -f $expectmeta ]; then
|
||||
# Create the expect meta file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actualmeta $expectmeta
|
||||
echo " Expected metafile (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expectmeta $actualmeta; then
|
||||
echo " PASSED"
|
||||
elif $CMP $expect $actual; then
|
||||
if [ ! -f $expectdata ]; then
|
||||
# Create the expect data file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actualdata $expectdata
|
||||
echo " Expected data (*.exp) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $DIFF $expectdata $actualdata; then
|
||||
if [ ! -f $expectmeta ]; then
|
||||
# Create the expect meta file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actualmeta $expectmeta
|
||||
echo " Expected metafile (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expectmeta $actualmeta; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected metafile (*.ddl) differs from actual metafile (*.txt)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expectmeta $actualmeta |sed 's/^/ /'
|
||||
fi
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected metafile (*.ddl) differs from actual metafile (*.txt)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expectmeta $actualmeta |sed 's/^/ /'
|
||||
echo "*FAILED*"
|
||||
echo " Expected datafile (*.exp) differs from actual datafile (*.txt)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expectdata $actualdata |sed 's/^/ /'
|
||||
fi
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected datafile (*.exp) differs from actual datafile (*.txt)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expectdata $actualdata |sed 's/^/ /'
|
||||
fi
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actualdata $actual_err $actualmeta
|
||||
rm -f $actual $actualdata $actual_err $actualmeta
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
# same as TOOLTEST2 but only compares the generated data file to the expected data file
|
||||
@ -658,28 +657,28 @@ TOOLTEST2B() {
|
||||
# Run test.
|
||||
TESTING $DUMPER $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
) >$actual 2>$actual_err
|
||||
|
||||
if [ ! -f $expectdata ]; then
|
||||
# Create the expect data file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actualdata $expectdata
|
||||
echo " Expected data (*.exp) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
# Create the expect data file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actualdata $expectdata
|
||||
echo " Expected data (*.exp) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expectdata $actualdata; then
|
||||
echo " PASSED"
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected datafile (*.exp) differs from actual datafile (*.txt)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expectdata $actualdata |sed 's/^/ /'
|
||||
echo "*FAILED*"
|
||||
echo " Expected datafile (*.exp) differs from actual datafile (*.txt)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expectdata $actualdata |sed 's/^/ /'
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actualdata $actual_err
|
||||
rm -f $actual $actualdata $actual_err
|
||||
fi
|
||||
|
||||
}
|
||||
@ -699,8 +698,8 @@ TOOLTEST3() {
|
||||
# Run test.
|
||||
TESTING $DUMPER $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
) >$actual 2>$actual_err
|
||||
|
||||
# save actual and actual_err in case they are needed later.
|
||||
@ -719,23 +718,23 @@ TOOLTEST3() {
|
||||
$actual_err > $actual_ext
|
||||
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expect $actual; then
|
||||
echo " PASSED"
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav
|
||||
fi
|
||||
|
||||
}
|
||||
@ -757,8 +756,8 @@ TOOLTEST4() {
|
||||
# Run test.
|
||||
TESTING $DUMPER $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$ENVCMD $RUNSERIAL $DUMPER_BIN "$@"
|
||||
cd $TESTDIR
|
||||
$ENVCMD $RUNSERIAL $DUMPER_BIN "$@"
|
||||
) >$actual 2>$actual_err
|
||||
|
||||
# save actual and actual_err in case they are needed later.
|
||||
@ -777,30 +776,30 @@ TOOLTEST4() {
|
||||
$actual_err > $actual_ext
|
||||
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expect $actual; then
|
||||
if $CMP $expect_err $actual_ext; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.err) differs from actual result (*.oerr)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect_err $actual_ext |sed 's/^/ /'
|
||||
fi
|
||||
if $CMP $expect_err $actual_ext; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.err) differs from actual result (*.oerr)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect_err $actual_ext |sed 's/^/ /'
|
||||
fi
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav
|
||||
fi
|
||||
|
||||
}
|
||||
@ -822,8 +821,8 @@ TOOLTEST5() {
|
||||
# Run test.
|
||||
TESTING $DUMPER $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$ENVCMD $RUNSERIAL $DUMPER_BIN "$@"
|
||||
cd $TESTDIR
|
||||
$ENVCMD $RUNSERIAL $DUMPER_BIN "$@"
|
||||
) >$actual 2>$actual_err
|
||||
|
||||
# save actual and actual_err in case they are needed later.
|
||||
@ -842,33 +841,33 @@ TOOLTEST5() {
|
||||
$actual_err > $actual_ext
|
||||
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expect $actual; then
|
||||
if $CMP $expect_err $actual_ext; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.err) differs from actual result (*.oerr)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect_err $actual_ext |sed 's/^/ /'
|
||||
fi
|
||||
if $CMP $expect_err $actual_ext; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.err) differs from actual result (*.oerr)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect_err $actual_ext |sed 's/^/ /'
|
||||
fi
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
# ADD_HELP_TEST
|
||||
TOOLTEST_HELP() {
|
||||
|
||||
@ -880,27 +879,27 @@ TOOLTEST_HELP() {
|
||||
# Run test.
|
||||
TESTING $DUMPER $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
) >$actual 2>$actual_err
|
||||
|
||||
if [ ! -f $expectdata ]; then
|
||||
# Create the expect data file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect-CREATED
|
||||
echo " Expected output (*.txt) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
# Create the expect data file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect-CREATED
|
||||
echo " Expected output (*.txt) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expect $actual; then
|
||||
echo " PASSED"
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected output (*.txt) differs from actual output (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
echo "*FAILED*"
|
||||
echo " Expected output (*.txt) differs from actual output (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actual_err
|
||||
rm -f $actual $actual_err
|
||||
fi
|
||||
|
||||
}
|
||||
@ -920,14 +919,16 @@ GREPTEST()
|
||||
# Run test.
|
||||
TESTING $DUMPER -p $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$ENVCMD $RUNSERIAL $DUMPER_BIN -p "$@"
|
||||
cd $TESTDIR
|
||||
$ENVCMD $RUNSERIAL $DUMPER_BIN -p "$@"
|
||||
) >$actual 2>$actual_err
|
||||
|
||||
if [ "$txttype" = "ERRTXT" ]; then
|
||||
$GREP "$expectdata" $actual_err > /dev/null
|
||||
else
|
||||
$GREP "$expectdata" $actual > /dev/null
|
||||
fi
|
||||
|
||||
if [ $? -eq 0 ]; then
|
||||
echo " PASSED"
|
||||
else
|
||||
@ -937,7 +938,7 @@ GREPTEST()
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actual_err
|
||||
rm -f $actual $actual_err
|
||||
fi
|
||||
}
|
||||
|
||||
@ -956,14 +957,16 @@ GREPTEST2()
|
||||
# Run test.
|
||||
TESTING $DUMPER -p $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$ENVCMD $RUNSERIAL $DUMPER_BIN -p "$@"
|
||||
cd $TESTDIR
|
||||
$ENVCMD $RUNSERIAL $DUMPER_BIN -p "$@"
|
||||
) >$actual 2>$actual_err
|
||||
|
||||
if [ "$txttype" = "ERRTXT" ]; then
|
||||
$GREP "$expectdata" $actual_err > /dev/null
|
||||
else
|
||||
$GREP "$expectdata" $actual > /dev/null
|
||||
fi
|
||||
|
||||
if [ $? -eq 0 ]; then
|
||||
echo " PASSED"
|
||||
else
|
||||
@ -973,21 +976,21 @@ GREPTEST2()
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actual_err
|
||||
rm -f $actual $actual_err
|
||||
fi
|
||||
}
|
||||
|
||||
# Print a "SKIP" message
|
||||
SKIP() {
|
||||
TESTING $DUMPER $@
|
||||
TESTING $DUMPER $@
|
||||
echo " -SKIP-"
|
||||
}
|
||||
|
||||
# Print a line-line message left justified in a field of 70 characters
|
||||
#
|
||||
PRINT_H5DIFF() {
|
||||
SPACES=" "
|
||||
echo " Running h5diff $* $SPACES" | cut -c1-70 | tr -d '\012'
|
||||
SPACES=" "
|
||||
echo " Running h5diff $* $SPACES" | cut -c1-70 | tr -d '\012'
|
||||
}
|
||||
|
||||
|
||||
@ -997,10 +1000,11 @@ DIFFTEST()
|
||||
{
|
||||
PRINT_H5DIFF $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $H5DIFF_BIN "$@" -q
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $H5DIFF_BIN "$@" -q
|
||||
)
|
||||
RET=$?
|
||||
|
||||
if [ $RET != 0 ] ; then
|
||||
echo "*FAILED*"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
@ -1014,8 +1018,8 @@ DIFFTEST()
|
||||
# beginning with the word "Verifying".
|
||||
#
|
||||
PRINT_H5IMPORT() {
|
||||
SPACES=" "
|
||||
echo " Running h5import $* $SPACES" | cut -c1-70 | tr -d '\012'
|
||||
SPACES=" "
|
||||
echo " Running h5import $* $SPACES" | cut -c1-70 | tr -d '\012'
|
||||
}
|
||||
|
||||
# Call the h5import tool
|
||||
@ -1025,15 +1029,16 @@ IMPORTTEST()
|
||||
# remove the output hdf5 file if it exists
|
||||
hdf5_file="$TESTDIR/$5"
|
||||
if [ -f $hdf5_file ]; then
|
||||
rm -f $hdf5_file
|
||||
rm -f $hdf5_file
|
||||
fi
|
||||
|
||||
PRINT_H5IMPORT $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $H5IMPORT_BIN "$@"
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $H5IMPORT_BIN "$@"
|
||||
)
|
||||
RET=$?
|
||||
|
||||
if [ $RET != 0 ] ; then
|
||||
echo "*FAILED*"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
@ -1138,9 +1143,9 @@ TOOLTEST tcomp-4.ddl --enable-error-stack tcompound_complex.h5
|
||||
TOOLTEST tcompound_complex2.ddl --enable-error-stack tcompound_complex2.h5
|
||||
# tests for bitfields and opaque data types
|
||||
if test $WORDS_BIGENDIAN != "yes"; then
|
||||
TOOLTEST tbitnopaque_le.ddl --enable-error-stack tbitnopaque.h5
|
||||
TOOLTEST tbitnopaque_le.ddl --enable-error-stack tbitnopaque.h5
|
||||
else
|
||||
TOOLTEST tbitnopaque_be.ddl --enable-error-stack tbitnopaque.h5
|
||||
TOOLTEST tbitnopaque_be.ddl --enable-error-stack tbitnopaque.h5
|
||||
fi
|
||||
|
||||
#test for the nested compound type
|
||||
@ -1318,12 +1323,12 @@ TOOLTEST tallfilters.ddl --enable-error-stack -H -p -d all tfilters.h5
|
||||
TOOLTEST tuserfilter.ddl --enable-error-stack -H -p -d myfilter tfilters.h5
|
||||
|
||||
if test $USE_FILTER_DEFLATE = "yes" ; then
|
||||
# data read internal filters
|
||||
TOOLTEST treadintfilter.ddl --enable-error-stack -d deflate -d shuffle -d fletcher32 -d nbit -d scaleoffset tfilters.h5
|
||||
if test $USE_FILTER_SZIP = "yes"; then
|
||||
# data read
|
||||
TOOLTEST treadfilter.ddl --enable-error-stack -d all -d szip tfilters.h5
|
||||
fi
|
||||
# data read internal filters
|
||||
TOOLTEST treadintfilter.ddl --enable-error-stack -d deflate -d shuffle -d fletcher32 -d nbit -d scaleoffset tfilters.h5
|
||||
if test $USE_FILTER_SZIP = "yes"; then
|
||||
# data read
|
||||
TOOLTEST treadfilter.ddl --enable-error-stack -d all -d szip tfilters.h5
|
||||
fi
|
||||
fi
|
||||
|
||||
# test for displaying objects with very long names
|
||||
@ -1380,9 +1385,9 @@ TOOLTEST tbin4.ddl --enable-error-stack -d double -b FILE -o out4.bin tbin
|
||||
|
||||
# Clean up binary output files
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f out[1-4].bin
|
||||
rm -f out1.h5
|
||||
rm -f out3.h5
|
||||
rm -f out[1-4].bin
|
||||
rm -f out1.h5
|
||||
rm -f out3.h5
|
||||
fi
|
||||
|
||||
# test for dataset region references
|
||||
@ -1394,7 +1399,7 @@ TOOLTEST2 tbinregR.exp --enable-error-stack -d /Dataset1 -s 0 -R -y -o tbinregR.
|
||||
|
||||
# Clean up text output files
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f tbinregR.txt
|
||||
rm -f tbinregR.txt
|
||||
fi
|
||||
|
||||
# tests for group creation order
|
||||
|
@ -236,26 +236,25 @@ TOOLTEST() {
|
||||
cp $actual_err $actual_err_sav
|
||||
STDERR_FILTER $actual_err
|
||||
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expect $actual; then
|
||||
echo " PASSED"
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav $actual_ext
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav $actual_ext
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -274,36 +273,36 @@ TOOLTEST2() {
|
||||
# Run test.
|
||||
TESTING $DUMPER $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
) >$actual 2>$actual_err
|
||||
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expect $actual; then
|
||||
if [ ! -f $expectdata ]; then
|
||||
# Create the expect data file if it doesn't yet exist.
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actualdata $expectdata
|
||||
echo " Expected data (*.exp) missing"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expectdata $actualdata; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected datafile (*.exp) differs from actual datafile (*.txt)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expectdata $actualdata |sed 's/^/ /'
|
||||
fi
|
||||
elif $CMP $expect $actual; then
|
||||
if [ ! -f $expectdata ]; then
|
||||
# Create the expect data file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actualdata $expectdata
|
||||
echo " Expected data (*.exp) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expectdata $actualdata; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected datafile (*.exp) differs from actual datafile (*.txt)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expectdata $actualdata |sed 's/^/ /'
|
||||
fi
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
@ -328,8 +327,8 @@ TOOLTEST3() {
|
||||
# Run test.
|
||||
TESTING $DUMPER $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
) >$actual 2>$actual_err
|
||||
|
||||
# save actual and actual_err in case they are needed later.
|
||||
@ -348,23 +347,23 @@ TOOLTEST3() {
|
||||
$actual_err > $actual_ext
|
||||
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expect $actual; then
|
||||
echo " PASSED"
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav
|
||||
fi
|
||||
|
||||
}
|
||||
@ -385,8 +384,8 @@ TOOLTEST4() {
|
||||
# Run test.
|
||||
TESTING $DUMPER $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
) >$actual 2>$actual_err
|
||||
|
||||
# save actual and actual_err in case they are needed later.
|
||||
@ -405,30 +404,30 @@ TOOLTEST4() {
|
||||
$actual_err > $actual_ext
|
||||
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expect $actual; then
|
||||
if $CMP $expect_err $actual_ext; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.err) differs from actual result (*.oerr)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect_err $actual_ext |sed 's/^/ /'
|
||||
fi
|
||||
if $CMP $expect_err $actual_ext; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.err) differs from actual result (*.oerr)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect_err $actual_ext |sed 's/^/ /'
|
||||
fi
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav
|
||||
fi
|
||||
|
||||
}
|
||||
@ -442,8 +441,8 @@ SKIP() {
|
||||
# Print a line-line message left justified in a field of 70 characters
|
||||
#
|
||||
PRINT_H5DIFF() {
|
||||
SPACES=" "
|
||||
echo " Running h5diff $* $SPACES" | cut -c1-70 | tr -d '\012'
|
||||
SPACES=" "
|
||||
echo " Running h5diff $* $SPACES" | cut -c1-70 | tr -d '\012'
|
||||
}
|
||||
|
||||
|
||||
@ -453,10 +452,11 @@ DIFFTEST()
|
||||
{
|
||||
PRINT_H5DIFF $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $H5DIFF_BIN "$@" -q
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $H5DIFF_BIN "$@" -q
|
||||
)
|
||||
RET=$?
|
||||
|
||||
if [ $RET != 0 ] ; then
|
||||
echo "*FAILED*"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
@ -470,8 +470,8 @@ DIFFTEST()
|
||||
# beginning with the word "Verifying".
|
||||
#
|
||||
PRINT_H5IMPORT() {
|
||||
SPACES=" "
|
||||
echo " Running h5import $* $SPACES" | cut -c1-70 | tr -d '\012'
|
||||
SPACES=" "
|
||||
echo " Running h5import $* $SPACES" | cut -c1-70 | tr -d '\012'
|
||||
}
|
||||
|
||||
# Call the h5import tool
|
||||
@ -481,22 +481,22 @@ IMPORTTEST()
|
||||
# remove the output hdf5 file if it exists
|
||||
hdf5_file="$TESTDIR/$5"
|
||||
if [ -f $hdf5_file ]; then
|
||||
rm -f $hdf5_file
|
||||
rm -f $hdf5_file
|
||||
fi
|
||||
|
||||
PRINT_H5IMPORT $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $H5IMPORT_BIN "$@"
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $H5IMPORT_BIN "$@"
|
||||
)
|
||||
RET=$?
|
||||
|
||||
if [ $RET != 0 ] ; then
|
||||
echo "*FAILED*"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
else
|
||||
echo " PASSED"
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -205,8 +205,8 @@ TOOLTEST() {
|
||||
# Run test.
|
||||
TESTING $DUMPER $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
) >$actual 2>$actual_err
|
||||
|
||||
# save actual and actual_err in case they are needed later.
|
||||
@ -216,26 +216,25 @@ TOOLTEST() {
|
||||
STDERR_FILTER $actual_err
|
||||
cat $actual_err >> $actual
|
||||
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expect $actual; then
|
||||
echo " PASSED"
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav $actual_ext
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav $actual_ext
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -254,42 +253,42 @@ TOOLTEST2() {
|
||||
# Run test.
|
||||
TESTING $DUMPER $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
) >$actual 2>$actual_err
|
||||
cat $actual_err >> $actual
|
||||
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expect $actual; then
|
||||
if [ ! -f $expectdata ]; then
|
||||
# Create the expect data file if it doesn't yet exist.
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actualdata $expectdata
|
||||
echo " Expected data (*.exp) missing"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expectdata $actualdata; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected datafile (*.exp) differs from actual datafile (*.txt)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expectdata $actualdata |sed 's/^/ /'
|
||||
fi
|
||||
elif $CMP $expect $actual; then
|
||||
if [ ! -f $expectdata ]; then
|
||||
# Create the expect data file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actualdata $expectdata
|
||||
echo " Expected data (*.exp) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expectdata $actualdata; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected datafile (*.exp) differs from actual datafile (*.txt)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expectdata $actualdata |sed 's/^/ /'
|
||||
fi
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actualdata $actual_err
|
||||
rm -f $actual $actualdata $actual_err
|
||||
fi
|
||||
|
||||
}
|
||||
@ -309,8 +308,8 @@ TOOLTEST3() {
|
||||
# Run test.
|
||||
TESTING $DUMPER $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
) >$actual 2>$actual_err
|
||||
|
||||
# save actual and actual_err in case they are needed later.
|
||||
@ -326,27 +325,27 @@ TOOLTEST3() {
|
||||
-e 's/[1-9]*\.[0-9]*\.[0-9]*[^)]*/version (number)/' \
|
||||
-e 's/H5Eget_auto[1-2]*/H5Eget_auto(1 or 2)/' \
|
||||
-e 's/H5Eset_auto[1-2]*/H5Eset_auto(1 or 2)/' \
|
||||
$actual_err > $actual_ext
|
||||
$actual_err > $actual_ext
|
||||
cat $actual_ext >> $actual
|
||||
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ddl) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expect $actual; then
|
||||
echo " PASSED"
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav
|
||||
fi
|
||||
|
||||
}
|
||||
@ -367,8 +366,8 @@ TOOLTEST4() {
|
||||
# Run test.
|
||||
TESTING $DUMPER $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
) >$actual 2>$actual_err
|
||||
|
||||
# save actual and actual_err in case they are needed later.
|
||||
@ -384,47 +383,46 @@ TOOLTEST4() {
|
||||
-e 's/[1-9]*\.[0-9]*\.[0-9]*[^)]*/version (number)/' \
|
||||
-e 's/H5Eget_auto[1-2]*/H5Eget_auto(1 or 2)/' \
|
||||
-e 's/H5Eset_auto[1-2]*/H5Eset_auto(1 or 2)/' \
|
||||
$actual_err > $actual_ext
|
||||
$actual_err > $actual_ext
|
||||
#cat $actual_ext >> $actual
|
||||
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
elif $CMP $expect $actual; then
|
||||
if $CMP $expect_err $actual_ext; then
|
||||
echo " PASSED"
|
||||
if $CMP $expect_err $actual_ext; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.err) differs from actual result (*.oerr)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect_err $actual_ext |sed 's/^/ /'
|
||||
fi
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.err) differs from actual result (*.oerr)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect_err $actual_ext |sed 's/^/ /'
|
||||
fi
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ddl) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav
|
||||
rm -f $actual $actual_err $actual_sav $actual_err_sav
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
# Print a "SKIP" message
|
||||
SKIP() {
|
||||
TESTING $DUMPER $@
|
||||
TESTING $DUMPER $@
|
||||
echo " -SKIP-"
|
||||
}
|
||||
|
||||
# Print a line-line message left justified in a field of 70 characters
|
||||
#
|
||||
PRINT_H5DIFF() {
|
||||
SPACES=" "
|
||||
echo " Running h5diff $* $SPACES" | cut -c1-70 | tr -d '\012'
|
||||
SPACES=" "
|
||||
echo " Running h5diff $* $SPACES" | cut -c1-70 | tr -d '\012'
|
||||
}
|
||||
|
||||
|
||||
@ -434,25 +432,25 @@ DIFFTEST()
|
||||
{
|
||||
PRINT_H5DIFF $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $H5DIFF_BIN "$@" -q
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $H5DIFF_BIN "$@" -q
|
||||
)
|
||||
RET=$?
|
||||
|
||||
if [ $RET != 0 ] ; then
|
||||
echo "*FAILED*"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
else
|
||||
echo " PASSED"
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
# Print a line-line message left justified in a field of 70 characters
|
||||
# beginning with the word "Verifying".
|
||||
#
|
||||
PRINT_H5IMPORT() {
|
||||
SPACES=" "
|
||||
echo " Running h5import $* $SPACES" | cut -c1-70 | tr -d '\012'
|
||||
SPACES=" "
|
||||
echo " Running h5import $* $SPACES" | cut -c1-70 | tr -d '\012'
|
||||
}
|
||||
|
||||
# Call the h5import tool
|
||||
@ -462,22 +460,22 @@ IMPORTTEST()
|
||||
# remove the output hdf5 file if it exists
|
||||
hdf5_file="$TESTDIR/$5"
|
||||
if [ -f $hdf5_file ]; then
|
||||
rm -f $hdf5_file
|
||||
rm -f $hdf5_file
|
||||
fi
|
||||
|
||||
PRINT_H5IMPORT $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $H5IMPORT_BIN "$@"
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $H5IMPORT_BIN "$@"
|
||||
)
|
||||
RET=$?
|
||||
|
||||
if [ $RET != 0 ] ; then
|
||||
echo "*FAILED*"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
else
|
||||
echo " PASSED"
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -491,7 +489,7 @@ COPY_TESTFILES_TO_TESTDIR
|
||||
|
||||
####### test for dataset vds ######
|
||||
|
||||
# Data read
|
||||
# Data read
|
||||
if test $USE_FILTER_DEFLATE = "yes" ; then
|
||||
TOOLTEST tvds-1.ddl --enable-error-stack 1_vds.h5
|
||||
TOOLTEST tvds-2.ddl --enable-error-stack 2_vds.h5
|
||||
@ -504,7 +502,7 @@ if test $USE_FILTER_DEFLATE = "yes" ; then
|
||||
TOOLTEST vds-gap2.ddl --vds-gap-size=2 --enable-error-stack vds-eiger.h5
|
||||
fi
|
||||
|
||||
# Layout read
|
||||
# Layout read
|
||||
if test $USE_FILTER_DEFLATE = "yes" ; then
|
||||
TOOLTEST tvds_layout-1.ddl -p --enable-error-stack 1_vds.h5
|
||||
TOOLTEST tvds_layout-2.ddl -p --enable-error-stack 2_vds.h5
|
||||
|
@ -262,36 +262,35 @@ TOOLTEST() {
|
||||
# Run test.
|
||||
TESTING $DUMPER $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $DUMPER_BIN "$@"
|
||||
) >$actual 2>$actual_err
|
||||
|
||||
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.xml) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.xml) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expect $actual; then
|
||||
echo " PASSED"
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.xml) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.xml) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actual_err
|
||||
rm -f $actual $actual_err
|
||||
fi
|
||||
}
|
||||
|
||||
# Print a "SKIP" message
|
||||
SKIP() {
|
||||
TESTING $DUMPER $@
|
||||
echo " -SKIP-"
|
||||
TESTING $DUMPER $@
|
||||
echo " -SKIP-"
|
||||
}
|
||||
|
||||
|
||||
|
@ -139,8 +139,8 @@ CLEAN_TESTFILES_AND_TESTDIR()
|
||||
# Print a $* message left justified in a field of 70 characters
|
||||
#
|
||||
MESSAGE() {
|
||||
SPACES=" "
|
||||
echo "$* $SPACES" | cut -c1-70 | tr -d '\012'
|
||||
SPACES=" "
|
||||
echo "$* $SPACES" | cut -c1-70 | tr -d '\012'
|
||||
}
|
||||
|
||||
# Print a line-line message left justified in a field of 70 characters
|
||||
@ -206,7 +206,7 @@ TOOLTEST() {
|
||||
echo ""
|
||||
fi
|
||||
elif [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ls) missing"
|
||||
|
@ -150,10 +150,11 @@ TOOLTEST()
|
||||
{
|
||||
TESTING $H5MKGRP $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $H5MKGRP_BIN $@
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $H5MKGRP_BIN $@
|
||||
) > output.out
|
||||
RET=$?
|
||||
|
||||
if [ $RET != 0 ]; then
|
||||
echo "*FAILED*"
|
||||
echo "failed result is:"
|
||||
@ -164,7 +165,7 @@ TOOLTEST()
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f output.out
|
||||
rm -f output.out
|
||||
fi
|
||||
fi
|
||||
}
|
||||
@ -181,8 +182,8 @@ H5LSTEST()
|
||||
# any unexpected output from that stream too.
|
||||
VERIFY_H5LS $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $H5LS_BIN $H5LS_ARGS $@
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $H5LS_BIN $H5LS_ARGS $@
|
||||
) 2>&1 |sed 's/Modified:.*/Modified: XXXX-XX-XX XX:XX:XX XXX/' >$actual
|
||||
|
||||
# save actual in case it is needed later.
|
||||
@ -190,25 +191,25 @@ H5LSTEST()
|
||||
STDOUT_FILTER $actual
|
||||
STDERR_FILTER $actual
|
||||
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ls) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expect $actual; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ls) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
fi
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.ls) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expect $actual; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.ls) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actual_sav
|
||||
fi
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actual_sav
|
||||
fi
|
||||
}
|
||||
|
||||
# Single run of tool
|
||||
@ -258,30 +259,30 @@ CMPTEST()
|
||||
# any unexpected output from that stream too.
|
||||
TESTING $H5MKGRP $@
|
||||
(
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $H5MKGRP_BIN $@
|
||||
cd $TESTDIR
|
||||
$RUNSERIAL $H5MKGRP_BIN $@
|
||||
) >$actual 2>$actual_err
|
||||
cat $actual_err >> $actual
|
||||
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.txt) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expect $actual; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.txt) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
fi
|
||||
if [ ! -f $expect ]; then
|
||||
# Create the expect file if it doesn't yet exist.
|
||||
echo " CREATED"
|
||||
cp $actual $expect
|
||||
echo " Expected result (*.txt) missing"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
elif $CMP $expect $actual; then
|
||||
echo " PASSED"
|
||||
else
|
||||
echo "*FAILED*"
|
||||
echo " Expected result (*.txt) differs from actual result (*.out)"
|
||||
nerrors="`expr $nerrors + 1`"
|
||||
test yes = "$verbose" && $DIFF $expect $actual |sed 's/^/ /'
|
||||
fi
|
||||
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actual_err
|
||||
fi
|
||||
# Clean up output file
|
||||
if test -z "$HDF5_NOCLEANUP"; then
|
||||
rm -f $actual $actual_err
|
||||
fi
|
||||
}
|
||||
|
||||
##############################################################################
|
||||
|
Loading…
x
Reference in New Issue
Block a user