summaryrefslogtreecommitdiffstats
path: root/testpar
diff options
context:
space:
mode:
authorRichard Warren <Richard.Warren@hdfgroup.org>2019-10-05 14:18:17 (GMT)
committerRichard Warren <Richard.Warren@hdfgroup.org>2019-10-05 14:18:17 (GMT)
commit21a18a1cd2547b83c53395b4a6bb11499199f923 (patch)
tree4d11608bdf58d0600e31eec5bc8a628b99dab28e /testpar
parentf2be6da71479c4d20e61af8dfebd2aa0050427d9 (diff)
downloadhdf5-21a18a1cd2547b83c53395b4a6bb11499199f923.zip
hdf5-21a18a1cd2547b83c53395b4a6bb11499199f923.tar.gz
hdf5-21a18a1cd2547b83c53395b4a6bb11499199f923.tar.bz2
Make the initial bug fixes to allow >2GB writes with Independent IO
Diffstat (limited to 'testpar')
-rw-r--r--testpar/t_file.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/testpar/t_file.c b/testpar/t_file.c
index 204095b..e5a4f8a 100644
--- a/testpar/t_file.c
+++ b/testpar/t_file.c
@@ -145,7 +145,7 @@ test_page_buffer_access(void)
ret = H5Pset_file_space_strategy(fcpl, H5F_FSPACE_STRATEGY_PAGE, 1, (hsize_t)0);
VRFY((ret == 0), "");
- ret = H5Pset_file_space_page_size(fcpl, sizeof(int)*100);
+ ret = H5Pset_file_space_page_size(fcpl, sizeof(int)*128);
VRFY((ret == 0), "");
ret = H5Pset_page_buffer_size(fapl, sizeof(int)*100000, 0, 0);
VRFY((ret == 0), "");
@@ -180,7 +180,6 @@ test_page_buffer_access(void)
data[i] = -1;
if(MAINPROCESS) {
hid_t fapl_self = H5I_INVALID_HID;
-
fapl_self = create_faccess_plist(MPI_COMM_SELF, MPI_INFO_NULL, facc_type);
ret = H5Pset_page_buffer_size(fapl_self, sizeof(int)*1000, 0, 0);