diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2019-12-06 18:17:30 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2019-12-06 18:17:30 (GMT) |
commit | 0f1be317c37ca04db263680e6f1fe4d97b937b39 (patch) | |
tree | 7639a541e3c052127bce577d60c6f217ac754cf0 /test/trefer.c | |
parent | f3686baaf0de37c2a4db6c3ec68d3a1be7c600e5 (diff) | |
download | hdf5-0f1be317c37ca04db263680e6f1fe4d97b937b39.zip hdf5-0f1be317c37ca04db263680e6f1fe4d97b937b39.tar.gz hdf5-0f1be317c37ca04db263680e6f1fe4d97b937b39.tar.bz2 |
More fixes for the PR:
(1) Set the version for reference datatype message to H5O_DTYPE_VERSION_4.
(2) The tests for the new reference types should work for V112 and beyond.
Diffstat (limited to 'test/trefer.c')
-rw-r--r-- | test/trefer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/trefer.c b/test/trefer.c index 7d87ea9..580ebe1 100644 --- a/test/trefer.c +++ b/test/trefer.c @@ -2811,7 +2811,7 @@ test_reference(void) for(high = H5F_LIBVER_EARLIEST; high < H5F_LIBVER_NBOUNDS; H5_INC_ENUM(H5F_libver_t, high)) { /* Invalid combinations, just continue */ - if(high == H5F_LIBVER_EARLIEST || high < low) + if(high <= H5F_LIBVER_V110 || high < low) continue; test_reference_region(low, high); /* Test basic H5R dataset region reference code */ |