diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2013-04-22 18:44:17 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2013-04-22 18:44:17 (GMT) |
commit | 00648b6875e09602231b953b3b28b270cc308a11 (patch) | |
tree | 33d2ed3f09b8331276c0c1db068cd506a582d5df /testpar/t_dset.c | |
parent | 5acd9c4053fe0dbfaf3e3d8be018fde30850a110 (diff) | |
download | hdf5-00648b6875e09602231b953b3b28b270cc308a11.zip hdf5-00648b6875e09602231b953b3b28b270cc308a11.tar.gz hdf5-00648b6875e09602231b953b3b28b270cc308a11.tar.bz2 |
[svn-r23607] Purpose:
Daily test failed in koala with parallel and v16compat API from the previous
commit r22735.
Descriptoin:
Changed to use H5Dopen2() instead of H5Dopen().
Tested: koala --enable-parallel --with-default-api-version=v16.
No h5committest test since this is limited to parallel test program.
Diffstat (limited to 'testpar/t_dset.c')
-rw-r--r-- | testpar/t_dset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/t_dset.c b/testpar/t_dset.c index 02c809d..743de3a 100644 --- a/testpar/t_dset.c +++ b/testpar/t_dset.c @@ -3620,7 +3620,7 @@ test_no_collective_cause_mode_filter(int selection_mode) VRFY((fapl_read >= 0), "create_faccess_plist() succeeded"); fid = H5Fopen (filename, H5F_ACC_RDONLY, fapl_read); - dataset = H5Dopen (fid, DSET_NOCOLCAUSE, H5P_DEFAULT); + dataset = H5Dopen2 (fid, DSET_NOCOLCAUSE, H5P_DEFAULT); /* Set collective I/O properties in the dxpl. */ ret = H5Pset_dxpl_mpio(dxpl, H5FD_MPIO_COLLECTIVE); |