summaryrefslogtreecommitdiffstats
path: root/tools/test/h5repack/h5repack.sh.in
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-08-14 21:39:40 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-08-14 21:39:40 (GMT)
commit7603d2c8be5418370467f14e8c180a0280c0d557 (patch)
treef948596c0e8f35397cda26274887e435af931058 /tools/test/h5repack/h5repack.sh.in
parentb196ddb4a89b36a3200e0ba9e7b8c2b2f4b52774 (diff)
downloadhdf5-7603d2c8be5418370467f14e8c180a0280c0d557.zip
hdf5-7603d2c8be5418370467f14e8c180a0280c0d557.tar.gz
hdf5-7603d2c8be5418370467f14e8c180a0280c0d557.tar.bz2
HDFFV-9984 fix test logic
Diffstat (limited to 'tools/test/h5repack/h5repack.sh.in')
-rw-r--r--tools/test/h5repack/h5repack.sh.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/test/h5repack/h5repack.sh.in b/tools/test/h5repack/h5repack.sh.in
index e4ae008..02f515c 100644
--- a/tools/test/h5repack/h5repack.sh.in
+++ b/tools/test/h5repack/h5repack.sh.in
@@ -871,13 +871,13 @@ TOOLTESTSV()
nerrors="`expr $nerrors + 1`"
else
echo " PASSED"
- VERIFY h5diff unequal $@
+ VERIFY h5diff equal $@
(
cd $TESTDIR
$RUNSERIAL $H5DIFF_BIN -v $infile $outfile
) >$actual 2>$actual_err
RET=$?
- if [ $RET == 0 ] ; then
+ if [ $RET != 0 ] ; then
echo "*FAILED*"
nerrors="`expr $nerrors + 1`"
else