summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-10-05 18:30:40 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-10-05 18:30:40 (GMT)
commit57bf8e4b14262b595c61aa7a471c1196e9e54af8 (patch)
tree3c10f7d7e57a9898b8dd9ebb602a47eb3282873a /tools
parent42da0e7a35632dd11276ea63d032ca1b23572509 (diff)
downloadhdf5-57bf8e4b14262b595c61aa7a471c1196e9e54af8.zip
hdf5-57bf8e4b14262b595c61aa7a471c1196e9e54af8.tar.gz
hdf5-57bf8e4b14262b595c61aa7a471c1196e9e54af8.tar.bz2
Change '==' to 'eq' in test script
Diffstat (limited to 'tools')
-rw-r--r--tools/h5repack/h5repack.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5repack/h5repack.sh.in b/tools/h5repack/h5repack.sh.in
index 4710a2d..7e6b129 100644
--- a/tools/h5repack/h5repack.sh.in
+++ b/tools/h5repack/h5repack.sh.in
@@ -433,7 +433,7 @@ DIFFFAIL()
$RUNSERIAL $H5DIFF_BIN -q "$@"
)
RET=$?
- if [ $RET == 0 ] ; then
+ if [ $RET -eq 0 ] ; then
echo "*FAILED*"
nerrors="`expr $nerrors + 1`"
else