summaryrefslogtreecommitdiffstats
path: root/testpar
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2000-11-28 14:03:49 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2000-11-28 14:03:49 (GMT)
commit923c2ecb780c709a210f74d679fc4cdde08fa0d3 (patch)
tree1992fc950ebd5aefaecb251122250bbdfe405f68 /testpar
parent480acbf3c966017b555376db6922b60177c6ec62 (diff)
downloadhdf5-923c2ecb780c709a210f74d679fc4cdde08fa0d3.zip
hdf5-923c2ecb780c709a210f74d679fc4cdde08fa0d3.tar.gz
hdf5-923c2ecb780c709a210f74d679fc4cdde08fa0d3.tar.bz2
[svn-r3007] Purpose:
Feature, kind of Description: Moved the multiple dataset test out of the write-test part so that it can be skipped or tested independent of the other tests. Platforms tested: IRIX64,-64,parallel.
Diffstat (limited to 'testpar')
-rw-r--r--testpar/testphdf5.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c
index 77f2653..d4d79b9 100644
--- a/testpar/testphdf5.c
+++ b/testpar/testphdf5.c
@@ -296,6 +296,14 @@ main(int argc, char **argv)
goto finish;
}
+ if (domdset){
+ MPI_BANNER("multiple datasets write ...");
+ multiple_dset_write(filenames[3]);
+ }
+ else{
+ MPI_BANNER("Multiple datasets test skipped");
+ }
+
if (dowrite){
MPI_BANNER("dataset using split communicators...");
test_split_comm_access(filenames[0]);
@@ -308,14 +316,6 @@ main(int argc, char **argv)
MPI_BANNER("extendible dataset independent write...");
extend_writeInd(filenames[2]);
-
- if (domdset){
- MPI_BANNER("multiple datasets write ...");
- multiple_dset_write(filenames[3]);
- }
- else{
- MPI_BANNER("Multiple datasets test skipped");
- }
}
else{
MPI_BANNER("write tests skipped");
@@ -335,7 +335,7 @@ main(int argc, char **argv)
MPI_BANNER("read tests skipped");
}
- if (!(dowrite || doread)){
+ if (!(dowrite || doread || domdset)){
usage();
nerrors++;
}