diff options
author | David Young <dyoung@hdfgroup.org> | 2020-05-13 16:46:54 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-05-13 16:46:54 (GMT) |
commit | 2fe43bd4239afb01f184529ae1650b2e569ef6e2 (patch) | |
tree | df9c5123b6e990f9157438d2ab7609a57e61c7a8 /test/testvfdswmr.sh.in | |
parent | 89bf6de17ff87d8b70f673b623b1f1929a72ac60 (diff) | |
download | hdf5-2fe43bd4239afb01f184529ae1650b2e569ef6e2.zip hdf5-2fe43bd4239afb01f184529ae1650b2e569ef6e2.tar.gz hdf5-2fe43bd4239afb01f184529ae1650b2e569ef6e2.tar.bz2 |
Fix inverted logic: report "soft" errors if there were *not* 0 of them.
Diffstat (limited to 'test/testvfdswmr.sh.in')
-rw-r--r-- | test/testvfdswmr.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testvfdswmr.sh.in b/test/testvfdswmr.sh.in index b372e1c..10fe3f2 100644 --- a/test/testvfdswmr.sh.in +++ b/test/testvfdswmr.sh.in @@ -645,7 +645,7 @@ cd .. $DPRINT nerrors $nerrors nsofterrors $nsofterrors if test $nerrors -eq 0 ; then echo "VFD SWMR tests passed." - if test $nsofterrors -eq 0 ; then + if test $nsofterrors -ne 0 ; then echo echo "${nsofterrors} soft errors occurred. That's safe to ignore." fi |