diff options
author | raylu-hdf <60487644+raylu-hdf@users.noreply.github.com> | 2022-07-12 15:55:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-12 15:55:34 (GMT) |
commit | b2363a8195408331797cd32820fbb0dfc288f646 (patch) | |
tree | 6234565e810281f9f3be2f68963db16480d01b1c /testpar/testphdf5.c | |
parent | c62b02660933852d0d5528aee02d8509be13423a (diff) | |
download | hdf5-b2363a8195408331797cd32820fbb0dfc288f646.zip hdf5-b2363a8195408331797cd32820fbb0dfc288f646.tar.gz hdf5-b2363a8195408331797cd32820fbb0dfc288f646.tar.bz2 |
H5Oflush fails for parallel (#1876)
* H5Oflush causes H5Fclose to trigger an assertion failure in metadata cache for parallel. This commit makes sure H5Oflush fails for parallel until this problem is solved in the future.
* Committing clang-format changes
* Changed the use of H5F_get_driver_id to H5F_HAS_FEATURE.
Co-authored-by: songyulu <songyulu@jelly.ad.hdfgroup.org>
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r-- | testpar/testphdf5.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c index d7b5305..0f284f9 100644 --- a/testpar/testphdf5.c +++ b/testpar/testphdf5.c @@ -351,6 +351,7 @@ main(int argc, char **argv) AddTest("mpiodup", test_fapl_mpio_dup, NULL, "fapl_mpio duplicate", NULL); AddTest("split", test_split_comm_access, NULL, "dataset using split communicators", PARATESTFILE); + AddTest("h5oflusherror", test_oflush, NULL, "H5Oflush failure", PARATESTFILE); #ifdef PB_OUT /* temporary: disable page buffering when parallel */ AddTest("page_buffer", test_page_buffer_access, NULL, "page buffer usage in parallel", PARATESTFILE); |