diff options
author | vchoi <vchoi@jelly.ad.hdfgroup.org> | 2021-12-07 18:01:38 (GMT) |
---|---|---|
committer | vchoi <vchoi@jelly.ad.hdfgroup.org> | 2021-12-07 18:01:38 (GMT) |
commit | ae5680405d6440fd2fe92687dac05a6437429269 (patch) | |
tree | 7ff784f530c59e54f8cb7387c7ab7e66f40d7cfd | |
parent | 395453cbc754cc6d6ff509728d325b4262bdf62b (diff) | |
download | hdf5-ae5680405d6440fd2fe92687dac05a6437429269.zip hdf5-ae5680405d6440fd2fe92687dac05a6437429269.tar.gz hdf5-ae5680405d6440fd2fe92687dac05a6437429269.tar.bz2 |
Trying to fix the PR's window test failures.
-rw-r--r-- | test/vfd_swmr.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/vfd_swmr.c b/test/vfd_swmr.c index cfead39..7cddc47 100644 --- a/test/vfd_swmr.c +++ b/test/vfd_swmr.c @@ -4363,7 +4363,7 @@ test_updater_generate_md_checksums(hbool_t file_create) if (verify_ud_chk(config.md_file_path, config.updater_file_path) < 0) TEST_ERROR; - /* It's important to clean up the chechsum and updater files. */ + /* It's important to clean up the checksum and updater files. */ clean_chk_ud_files(config.md_file_path, config.updater_file_path); PASSED(); @@ -4449,8 +4449,10 @@ main(void) if (use_file_locking) { nerrors += test_updater_flags(); nerrors += test_updater_flags_same_file_opens(); +#ifndef H5_HAVE_WIN32_API nerrors += test_updater_generate_md_checksums(TRUE); nerrors += test_updater_generate_md_checksums(FALSE); +#endif nerrors += test_shadow_index_lookup(); |