summaryrefslogtreecommitdiffstats
path: root/testpar/testphdf5.c
diff options
context:
space:
mode:
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]);
}