mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-02-05 15:42:32 +08:00
Merge pull request #898 in HDFFV/hdf5 from ~VCHOI/my_hdf5_fork:develop to develop
* commit 'ea2fb549245ac33baf7062c7e87c390bf0261677': Fix for daily test failure Fix for test/testhdf5.sh for configuration with --enable-using-memchecker.
This commit is contained in:
commit
db60f70286
@ -5518,7 +5518,12 @@ test_libver_bounds_super_open(hid_t fapl, hid_t fcpl, htri_t is_swmr)
|
|||||||
H5E_BEGIN_TRY {
|
H5E_BEGIN_TRY {
|
||||||
fid = H5Fopen(FILE8, H5F_ACC_RDWR | (is_swmr ? H5F_ACC_SWMR_WRITE : 0), new_fapl);
|
fid = H5Fopen(FILE8, H5F_ACC_RDWR | (is_swmr ? H5F_ACC_SWMR_WRITE : 0), new_fapl);
|
||||||
} H5E_END_TRY;
|
} H5E_END_TRY;
|
||||||
ok = fid >= 0;
|
|
||||||
|
/* Get the internal file pointer if the open succeeds */
|
||||||
|
if((ok = fid >= 0)) {
|
||||||
|
f = (H5F_t *)H5I_object(fid);
|
||||||
|
CHECK(f, NULL, "H5I_object");
|
||||||
|
}
|
||||||
|
|
||||||
/* Verify the file open succeeds or fails */
|
/* Verify the file open succeeds or fails */
|
||||||
switch(super_vers) {
|
switch(super_vers) {
|
||||||
|
Loading…
Reference in New Issue
Block a user