summaryrefslogtreecommitdiffstats
path: root/testpar/testphdf5.c
diff options
context:
space:
mode:
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r--testpar/testphdf5.c29
1 files changed, 16 insertions, 13 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c
index 57c3012..106e4ba 100644
--- a/testpar/testphdf5.c
+++ b/testpar/testphdf5.c
@@ -448,22 +448,25 @@ int main(int argc, char **argv)
AddTest("fillvalue", dataset_fillvalue, NULL,
"dataset fill value", filenames[8]);
- if(mpi_size > 24) {
+ if(mpi_size > 64) {
if(MAINPROCESS) {
- printf("The collective chunk IO test hasn't been tested for the number of process greater than 24\n");
- printf("Please try with the number of process no greater than 24\n");
- printf("All collective chunk tests will be skipped \n");
+ printf("Collective chunk IO tests haven't been tested \n");
+ printf(" for the number of process greater than 64.\n");
+ printf("Please try with the number of process \n");
+ printf(" no greater than 64 for collective chunk IO test.\n");
+ printf("Collective chunk tests will be skipped \n");
}
- goto finish;
}
- AddTest("coll_chunked1", coll_chunk1,NULL,
- "simple collective chunk io",filenames[10]);
- AddTest("coll_chunked2", coll_chunk2,NULL,
- "noncontiguous collective chunk io",filenames[11]);
- AddTest("coll_chunked3", coll_chunk3,NULL,
- "multi-chunk collective chunk io",filenames[12]);
- AddTest("coll_chunked4", coll_chunk4,NULL,
- "collective to independent chunk io",filenames[13]);
+ else {
+ AddTest("coll_chunked1", coll_chunk1,NULL,
+ "simple collective chunk io",filenames[10]);
+ AddTest("coll_chunked2", coll_chunk2,NULL,
+ "noncontiguous collective chunk io",filenames[11]);
+ AddTest("coll_chunked3", coll_chunk3,NULL,
+ "multi-chunk collective chunk io",filenames[12]);
+ AddTest("coll_chunked4", coll_chunk4,NULL,
+ "collective to independent chunk io",filenames[13]);
+ }
/* Display testing information */
TestInfo(argv[0]);