diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2004-11-11 21:05:03 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2004-11-11 21:05:03 (GMT) |
commit | 7a11c453f92d252eb24675bc4a198fcdddb6eb31 (patch) | |
tree | b1cb926f6b2ca07581bcb13568d5c2bf6eacddeb /testpar/testphdf5.c | |
parent | 1702d75b3a49465b184362e088cf120b1b4817f3 (diff) | |
download | hdf5-7a11c453f92d252eb24675bc4a198fcdddb6eb31.zip hdf5-7a11c453f92d252eb24675bc4a198fcdddb6eb31.tar.gz hdf5-7a11c453f92d252eb24675bc4a198fcdddb6eb31.tar.bz2 |
[svn-r9520] Purpose:
Adding general MPI derived datatype testing code.
Description:
The testing code will not be tested. The purpose of checking in is for
better debugging later. HDF5 routine or daily test should not be aware of this.
Solution:
Platforms tested:
Copper(AIX 5.1),
Heping(Linux 2.4 + MPICH 1.2.6).
Misc. update:
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r-- | testpar/testphdf5.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c index 0f6624e..01e7ef9 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, @@ -434,6 +435,10 @@ int main(int argc, char **argv) "collective to independent chunk io",PARATESTFILE); } +#ifdef KYANG + AddTest("span_tree",t_span_tree,NULL, + "derived datatype test",PARATESTFILE); +#endif AddTest("null", null_dataset, NULL, "null dataset test", PARATESTFILE); |