summaryrefslogtreecommitdiffstats
path: root/testpar
diff options
context:
space:
mode:
authorMuQun Yang <ymuqun@hdfgroup.org>2004-08-13 12:53:13 (GMT)
committerMuQun Yang <ymuqun@hdfgroup.org>2004-08-13 12:53:13 (GMT)
commit6ce8bab631f1de7ff4fed4feaebbd204de13b7c7 (patch)
tree0dd4a8d0f70888f99a728ab96c90c219288d11ec /testpar
parent7de4101d1255a72a9ce00aae682c0f03eda95362 (diff)
downloadhdf5-6ce8bab631f1de7ff4fed4feaebbd204de13b7c7.zip
hdf5-6ce8bab631f1de7ff4fed4feaebbd204de13b7c7.tar.gz
hdf5-6ce8bab631f1de7ff4fed4feaebbd204de13b7c7.tar.bz2
[svn-r9075] Purpose:
Parallel HDF5 Collective chunk IO testing message added Description: collective chunk IO tests have been verified with the number of process greater than 24 and the test is very slow with big number of process. That may cause confusions to users who run collective chunk IO tests. Solution: To avoid possible confusions, A if-block will be used to check whether the number of process is greater than 24. If yes, the collective chunk tests will be skipped and a message will be printed out. Platforms tested: To trivial for h5committest,testing platform: eirene. Misc. update:
Diffstat (limited to 'testpar')
-rw-r--r--testpar/testphdf5.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c
index 72a2bff..e5033fc 100644
--- a/testpar/testphdf5.c
+++ b/testpar/testphdf5.c
@@ -465,6 +465,13 @@ int main(int argc, char **argv)
AddTest("fillvalue", dataset_fillvalue, NULL,
"dataset fill value", filenames[8]);
+
+ if(mpi_size > 24) {
+ 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");
+ goto finish;
+ }
AddTest("coll_chunked1", coll_chunk1,NULL,
"simple collective chunk io",filenames[9]);
AddTest("coll_chunked2", coll_chunk2,NULL,