summaryrefslogtreecommitdiffstats
path: root/test/farray.c
diff options
context:
space:
mode:
authorNeil Fortner <nfortne2@hdfgroup.org>2019-12-05 20:57:35 (GMT)
committerNeil Fortner <nfortne2@hdfgroup.org>2019-12-05 20:57:35 (GMT)
commit73709ef2fa2494e675566dd3310c6c8ebac01c18 (patch)
treedf05c02e6072fd5905f89ae0572e768afb526684 /test/farray.c
parent9cb77297301e14389e8f4e445f3b91f98d697947 (diff)
parentc7b3d6d6a5c1d376812e17c0ddb26f55334a2c59 (diff)
downloadhdf5-73709ef2fa2494e675566dd3310c6c8ebac01c18.zip
hdf5-73709ef2fa2494e675566dd3310c6c8ebac01c18.tar.gz
hdf5-73709ef2fa2494e675566dd3310c6c8ebac01c18.tar.bz2
Merge branch 'develop' of ssh://bitbucket.hdfgroup.org:7999/~nfortne2/hdf5_naf into develop
Diffstat (limited to 'test/farray.c')
-rw-r--r--test/farray.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/farray.c b/test/farray.c
index c9584b8..d6610f2 100644
--- a/test/farray.c
+++ b/test/farray.c
@@ -1687,7 +1687,7 @@ main(void)
}
/* Iterate over the testing parameters */
- for(curr_test = FARRAY_TEST_NORMAL; curr_test < FARRAY_TEST_NTESTS; H5_INC_ENUM(farray_test_type_t, curr_test)) {
+ for(curr_test = FARRAY_TEST_NORMAL; curr_test < FARRAY_TEST_NTESTS; curr_test++) {
/* Initialize the testing parameters */
HDmemset(&tparam, 0, sizeof(tparam));
@@ -1723,7 +1723,7 @@ main(void)
nerrors += test_delete_open(fapl, &cparam, &tparam);
/* Iterate over the type of capacity tests */
- for(curr_iter = FARRAY_ITER_FW; curr_iter < FARRAY_ITER_NITERS; H5_INC_ENUM(farray_iter_type_t, curr_iter)) {
+ for(curr_iter = FARRAY_ITER_FW; curr_iter < FARRAY_ITER_NITERS; curr_iter++) {
/* Set appropriate parameters for each type of iteration */
switch(curr_iter) {