summaryrefslogtreecommitdiffstats
path: root/test/tsohm.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/tsohm.c')
-rw-r--r--test/tsohm.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/tsohm.c b/test/tsohm.c
index b3f48d3..542fd68 100644
--- a/test/tsohm.c
+++ b/test/tsohm.c
@@ -3711,10 +3711,18 @@ void
test_sohm(void)
{
const char *env_h5_drvr;
+ bool vol_is_native;
bool default_driver;
MESSAGE(5, ("Testing Shared Object Header Messages\n"));
+ /* Check if native VOL is being used */
+ CHECK(h5_using_native_vol(H5P_DEFAULT, H5I_INVALID_HID, &vol_is_native), FAIL, "h5_using_native_vol");
+ if (!vol_is_native) {
+ MESSAGE(5, (" -- SKIPPED --\n"));
+ return;
+ }
+
/* Get the VFD to use */
env_h5_drvr = getenv(HDF5_DRIVER);
if (env_h5_drvr == NULL)