summaryrefslogtreecommitdiffstats
path: root/test/th5s.c
diff options
context:
space:
mode:
authorVailin Choi <vchoi@jam.ad.hdfgroup.org>2019-06-26 20:47:54 (GMT)
committerVailin Choi <vchoi@jam.ad.hdfgroup.org>2019-06-26 20:47:54 (GMT)
commit9cafc8d4de8bf63ed26a1e6c6e3b8d13b33b4567 (patch)
tree08b81869621fc3b6f7d6c14999a372ff33c3e03a /test/th5s.c
parent7485981bcabfeb09ced49b840bf828c00816157a (diff)
parent439ea92d7e58c9900ef617bbe616a5ce36c709e9 (diff)
downloadhdf5-9cafc8d4de8bf63ed26a1e6c6e3b8d13b33b4567.zip
hdf5-9cafc8d4de8bf63ed26a1e6c6e3b8d13b33b4567.tar.gz
hdf5-9cafc8d4de8bf63ed26a1e6c6e3b8d13b33b4567.tar.bz2
Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/~vchoi/my_third_fork into bugfix/new_shutdown_fsm
Diffstat (limited to 'test/th5s.c')
-rw-r--r--test/th5s.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/th5s.c b/test/th5s.c
index c5dfa97..a48979b 100644
--- a/test/th5s.c
+++ b/test/th5s.c
@@ -3366,8 +3366,8 @@ test_h5s(void)
test_h5s_zero_dim(); /* Test dataspace with zero dimension size */
/* Loop through all the combinations of low/high version bounds */
- for(low = H5F_LIBVER_EARLIEST; low < H5F_LIBVER_NBOUNDS; low++) {
- for(high = H5F_LIBVER_EARLIEST; high < H5F_LIBVER_NBOUNDS; high++) {
+ for(low = H5F_LIBVER_EARLIEST; low < H5F_LIBVER_NBOUNDS; H5_INC_ENUM(H5F_libver_t, low)) {
+ 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)