summaryrefslogtreecommitdiffstats
path: root/testpar/testphdf5.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-06-10 19:05:06 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-06-10 19:05:06 (GMT)
commit204b89902904a59f4e14e788bcca065e2c358f0b (patch)
tree7d44f63b311a95ba467ddb94f1a2f996b35a56a5 /testpar/testphdf5.c
parent6ea525228102ecc40e9c5a0fa16c9427366d8b75 (diff)
downloadhdf5-204b89902904a59f4e14e788bcca065e2c358f0b.zip
hdf5-204b89902904a59f4e14e788bcca065e2c358f0b.tar.gz
hdf5-204b89902904a59f4e14e788bcca065e2c358f0b.tar.bz2
[svn-r7019] Purpose:
Compatibility fix Description: The H5P[set|get]_fapl_mpiposix calls changed between v1.4.x and v1.5.x. Solution: Wrap them in the v1.4 backward compatibility #ifdefs and update tests, etc. Platforms tested: FreeBSD 4.8 (sleipnir) w/paralle & v1.4 compatibility h5committest pointless
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r--testpar/testphdf5.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c
index 6a4a0b2..7ab3984 100644
--- a/testpar/testphdf5.c
+++ b/testpar/testphdf5.c
@@ -317,7 +317,11 @@ create_faccess_plist(MPI_Comm comm, MPI_Info info, int l_facc_type,
if (l_facc_type == FACC_MPIPOSIX) {
/* set Parallel access with communicator */
+#ifdef H5_WANT_H5_V1_4_COMPAT
+ ret = H5Pset_fapl_mpiposix(ret_pl, comm);
+#else /* H5_WANT_H5_V1_4_COMPAT */
ret = H5Pset_fapl_mpiposix(ret_pl, comm, use_gpfs);
+#endif /* H5_WANT_H5_V1_4_COMPAT */
VRFY((ret >= 0), "H5Pset_fapl_mpiposix succeeded");
return(ret_pl);
}