summaryrefslogtreecommitdiffstats
path: root/tools/h5repack/h5repack.sh.in
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2008-08-04 21:13:16 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2008-08-04 21:13:16 (GMT)
commit6787ef71a27109c7fe291472afc790b4045a220e (patch)
tree7cb601f2480537e66ca097765b610a967ff85dde /tools/h5repack/h5repack.sh.in
parent2fa8102745450c455150efeec1da41c4a4cbccb7 (diff)
downloadhdf5-6787ef71a27109c7fe291472afc790b4045a220e.zip
hdf5-6787ef71a27109c7fe291472afc790b4045a220e.tar.gz
hdf5-6787ef71a27109c7fe291472afc790b4045a220e.tar.bz2
[svn-r15428] http://bugzilla.hdfgroup.uiuc.edu/show_bug.cgi?id=1170
Summary: when using h5diff to compare the results of h5repack (or other tools that copy one HDF5 file to another), a new option is needed to allow h5diff to make an "absolute" comparison of the 2 files. This is the "contents" mode explained in the usage below. If this mode is present, objects in both files must match (must be exactly the same). If this does not happen, the tool returns an error code of 1 (instead of the success code of 0) Changes to the h5repack test script: the call to h5diff was changed to include -c (maintaining the previous -q). tested: windows, linux, solaris
Diffstat (limited to 'tools/h5repack/h5repack.sh.in')
-rwxr-xr-xtools/h5repack/h5repack.sh.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5repack/h5repack.sh.in b/tools/h5repack/h5repack.sh.in
index 334b384..0d3c7d4 100755
--- a/tools/h5repack/h5repack.sh.in
+++ b/tools/h5repack/h5repack.sh.in
@@ -93,9 +93,9 @@ DIFFTEST()
{
VERIFY $@
if [ "`uname -s`" = "TFLOPS O/S" ]; then
- $RUNSERIAL $H5DIFF_BIN -q $@
+ $RUNSERIAL $H5DIFF_BIN -q -c $@
else
- $RUNSERIAL $H5DIFF_BIN -q "$@"
+ $RUNSERIAL $H5DIFF_BIN -q -c "$@"
fi
RET=$?
if [ $RET != 0 ] ; then