summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-08-25 20:47:07 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-08-25 20:47:07 (GMT)
commita9d7f0d2ec1ee8e592d83005007c4cf547e4f2cb (patch)
tree3fe18cc5fc0fab43ea1bc27a8d638cf9702fcbdb /test
parent563665c894c5cbe292907c609cc058b224f6ce57 (diff)
parentc97970f7a1d4ff0f8cca9a700989a477370dd231 (diff)
downloadhdf5-a9d7f0d2ec1ee8e592d83005007c4cf547e4f2cb.zip
hdf5-a9d7f0d2ec1ee8e592d83005007c4cf547e4f2cb.tar.gz
hdf5-a9d7f0d2ec1ee8e592d83005007c4cf547e4f2cb.tar.bz2
Merge branch 'feature/vfd_swmr' into multi
Diffstat (limited to 'test')
-rw-r--r--test/testvfdswmr.sh.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/testvfdswmr.sh.in b/test/testvfdswmr.sh.in
index a355245..b492667 100644
--- a/test/testvfdswmr.sh.in
+++ b/test/testvfdswmr.sh.in
@@ -731,7 +731,7 @@ if test $nerrors -eq 0 ; then
echo "VFD SWMR tests passed."
if test $nsofterrors -ne 0 ; then
echo
- echo "${nsofterrors} soft errors occurred. That's safe to ignore."
+ echo "${nsofterrors} expected errors occurred. Expected errors are ok."
fi
if test -z "$HDF5_NOCLEANUP"; then
# delete the test directory
@@ -739,8 +739,9 @@ if test $nerrors -eq 0 ; then
fi
exit 0
else
- echo -n "VFD SWMR tests failed with $nerrors hard errors "
- echo "and $nsofterrors soft errors."
+ echo -n "VFD SWMR tests failed with $nerrors unexpected errors "
+ echo "and $nsofterrors expected errors. Expected errors are ok."
+ echo "Please report unexpected errors, they may indicate a bug."
exit 1
fi