diff options
author | Vailin Choi <vchoi@hdfgroup.org> | 2018-02-14 19:08:23 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@hdfgroup.org> | 2018-02-14 19:08:23 (GMT) |
commit | 23cf3a42989e6fd4c258e4cc8d58f0cf9a9336ce (patch) | |
tree | a90aa9e195cbc44bd743da8cb92de72364ae4cb8 /test/tfile.c | |
parent | 0b98ddd12324e5dae17dd8135bf72094d66e5d17 (diff) | |
parent | f5c5eba7837f33a44e521ea1c9aca479f1dc1bba (diff) | |
download | hdf5-23cf3a42989e6fd4c258e4cc8d58f0cf9a9336ce.zip hdf5-23cf3a42989e6fd4c258e4cc8d58f0cf9a9336ce.tar.gz hdf5-23cf3a42989e6fd4c258e4cc8d58f0cf9a9336ce.tar.bz2 |
Merge pull request #896 in HDFFV/hdf5 from ~VCHOI/my_hdf5_fork:develop to develop
* commit 'f5c5eba7837f33a44e521ea1c9aca479f1dc1bba':
Fix for daily test failure for configuration with --disable-deprecated-symbols
Diffstat (limited to 'test/tfile.c')
-rw-r--r-- | test/tfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tfile.c b/test/tfile.c index 8b66603..f1a4a1d 100644 --- a/test/tfile.c +++ b/test/tfile.c @@ -5267,7 +5267,7 @@ test_libver_bounds_super(hid_t fapl) /* This will result in superblock version 2 */ fcpl = H5Pcreate(H5P_FILE_CREATE); CHECK(fcpl, FAIL, "H5Pcreate"); - ret = H5Pset_file_space(fcpl, H5F_FILE_SPACE_ALL_PERSIST, (hsize_t)0); + ret = H5Pset_file_space_strategy(fcpl, H5F_FSPACE_STRATEGY_FSM_AGGR, 1, (hsize_t)1); CHECK(ret, FAIL, "H5Pset_file_space"); /* Verify superblock version when creating a file with input fapl, |