summaryrefslogtreecommitdiffstats
path: root/testpar/testphdf5.c
diff options
context:
space:
mode:
authorMuQun Yang <ymuqun@hdfgroup.org>2004-12-08 23:33:40 (GMT)
committerMuQun Yang <ymuqun@hdfgroup.org>2004-12-08 23:33:40 (GMT)
commite7e76b687696151281874d9b89e03f79f97fff4b (patch)
tree8d2347efd2e1ad576b442257c30113109e14ced0 /testpar/testphdf5.c
parent14f88c168f75d18761a40c07aa2515896e009c48 (diff)
downloadhdf5-e7e76b687696151281874d9b89e03f79f97fff4b.zip
hdf5-e7e76b687696151281874d9b89e03f79f97fff4b.tar.gz
hdf5-e7e76b687696151281874d9b89e03f79f97fff4b.tar.bz2
[svn-r9649] Purpose:
Adding routines to test irrgular hyperslab selection inside one chunk. Description: For debugging purpose, tests are turned off now. Solution: Platforms tested: AIX 5.1 and Linux 2.4 with parallel enabled. Misc. update:
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r--testpar/testphdf5.c15
1 files changed, 12 insertions, 3 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c
index d6cc6a7..da561e5 100644
--- a/testpar/testphdf5.c
+++ b/testpar/testphdf5.c
@@ -352,6 +352,7 @@ 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,
@@ -433,13 +434,21 @@ int main(int argc, char **argv)
AddTest("cchunk4", coll_chunk4,NULL,
"collective to independent chunk io",PARATESTFILE);
}
- /*#ifdef KYANG*/
-#ifdef KYANG
+
+ #ifdef KYANG
+
AddTest("ccontw",coll_irregular_cont_write,NULL,
"collective irregular contiguous write",PARATESTFILE);
AddTest("ccontr",coll_irregular_cont_read,NULL,
"collective irregular contiguous read",PARATESTFILE);
-#endif
+
+ AddTest("cschunkw",coll_irregular_simple_chunk_write,NULL,
+ "collective irregular simple chunk write",PARATESTFILE);
+ AddTest("cschunkr",coll_irregular_simple_chunk_read,NULL,
+ "collective irregular simple chunk read",PARATESTFILE);
+ #endif
+
+
AddTest("null", null_dataset, NULL,
"null dataset test", PARATESTFILE);