diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2002-05-21 18:49:44 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2002-05-21 18:49:44 (GMT) |
commit | c365ae137377312931605095a53f964410d47f61 (patch) | |
tree | f5804ede4d66c5f25caf22062715a7ba3c0e2994 /test/h5test.h | |
parent | 03ab48c9c306fee878c4f3a97f858f90c078bfdf (diff) | |
download | hdf5-c365ae137377312931605095a53f964410d47f61.zip hdf5-c365ae137377312931605095a53f964410d47f61.tar.gz hdf5-c365ae137377312931605095a53f964410d47f61.tar.bz2 |
[svn-r5446] Purpose:
Feature
Description:
moved the routines of setting up and dumping MPI-info object to
test library so that it is avaiable for all tests too.
Platforms tested:
modi4(pp), eirene (serial)
Diffstat (limited to 'test/h5test.h')
-rw-r--r-- | test/h5test.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/h5test.h b/test/h5test.h index 2240531..695199c 100644 --- a/test/h5test.h +++ b/test/h5test.h @@ -26,6 +26,9 @@ * the parallel test files. */ extern char *paraprefix; +#ifdef H5_HAVE_PARALLEL +extern MPI_Info pio_info_g; /* MPI INFO object to run the PIO */ +#endif /* * The name of the test is printed by saying TESTING("something") which will @@ -59,7 +62,11 @@ char *h5_fixname(const char *base_name, hid_t fapl, char *fullname, hid_t h5_fileaccess(void); void h5_no_hwconv(void); void h5_reset(void); +#ifdef H5_HAVE_PARALLEL void h5_show_hostname(void); +int h5_set_info_object(void); +void h5_dump_info_object(MPI_Info info); +#endif #ifdef __cplusplus } |