summaryrefslogtreecommitdiffstats
path: root/test/vfd_swmr.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-07-30 22:01:16 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-07-30 22:01:16 (GMT)
commita8cbf2579d4572d7f4785c74ac7d5dc631199a2f (patch)
tree037ac5a84f2a2994bd4b8c37957db2abf4a48aa5 /test/vfd_swmr.c
parentbf004fcba8d8d21713bf5c20246d71e46880170e (diff)
downloadhdf5-a8cbf2579d4572d7f4785c74ac7d5dc631199a2f.zip
hdf5-a8cbf2579d4572d7f4785c74ac7d5dc631199a2f.tar.gz
hdf5-a8cbf2579d4572d7f4785c74ac7d5dc631199a2f.tar.bz2
In test_reader_md_concur(), the child has to exit(3), not FAIL_STACK_ERROR, on
error.
Diffstat (limited to 'test/vfd_swmr.c')
-rw-r--r--test/vfd_swmr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/vfd_swmr.c b/test/vfd_swmr.c
index 34657f3..287f1ff 100644
--- a/test/vfd_swmr.c
+++ b/test/vfd_swmr.c
@@ -1236,7 +1236,7 @@ test_reader_md_concur(void)
/* Set up the VFD SWMR configuration as reader + page buffering */
fapl_reader = init_vfd_swmr_config_fapl(config_reader, 1, 3, FALSE, 256, MD_FILENAME, FS_PAGE_SIZE);
if(fapl_reader == H5I_INVALID_HID)
- FAIL_STACK_ERROR;
+ HDexit(EXIT_FAILURE);
/* Open the test file as reader */
if((fid_reader = H5Fopen(FILENAME, H5F_ACC_RDONLY, fapl_reader)) < 0)