diff options
Diffstat (limited to 'test/tfile.c')
-rw-r--r-- | test/tfile.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/tfile.c b/test/tfile.c index 34f3389..a56498b 100644 --- a/test/tfile.c +++ b/test/tfile.c @@ -1677,6 +1677,10 @@ test_file_is_accessible(const char *env_h5_drvr) * are enforced by the OS. */ +/* XXX: VFD SWMR: Currently fails on VFD SWMR due to differences in the + * open file scheme. + */ +#ifndef H5_HAVE_WIN32_API /* Create a file and hold it open */ fid = H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl_id); CHECK(fid, H5I_INVALID_HID, "H5Fcreate"); @@ -1688,6 +1692,7 @@ test_file_is_accessible(const char *env_h5_drvr) /* Close file */ ret = H5Fclose(fid); CHECK(ret, FAIL, "H5Fclose"); +#endif /*******************************/ /* Non-default user block size */ |