diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2003-05-19 19:55:50 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2003-05-19 19:55:50 (GMT) |
commit | 13bc7e92aff680c3b66f483341efb8099cde685c (patch) | |
tree | fc6c3d2a75aabf3b896b0270697fe443cd921fe6 | |
parent | 4e36f49a2d47091eecb163710c75f1ac8e73784e (diff) | |
download | hdf5-13bc7e92aff680c3b66f483341efb8099cde685c.zip hdf5-13bc7e92aff680c3b66f483341efb8099cde685c.tar.gz hdf5-13bc7e92aff680c3b66f483341efb8099cde685c.tar.bz2 |
[svn-r6902] Description:
Add printout to identify when the MPIPOSIX driver is being tested instead
of the MPI-IO driver..
Platforms tested:
Tested in copper in parallel mode only since it was just a simple
print statement in the parallel test code.
Misc. update:
-rw-r--r-- | testpar/testphdf5.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c index 95ecb22..e7314c9 100644 --- a/testpar/testphdf5.c +++ b/testpar/testphdf5.c @@ -356,6 +356,12 @@ int main(int argc, char **argv) goto finish; } + if (facc_type == FACC_MPIPOSIX && MAINPROCESS){ + printf("===================================\n" + " Using MPIPOSIX driver\n" + "===================================\n"); + } + MPI_BANNER("test_fapl_mpio_dup..."); test_fapl_mpio_dup(); |