diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2017-09-23 16:17:47 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2017-09-23 16:17:47 (GMT) |
commit | 8880ec672eeb8f57c023938074d1336dfc82e2ed (patch) | |
tree | e33165e0428a7e4e9d35952ef9cecd9331b111ee /test | |
parent | b5446a9c638b5a95b8dfe132f646aa4358d2b539 (diff) | |
download | hdf5-8880ec672eeb8f57c023938074d1336dfc82e2ed.zip hdf5-8880ec672eeb8f57c023938074d1336dfc82e2ed.tar.gz hdf5-8880ec672eeb8f57c023938074d1336dfc82e2ed.tar.bz2 |
Style cleanups and misc. bugfixes discovered during full SWMR development.
Diffstat (limited to 'test')
-rw-r--r-- | test/ohdr.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/ohdr.c b/test/ohdr.c index faec835..3915b38 100644 --- a/test/ohdr.c +++ b/test/ohdr.c @@ -392,8 +392,9 @@ test_ohdr_swmr(hbool_t new_format) if(H5Oget_info(did, &obj_info) < 0) FAIL_STACK_ERROR - if(obj_info.hdr.version != OBJ_VERSION_LATEST) - FAIL_STACK_ERROR + if(new_format) + if(obj_info.hdr.version != OBJ_VERSION_LATEST) + FAIL_STACK_ERROR /* The size of object header should be greater than the speculative read size of H5O_SPEC_READ_SIZE */ /* This will exercise the coding for the re-read of the object header for SWMR access */ |