diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2019-12-06 17:55:36 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-05-20 14:20:21 (GMT) |
commit | 19934f86545c1541fa61feeddba5cd6e01bbadff (patch) | |
tree | e626d9f00fb22622a059793e15e983c5f01f6f31 /test | |
parent | bc69c4177ba47f5916221dd92f587eb5f3f4dfd1 (diff) | |
download | hdf5-19934f86545c1541fa61feeddba5cd6e01bbadff.zip hdf5-19934f86545c1541fa61feeddba5cd6e01bbadff.tar.gz hdf5-19934f86545c1541fa61feeddba5cd6e01bbadff.tar.bz2 |
More fixes for previous committed PR #2079 dated Dec 5 2019.
(1) H5O_dtype_ver_bounds[] for V112 should be H5O_DTYPE_VRESION_4
(2) The tests for the new reference types should work for V112 and beyond
Diffstat (limited to 'test')
-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 cd09c8e..b412fc2 100644 --- a/test/trefer.c +++ b/test/trefer.c @@ -2816,7 +2816,7 @@ test_reference(void) for(high = H5F_LIBVER_EARLIEST; high < H5F_LIBVER_NBOUNDS; high++) { /* Invalid combinations, just continue */ - if(high <= H5F_LIBVER_V112 || high < low) + if(high <= H5F_LIBVER_V110 || high < low) continue; test_reference_region(low, high); /* Test basic H5R dataset region reference code */ |