diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2006-02-16 17:12:08 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2006-02-16 17:12:08 (GMT) |
commit | 25837d324e306ea5631029b5b14e34d4a5e97c59 (patch) | |
tree | 1806ded545a4811eeebeaee73b48b4ca39b9b795 /testpar/testphdf5.c | |
parent | 0fe91bb1a28ccfea8e67e3834155811d27446391 (diff) | |
download | hdf5-25837d324e306ea5631029b5b14e34d4a5e97c59.zip hdf5-25837d324e306ea5631029b5b14e34d4a5e97c59.tar.gz hdf5-25837d324e306ea5631029b5b14e34d4a5e97c59.tar.bz2 |
[svn-r11951] Purpose:
Enhance collective chunk IO supports
Description:
Add a new test to check the correctness of the HDF5 library behavior for collective IO mode when one process doesn't have any contribution for IO.
Solution:
Platforms tested:
IBM AIX 5.2(copper)
Linux (heping) mpich-1.2.6
Misc. update:
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r-- | testpar/testphdf5.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c index f607d8f..dba93aa 100644 --- a/testpar/testphdf5.c +++ b/testpar/testphdf5.c @@ -323,6 +323,8 @@ h5_mpi_get_file_size(const char *filename, MPI_Comm comm, MPI_Info info) size=0; done: + printf("size in llu = %llu\n",size); + printf("size in lld = %lld\n",size); return(size); } @@ -427,6 +429,8 @@ int main(int argc, char **argv) coll_chunk2,NULL, "noncontiguous collective chunk io",PARATESTFILE); AddTest("cchunk3", coll_chunk3,NULL, "multi-chunk collective chunk io",PARATESTFILE); + AddTest("cchunk4", + coll_chunk4,NULL, "collective chunk io with partial non-selection ",PARATESTFILE); /* irregular collective IO tests*/ AddTest("ccontw", |