diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2004-12-13 17:00:57 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2004-12-13 17:00:57 (GMT) |
commit | fc01012cd541837f15998f2be9c108404cb4b087 (patch) | |
tree | 837d588d61260529325845a7219303a213ee414e /testpar/testphdf5.c | |
parent | b06deb532284e6680e1e9bf7237d24049cf62c77 (diff) | |
download | hdf5-fc01012cd541837f15998f2be9c108404cb4b087.zip hdf5-fc01012cd541837f15998f2be9c108404cb4b087.tar.gz hdf5-fc01012cd541837f15998f2be9c108404cb4b087.tar.bz2 |
[svn-r9658] Purpose:
Check in testing code for irregular hyperslab selection with multiple chunks.
Description:
For debugging only, will not be tested by h5committest.
Solution:
Platforms tested:
Linux 2.4 (mpich 1.2.6)
Misc. update:
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r-- | testpar/testphdf5.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c index da561e5..ce1a4cf 100644 --- a/testpar/testphdf5.c +++ b/testpar/testphdf5.c @@ -352,7 +352,6 @@ int main(int argc, char **argv) TestInit(argv[0], usage, parse_options); /* Tests are generally arranged from least to most complexity... */ - AddTest("mpiodup", test_fapl_mpio_dup, NULL, "fapl_mpio duplicate", NULL); AddTest("posixdup", test_fapl_mpiposix_dup, NULL, @@ -446,10 +445,15 @@ int main(int argc, char **argv) "collective irregular simple chunk write",PARATESTFILE); AddTest("cschunkr",coll_irregular_simple_chunk_read,NULL, "collective irregular simple chunk read",PARATESTFILE); - #endif - + AddTest("ccchunkw",coll_irregular_complex_chunk_write,NULL, + "collective irregular complex chunk write",PARATESTFILE); + AddTest("ccchunkr",coll_irregular_complex_chunk_read,NULL, + "collective irregular complex chunk read",PARATESTFILE); + +#endif + AddTest("null", null_dataset, NULL, "null dataset test", PARATESTFILE); |