Set V112 as the latest format and extend the arrays of version bounds.

This commit is contained in:
Vailin Choi
2019-04-04 16:29:37 -05:00
parent aa696a4771
commit 0073f19897
20 changed files with 213 additions and 168 deletions

View File

@@ -214,7 +214,7 @@ public class TestH5P {
@Test(expected = HDF5FunctionArgumentException.class)
public void testH5Pset_libver_bounds_invalidhigh() throws Throwable {
H5.H5Pset_libver_bounds(fapl_id, HDF5Constants.H5F_LIBVER_V110, HDF5Constants.H5F_LIBVER_V110+1);
H5.H5Pset_libver_bounds(fapl_id, HDF5Constants.H5F_LIBVER_V112, HDF5Constants.H5F_LIBVER_V112+1);
}
@Test