summaryrefslogtreecommitdiffstats
path: root/testpar/testphdf5.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1999-01-27 04:12:04 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1999-01-27 04:12:04 (GMT)
commita1f46c91fd7a9d0e14a9565c88914c12638963b0 (patch)
tree7599af552aae9176aa8f692e69656f7fb00ff4a7 /testpar/testphdf5.c
parent2df1f8344e833c8c64a66615bf0a4f18a5da1f96 (diff)
downloadhdf5-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.c9
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]);
}