summaryrefslogtreecommitdiffstats
path: root/src/H5Fvfd_swmr.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2021-03-25 18:26:52 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2021-03-25 18:26:52 (GMT)
commit0011a5e758c2efa386fbeaa81553852c90c48e86 (patch)
treecb4e526186d350a177723963837983ec8dc047c3 /src/H5Fvfd_swmr.c
parent8d526ed137bcb284ecae929ae6262a164af05e29 (diff)
downloadhdf5-0011a5e758c2efa386fbeaa81553852c90c48e86.zip
hdf5-0011a5e758c2efa386fbeaa81553852c90c48e86.tar.gz
hdf5-0011a5e758c2efa386fbeaa81553852c90c48e86.tar.bz2
Temporarily disable some tests that fail on Windows
Diffstat (limited to 'src/H5Fvfd_swmr.c')
-rw-r--r--src/H5Fvfd_swmr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Fvfd_swmr.c b/src/H5Fvfd_swmr.c
index f97439a..8d1888b 100644
--- a/src/H5Fvfd_swmr.c
+++ b/src/H5Fvfd_swmr.c
@@ -293,12 +293,12 @@ H5F_vfd_swmr_close_or_flush(H5F_t *f, hbool_t closing)
/* Close the md file */
if (HDclose(shared->vfd_swmr_md_fd) < 0)
- HGOTO_ERROR(H5E_FILE, H5E_CANTCLOSEFILE, FAIL, "unable to close the metadata file");
+ HSYS_GOTO_ERROR(H5E_FILE, H5E_CANTCLOSEFILE, FAIL, "unable to close the metadata file");
shared->vfd_swmr_md_fd = -1;
/* Unlink the md file */
if (HDunlink(shared->vfd_swmr_config.md_file_path) < 0)
- HGOTO_ERROR(H5E_FILE, H5E_CANTREMOVE, FAIL, "unable to unlink the metadata file");
+ HSYS_GOTO_ERROR(H5E_FILE, H5E_CANTREMOVE, FAIL, "unable to unlink the metadata file");
/* Close the free-space manager for the metadata file */
if (H5MV_close(f) < 0)