diff options
author | David Young <dyoung@hdfgroup.org> | 2020-08-25 20:45:56 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-08-25 20:46:34 (GMT) |
commit | c97970f7a1d4ff0f8cca9a700989a477370dd231 (patch) | |
tree | f48c9341c74767c4bec9d33abea74965bcfbb629 | |
parent | ea6dd16fbb8ab5a5c09d4b03c9a60512da2d0ba5 (diff) | |
download | hdf5-c97970f7a1d4ff0f8cca9a700989a477370dd231.zip hdf5-c97970f7a1d4ff0f8cca9a700989a477370dd231.tar.gz hdf5-c97970f7a1d4ff0f8cca9a700989a477370dd231.tar.bz2 |
Use the terminology "expected" and "unexpected" errors instead of "soft" and
"hard" errors.
-rw-r--r-- | test/testvfdswmr.sh.in | 7 |
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 |