diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2018-02-14 18:03:32 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2018-02-14 18:03:32 (GMT) |
commit | 2ee6908b6ab3e497b54cd2c739f78c222f1c27eb (patch) | |
tree | 4a2685fd924fd921b517f7fc2c23a6f9d0adb347 | |
parent | 66ea3b8fb9fdff0a0ffa6ffd318ad5fc2c9a8f4b (diff) | |
download | hdf5-2ee6908b6ab3e497b54cd2c739f78c222f1c27eb.zip hdf5-2ee6908b6ab3e497b54cd2c739f78c222f1c27eb.tar.gz hdf5-2ee6908b6ab3e497b54cd2c739f78c222f1c27eb.tar.bz2 |
Fix for daily test failure for configuration with --disable-deprecated-symbols
-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, |