summaryrefslogtreecommitdiffstats
path: root/testpar/t_file.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2021-03-25 09:11:45 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2021-03-25 09:11:45 (GMT)
commitdf685806b2903a0190bb12732f022751754b33d6 (patch)
treeb190d3e299431d5348862954c8d0ff3e60d07493 /testpar/t_file.c
parentc0c978e62798a4336f3b368deba164b6d81fdcfd (diff)
downloadhdf5-df685806b2903a0190bb12732f022751754b33d6.zip
hdf5-df685806b2903a0190bb12732f022751754b33d6.tar.gz
hdf5-df685806b2903a0190bb12732f022751754b33d6.tar.bz2
Fixes phdf5
Diffstat (limited to 'testpar/t_file.c')
-rw-r--r--testpar/t_file.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/testpar/t_file.c b/testpar/t_file.c
index 8bef7ae..2c9bd03 100644
--- a/testpar/t_file.c
+++ b/testpar/t_file.c
@@ -116,6 +116,7 @@ test_split_comm_access(void)
VRFY((mrc == MPI_SUCCESS), "final MPI_Barrier succeeded");
}
+#if 0
void
test_page_buffer_access(void)
{
@@ -430,6 +431,7 @@ test_page_buffer_access(void)
data = NULL;
MPI_Barrier(MPI_COMM_WORLD);
}
+#endif
static int
create_file(const char *filename, hid_t fcpl, hid_t fapl, int metadata_write_strategy)
@@ -637,9 +639,9 @@ open_file(const char *filename, hid_t fapl, int metadata_write_strategy, hsize_t
MPI_Barrier(MPI_COMM_WORLD);
- VRFY((f->shared->page_buf != NULL), "");
- VRFY((f->shared->page_buf->page_size == page_size), "");
- VRFY((f->shared->page_buf->max_size == page_buffer_size), "");
+ VRFY((f->shared->pb_ptr!= NULL), "");
+ VRFY((f->shared->pb_ptr->page_size == page_size), "");
+ VRFY((f->shared->pb_ptr->max_size == page_buffer_size), "");
grp_id = H5Gopen2(file_id, "GROUP", H5P_DEFAULT);
VRFY((grp_id >= 0), "");