diff options
author | David Young <dyoung@hdfgroup.org> | 2020-03-05 17:05:29 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-03-05 17:05:29 (GMT) |
commit | 7350db497be1c67102ffe5ac30e621720919dc38 (patch) | |
tree | af557c7cc2b6100730d41b22755019d99fffa436 /test/hyperslab.c | |
parent | 7413557dd58656dbfdc0661dace708275a58785f (diff) | |
parent | b53eb6fb29e556c482ce20fa7a21485c99beea74 (diff) | |
download | hdf5-7350db497be1c67102ffe5ac30e621720919dc38.zip hdf5-7350db497be1c67102ffe5ac30e621720919dc38.tar.gz hdf5-7350db497be1c67102ffe5ac30e621720919dc38.tar.bz2 |
Merge pull request #2424 in HDFFV/hdf5 from ~DYOUNG/hdf5:passed-do-while to develop
* commit 'b53eb6fb29e556c482ce20fa7a21485c99beea74':
Add semicolons to more PASSED() invocations.
So that I can use PASSED(); anywhere a statement can go, #define PASSED() with a do-while wrapper.
Diffstat (limited to 'test/hyperslab.c')
-rw-r--r-- | test/hyperslab.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/hyperslab.c b/test/hyperslab.c index 8ed9c22..e702023 100644 --- a/test/hyperslab.c +++ b/test/hyperslab.c @@ -265,7 +265,7 @@ test_fill(size_t nx, size_t ny, size_t nz, } /* end for */ } /* end for */ - PASSED() + PASSED(); HDfree(dst); @@ -545,7 +545,7 @@ test_copy(int mode, } /* end for */ } /* end for */ - PASSED() + PASSED(); HDfree(src); HDfree(dst); @@ -666,7 +666,7 @@ test_multifill(size_t nx) } /* end if */ } /* end for */ - PASSED() + PASSED(); HDfree(src); HDfree(dst); @@ -753,7 +753,7 @@ test_endian(size_t nx) } /* end for */ } /* end for */ - PASSED() + PASSED(); HDfree(src); HDfree(dst); @@ -850,7 +850,7 @@ test_transpose(size_t nx, size_t ny) } /* end for */ } /* end for */ - PASSED() + PASSED(); HDfree(src); HDfree(dst); @@ -943,7 +943,7 @@ test_sub_super(size_t nx, size_t ny) } /* end if */ } /* end for */ } /* end for */ - PASSED() + PASSED(); /* * Test replicating pixels to produce an image twice as large in each @@ -1007,7 +1007,7 @@ test_sub_super(size_t nx, size_t ny) } /* end for */ } /* end for */ - PASSED() + PASSED(); HDfree(full); HDfree(half); |