diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2002-04-22 20:24:49 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2002-04-22 20:24:49 (GMT) |
commit | f4213d492cef55c25f02ed632816915959bd1490 (patch) | |
tree | bd21b91aefc63e8a4a68b0620c1c9f842e5b68b7 | |
parent | e23d11cc194ab9a93cef40eca12a93b71f01c001 (diff) | |
download | hdf5-f4213d492cef55c25f02ed632816915959bd1490.zip hdf5-f4213d492cef55c25f02ed632816915959bd1490.tar.gz hdf5-f4213d492cef55c25f02ed632816915959bd1490.tar.bz2 |
[svn-r5221] Purpose:
feture
Description:
add calls to show hostname.
Platforms tested:
burrwhite (linux 2.4) parallel.
-rw-r--r-- | testpar/t_mpi.c | 10 | ||||
-rw-r--r-- | testpar/testphdf5.c | 2 |
2 files changed, 12 insertions, 0 deletions
diff --git a/testpar/t_mpi.c b/testpar/t_mpi.c index 02e406e..155eeae 100644 --- a/testpar/t_mpi.c +++ b/testpar/t_mpi.c @@ -23,6 +23,14 @@ int nerrors = 0; int verbose = 0; hid_t fapl; /* file access property list */ +/* protocols */ +static void test_mpio_overlap_writes(char *filename); +static void test_mpio_offset(void); +static void test_mpio_gb_file(char *filename); +static void test_mpio_gb_file(char *filename); +static int parse_options(int argc, char **argv); +static void usage(void); + #define MPIO_TEST_WRITE_SIZE 1024*1024 /* 1 MB */ void @@ -418,6 +426,8 @@ main(int argc, char **argv) printf("MPI functionality tests\n"); printf("===================================\n"); } + h5_show_hostname(); + fapl = H5Pcreate (H5P_FILE_ACCESS); H5Pset_fapl_mpio(fapl, MPI_COMM_WORLD, MPI_INFO_NULL); diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c index 71fe791..da77585 100644 --- a/testpar/testphdf5.c +++ b/testpar/testphdf5.c @@ -303,6 +303,8 @@ main(int argc, char **argv) printf("PHDF5 TESTS START\n"); printf("===================================\n"); } + h5_show_hostname(); + fapl = H5Pcreate (H5P_FILE_ACCESS); H5Pset_fapl_mpio(fapl, MPI_COMM_WORLD, MPI_INFO_NULL); |