summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorVailin Choi <vchoi@hdfgroup.org>2019-12-05 22:11:08 (GMT)
committerVailin Choi <vchoi@hdfgroup.org>2019-12-05 22:11:08 (GMT)
commit8c9b8047ea6aafa8d2249238658d0c29724adb61 (patch)
tree68ef2a30cab4485b0568ba4c9dd648208ea96175 /test
parentbdbe010fd3fe52c2d6c305a027eb56346f5017e8 (diff)
parent1e10b3212ed5904b69d9f4c4bcb4d0122dfd7c77 (diff)
downloadhdf5-8c9b8047ea6aafa8d2249238658d0c29724adb61.zip
hdf5-8c9b8047ea6aafa8d2249238658d0c29724adb61.tar.gz
hdf5-8c9b8047ea6aafa8d2249238658d0c29724adb61.tar.bz2
Merge pull request #2079 in HDFFV/hdf5 from ~VCHOI/my_third_fork:bugfix/reference_ver_hyperslab_ver to develop
* commit '1e10b3212ed5904b69d9f4c4bcb4d0122dfd7c77': Two fixes: (1) Set the version for reference datatype messge to H5O_DTYPE_VERSION_4. (2) Verify the decoded version for hyperslab selection.
Diffstat (limited to 'test')
-rw-r--r--test/trefer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/trefer.c b/test/trefer.c
index 7791ca1..a27dbc5 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; high++) {
/* Invalid combinations, just continue */
- if(high == H5F_LIBVER_EARLIEST || high < low)
+ if(high <= H5F_LIBVER_V112 || high < low)
continue;
test_reference_region(low, high); /* Test basic H5R dataset region reference code */