summaryrefslogtreecommitdiffstats
path: root/testpar/testphdf5.c
diff options
context:
space:
mode:
authorMuQun Yang <ymuqun@hdfgroup.org>2004-11-24 21:13:26 (GMT)
committerMuQun Yang <ymuqun@hdfgroup.org>2004-11-24 21:13:26 (GMT)
commitc20de8aed47c974df8303c0457a4bd034a125f2e (patch)
treeb8b29131068f681e1577ad9a94732c538f4cdeac /testpar/testphdf5.c
parentcb58a0d8c677a8efd0e896ea690084c97953d6bc (diff)
downloadhdf5-c20de8aed47c974df8303c0457a4bd034a125f2e.zip
hdf5-c20de8aed47c974df8303c0457a4bd034a125f2e.tar.gz
hdf5-c20de8aed47c974df8303c0457a4bd034a125f2e.tar.bz2
[svn-r9575] Purpose:
Adding testing code for collective IO implementation Description: Won't affect testing HDF5 library. Not tested yet, only check in for debugging purpose. Solution: Platforms tested: Linux 2.4 + mpich 1.2.6 Aix 5.1 + mpcc_r Misc. update:
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r--testpar/testphdf5.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c
index 01e7ef9..d6cc6a7 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,
@@ -434,11 +433,14 @@ int main(int argc, char **argv)
AddTest("cchunk4", coll_chunk4,NULL,
"collective to independent chunk io",PARATESTFILE);
}
-
-#ifdef KYANG
- AddTest("span_tree",t_span_tree,NULL,
- "derived datatype test",PARATESTFILE);
+ /*#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("null", null_dataset, NULL,
"null dataset test", PARATESTFILE);
@@ -448,7 +450,6 @@ int main(int argc, char **argv)
AddTest("I/Omodeconf", io_mode_confusion, NULL,
"I/O mode confusion test -- hangs quickly on failure",
&io_mode_confusion_params);
-
/* Display testing information */
TestInfo(argv[0]);