diff options
author | Jonathan Kim <jkm@hdfgroup.org> | 2012-09-18 14:43:57 (GMT) |
---|---|---|
committer | Jonathan Kim <jkm@hdfgroup.org> | 2012-09-18 14:43:57 (GMT) |
commit | c3db70aff482b9315b59016e7dc5875a0285a2ed (patch) | |
tree | 0bc773fa400666dae1126da9d6caf4557f62cfff /testpar | |
parent | 7be1d4edaff602701589add47dae3cb92af5791c (diff) | |
download | hdf5-c3db70aff482b9315b59016e7dc5875a0285a2ed.zip hdf5-c3db70aff482b9315b59016e7dc5875a0285a2ed.tar.gz hdf5-c3db70aff482b9315b59016e7dc5875a0285a2ed.tar.bz2 |
[svn-r22783] Purpose:
HDFFV-8143 Provide a routine(s) for telling the user why the library broke collective data access
Description:
Changed to use H5Dopen2() instead of H5Dopen(), which caught by daily test on jam.
This is based on previous commit r22780.
Tested:
jam-pp (linux32-LE)
Diffstat (limited to 'testpar')
-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 22eefbc..b699950 100644 --- a/testpar/t_dset.c +++ b/testpar/t_dset.c @@ -3634,7 +3634,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); |