summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-05-13 16:46:54 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-13 16:46:54 (GMT)
commit2fe43bd4239afb01f184529ae1650b2e569ef6e2 (patch)
treedf9c5123b6e990f9157438d2ab7609a57e61c7a8 /test
parent89bf6de17ff87d8b70f673b623b1f1929a72ac60 (diff)
downloadhdf5-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')
-rw-r--r--test/testvfdswmr.sh.in2
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