We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d06222 commit 7224b18Copy full SHA for 7224b18
test/testcases/tst_free_comm.c
@@ -40,7 +40,10 @@ tst_fmt(char *fname, int cmode)
40
41
/* create MPI I/O hints */
42
MPI_Info_create(&info);
43
- MPI_Info_set(info, "romio_no_indep_rw", "true");
+
44
+ if (! (cmode & NC_NETCDF4))
45
+ /* this hint may cause H5Fflush() to hang */
46
+ MPI_Info_set(info, "romio_no_indep_rw", "true");
47
48
/* create a file */
49
cmode |= NC_CLOBBER;
0 commit comments