summaryrefslogtreecommitdiffstats
path: root/test/test_vfd_swmr.sh.in
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2022-05-11 23:32:32 (GMT)
committerGitHub <noreply@github.com>2022-05-11 23:32:32 (GMT)
commitb2e1a59c73a0b5272047ed4a803e04d92f86015c (patch)
tree7e323366351b281e465d002e1407ad53993c6a84 /test/test_vfd_swmr.sh.in
parent11a88dbda39fc65bba92f5351d11e203fe2480eb (diff)
downloadhdf5-b2e1a59c73a0b5272047ed4a803e04d92f86015c.zip
hdf5-b2e1a59c73a0b5272047ed4a803e04d92f86015c.tar.gz
hdf5-b2e1a59c73a0b5272047ed4a803e04d92f86015c.tar.bz2
Check for parallel HDF5 before running SWMR acceptance tests (#1764)
Diffstat (limited to 'test/test_vfd_swmr.sh.in')
-rw-r--r--test/test_vfd_swmr.sh.in9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/test_vfd_swmr.sh.in b/test/test_vfd_swmr.sh.in
index 2135aef..3c4d9b4 100644
--- a/test/test_vfd_swmr.sh.in
+++ b/test/test_vfd_swmr.sh.in
@@ -152,14 +152,15 @@ catch_out_err_and_rc()
# Check to see if the VFD specified by the HDF5_DRIVER environment variable
# supports SWMR.
-$utils_testdir/swmr_check_compat_vfd
+$utils_testdir/vfd_swmr_check_compat_vfd
rc=$?
if [ $rc -ne 0 ] ; then
echo
- echo "The VFD specified by the HDF5_DRIVER environment variable"
- echo "does not support SWMR."
+ echo "Either the VFD specified by the HDF5_DRIVER environment variable"
+ echo "does not support SWMR or this is parallel HDF5, which does not"
+ echo "support VFD SWMR due to a lack of page buffer support."
echo
- echo "SWMR acceptance tests skipped"
+ echo "VFD SWMR acceptance tests skipped"
echo
exit 0
fi