Skip to content

Commit

Permalink
remove romio_no_indep_rw when testing NetCDF4
Browse files Browse the repository at this point in the history
  • Loading branch information
wkliao committed Dec 6, 2023
1 parent 8d06222 commit 7224b18
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/testcases/tst_free_comm.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ tst_fmt(char *fname, int cmode)

/* create MPI I/O hints */
MPI_Info_create(&info);
MPI_Info_set(info, "romio_no_indep_rw", "true");

if (! (cmode & NC_NETCDF4))
/* this hint may cause H5Fflush() to hang */
MPI_Info_set(info, "romio_no_indep_rw", "true");

/* create a file */
cmode |= NC_CLOBBER;
Expand Down

0 comments on commit 7224b18

Please sign in to comment.