summaryrefslogtreecommitdiffstats
path: root/testpar
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@lbl.gov>2020-12-01 16:15:34 (GMT)
committerGitHub <noreply@github.com>2020-12-01 16:15:34 (GMT)
commitadf7b1d4cf788f25a52619f5d1c957ac5a7c345c (patch)
tree3795ebb0bb5f7f752e26392971d0efdfe7c930cc /testpar
parent123c5a653dbe3867e06eb8c31da952b7ef042f95 (diff)
downloadhdf5-adf7b1d4cf788f25a52619f5d1c957ac5a7c345c.zip
hdf5-adf7b1d4cf788f25a52619f5d1c957ac5a7c345c.tar.gz
hdf5-adf7b1d4cf788f25a52619f5d1c957ac5a7c345c.tar.bz2
Add flag to H5CX_pop that allow setting the properties to return to application to be skipped. (#134)
Diffstat (limited to 'testpar')
-rw-r--r--testpar/t_cache.c2
-rw-r--r--testpar/t_file.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/testpar/t_cache.c b/testpar/t_cache.c
index 3989f2e..219ffaf 100644
--- a/testpar/t_cache.c
+++ b/testpar/t_cache.c
@@ -4187,7 +4187,7 @@ take_down_cache(hid_t fid, H5C_t *cache_ptr)
}
/* Pop API context */
- H5CX_pop();
+ H5CX_pop(FALSE);
if (success) {
diff --git a/testpar/t_file.c b/testpar/t_file.c
index 4e652bf..408fe12 100644
--- a/testpar/t_file.c
+++ b/testpar/t_file.c
@@ -284,7 +284,7 @@ test_page_buffer_access(void)
/* Pop API context */
if (api_ctx_pushed) {
- ret = H5CX_pop();
+ ret = H5CX_pop(FALSE);
VRFY((ret == 0), "H5CX_pop()");
api_ctx_pushed = FALSE;
}
@@ -418,7 +418,7 @@ test_page_buffer_access(void)
/* Pop API context */
if (api_ctx_pushed) {
- ret = H5CX_pop();
+ ret = H5CX_pop(FALSE);
VRFY((ret == 0), "H5CX_pop()");
api_ctx_pushed = FALSE;
}
@@ -574,7 +574,7 @@ create_file(const char *filename, hid_t fcpl, hid_t fapl, int metadata_write_str
/* Pop API context */
if (api_ctx_pushed) {
- ret = H5CX_pop();
+ ret = H5CX_pop(FALSE);
VRFY((ret == 0), "H5CX_pop()");
api_ctx_pushed = FALSE;
}
@@ -738,7 +738,7 @@ open_file(const char *filename, hid_t fapl, int metadata_write_strategy, hsize_t
/* Pop API context */
if (api_ctx_pushed) {
- ret = H5CX_pop();
+ ret = H5CX_pop(FALSE);
VRFY((ret == 0), "H5CX_pop()");
api_ctx_pushed = FALSE;
}