summaryrefslogtreecommitdiffstats
path: root/test/tmisc.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2024-03-10 19:42:16 (GMT)
committerGitHub <noreply@github.com>2024-03-10 19:42:16 (GMT)
commitf0ba8baa0d21197df828f3054840755a45105ac0 (patch)
tree2e9e98644e95f2be61208a3fb72171a10ad7dabf /test/tmisc.c
parentef401a5f5edf2fc689334a485a6c2ec3f53ecb85 (diff)
downloadhdf5-f0ba8baa0d21197df828f3054840755a45105ac0.zip
hdf5-f0ba8baa0d21197df828f3054840755a45105ac0.tar.gz
hdf5-f0ba8baa0d21197df828f3054840755a45105ac0.tar.bz2
Minimize use of abort() (#4110)
The abort() call is used at several places where it probably shouldn't.
Diffstat (limited to 'test/tmisc.c')
-rw-r--r--test/tmisc.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/tmisc.c b/test/tmisc.c
index 0022aa6..be1cebf 100644
--- a/test/tmisc.c
+++ b/test/tmisc.c
@@ -6118,8 +6118,7 @@ test_misc36_cb1(void *_ctx)
VERIFY(is_terminating, true, "H5is_library_terminating");
/* Verify correct ordering for 'atclose' callbacks */
- if (0 != *ctx)
- HDabort();
+ VERIFY(*ctx, 0, "Wrong context value");
/* Update context value */
*ctx = 1;
@@ -6139,8 +6138,7 @@ test_misc36_cb2(void *_ctx)
VERIFY(is_terminating, true, "H5is_library_terminating");
/* Verify correct ordering for 'atclose' callbacks */
- if (1 != *ctx)
- HDabort();
+ VERIFY(*ctx, 1, "Wrong context value");
/* Update context value */
*ctx = 2;