summaryrefslogtreecommitdiffstats
path: root/test/lheap.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2022-05-06 22:59:52 (GMT)
committerGitHub <noreply@github.com>2022-05-06 22:59:52 (GMT)
commitcd4d97218f75c545be14f3148f2c64fd3c60337b (patch)
treee92d760f5517d171c0689195910bfbc27d3a1786 /test/lheap.c
parent8ad163381083dfc6f0384deb793ba6ad59a936c5 (diff)
parentca737ece9acd8168d9df4a08c9907a294053a883 (diff)
downloadhdf5-feature/werror-restrict.zip
hdf5-feature/werror-restrict.tar.gz
hdf5-feature/werror-restrict.tar.bz2
Merge branch 'develop' into feature/werror-restrictfeature/werror-restrict
Diffstat (limited to 'test/lheap.c')
-rw-r--r--test/lheap.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/lheap.c b/test/lheap.c
index 283c3e3..1c6a6df 100644
--- a/test/lheap.c
+++ b/test/lheap.c
@@ -66,7 +66,7 @@ main(void)
/* Push API context */
if (H5CX_push() < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
api_ctx_pushed = TRUE;
/*
@@ -183,11 +183,11 @@ main(void)
file = H5Fopen(testfile, H5F_ACC_RDONLY, H5P_DEFAULT);
if (file >= 0) {
if ((dset = H5Dopen2(file, "/Dataset1", H5P_DEFAULT)) < 0)
- TEST_ERROR
+ TEST_ERROR;
if (H5Dclose(dset) < 0)
- TEST_ERROR
+ TEST_ERROR;
if (H5Fclose(file) < 0)
- TEST_ERROR
+ TEST_ERROR;
}
else {
H5_FAILED();
@@ -200,11 +200,11 @@ main(void)
/* Verify symbol table messages are cached */
if (h5_verify_cached_stabs(FILENAME, fapl) < 0)
- TEST_ERROR
+ TEST_ERROR;
/* Pop API context */
if (api_ctx_pushed && H5CX_pop(FALSE) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
api_ctx_pushed = FALSE;
HDputs("All local heap tests passed.");