[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.
This commit is contained in:
Albert Cheng 2000-11-28 09:03:49 -05:00
parent 480acbf3c9
commit 923c2ecb78

View File

@ -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++;
}