diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2005-10-17 20:48:16 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2005-10-17 20:48:16 (GMT) |
commit | d8c3b5b77184fd03d98a185b2f98a4c166065805 (patch) | |
tree | 5e9188880da77c3356a781c70dedfe539e5d64aa /testpar/testphdf5.c | |
parent | d0bb35ceb3a92d6635b953120080983bcb5d45dc (diff) | |
download | hdf5-d8c3b5b77184fd03d98a185b2f98a4c166065805.zip hdf5-d8c3b5b77184fd03d98a185b2f98a4c166065805.tar.gz hdf5-d8c3b5b77184fd03d98a185b2f98a4c166065805.tar.bz2 |
[svn-r11572] Purpose:
Code clean-up for collective regular chunk IO tests.
Description:
Add descriptions for each tests for future maintenance.
Solution:
Platforms tested:
Mostly comments, No need to use h5committest.
heping(linux 2.4)
Misc. update:
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r-- | testpar/testphdf5.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c index 0d7b38f..a07ac4a 100644 --- a/testpar/testphdf5.c +++ b/testpar/testphdf5.c @@ -421,38 +421,12 @@ int main(int argc, char **argv) AddTest("fill", dataset_fillvalue, NULL, "dataset fill value", PARATESTFILE); -#if 0 - /* Collective Chunk IO are verified to work for 64 processes. - * Add or skip depending on whether mpi_size is larger than 64. - */ - - if((mpi_size > 64) && MAINPROCESS) { - 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"); - } - AddTest((mpi_size > 64) ? "-cchunk1" : "cchunk1", - coll_chunk1,NULL, "simple collective chunk io",PARATESTFILE); - AddTest((mpi_size > 64) ? "-cchunk2" : "cchunk2", - coll_chunk2,NULL, "noncontiguous collective chunk io",PARATESTFILE); - AddTest((mpi_size > 64) ? "-cchunk3" : "cchunk3", - coll_chunk3,NULL, "multi-chunk collective chunk io",PARATESTFILE); - AddTest((mpi_size > 64) ? "-cchunk4" : "cchunk4", - coll_chunk4,NULL, "collective to independent chunk io",PARATESTFILE); -#endif - AddTest("cchunk1", coll_chunk1,NULL, "simple collective chunk io",PARATESTFILE); AddTest("cchunk2", coll_chunk2,NULL, "noncontiguous collective chunk io",PARATESTFILE); AddTest("cchunk3", coll_chunk3,NULL, "multi-chunk collective chunk io",PARATESTFILE); -#if 0 - AddTest("cchunk4", - coll_chunk4,NULL, "collective to independent chunk io",PARATESTFILE); -#endif /* irregular collective IO tests*/ AddTest("ccontw", |