diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1999-01-27 04:12:04 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1999-01-27 04:12:04 (GMT) |
commit | a1f46c91fd7a9d0e14a9565c88914c12638963b0 (patch) | |
tree | 7599af552aae9176aa8f692e69656f7fb00ff4a7 /testpar/testphdf5.c | |
parent | 2df1f8344e833c8c64a66615bf0a4f18a5da1f96 (diff) | |
download | hdf5-a1f46c91fd7a9d0e14a9565c88914c12638963b0.zip hdf5-a1f46c91fd7a9d0e14a9565c88914c12638963b0.tar.gz hdf5-a1f46c91fd7a9d0e14a9565c88914c12638963b0.tar.bz2 |
[svn-r1035] t_file.c:
Added a new test to verify the MPIO can support independent
overlapping writes.
testphdf5.c:
Bracketed the MPIO write test with a #ifdef so that it is
tested only when the explicitely turned on.
Platform tested:
O2K.
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r-- | testpar/testphdf5.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c index cdadb7b..b067dd5 100644 --- a/testpar/testphdf5.c +++ b/testpar/testphdf5.c @@ -200,13 +200,18 @@ main(int argc, char **argv) MPI_BANNER("testing dataset using split communicators..."); test_split_comm_access(filenames); +#ifdef MPIOTEST + MPI_BANNER("testing MPIO independent overlapping writes..."); + test_mpio_overlap_writes(filenames); +#endif + MPI_BANNER("testing dataset independent write..."); dataset_writeInd(filenames[0]); MPI_BANNER("testing dataset collective write..."); dataset_writeAll(filenames[1]); - MPI_BANNER("testing extendable dataset independent write..."); + MPI_BANNER("testing extendible dataset independent write..."); extend_writeInd(filenames[2]); } if (doread){ @@ -216,7 +221,7 @@ main(int argc, char **argv) MPI_BANNER("testing dataset collective read..."); dataset_readAll(filenames[1]); - MPI_BANNER("testing extendable dataset independent read..."); + MPI_BANNER("testing extendible dataset independent read..."); extend_readInd(filenames[2]); } |