mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
Update libvers usage
This commit is contained in:
parent
a7d74160d0
commit
da2ec6163d
@ -244,7 +244,7 @@ public class TestH5Fparams {
|
||||
catch (Throwable err) {
|
||||
fail("H5.H5Fcreate: " + err);
|
||||
}
|
||||
H5.H5Fset_libver_bounds(fid, HDF5Constants.H5F_LIBVER_V110, HDF5Constants.H5F_LIBVER_V110+1);
|
||||
H5.H5Fset_libver_bounds(fid, HDF5Constants.H5F_LIBVER_LATEST, HDF5Constants.H5F_LIBVER_LATEST+1);
|
||||
}
|
||||
finally {
|
||||
try {H5.H5Fclose(fid);} catch (Exception ex) {}
|
||||
|
@ -209,12 +209,12 @@ public class TestH5P {
|
||||
|
||||
@Test(expected = HDF5FunctionArgumentException.class)
|
||||
public void testH5Pset_libver_bounds_invalidlow() throws Throwable {
|
||||
H5.H5Pset_libver_bounds(fapl_id, 5, HDF5Constants.H5F_LIBVER_LATEST);
|
||||
H5.H5Pset_libver_bounds(fapl_id, HDF5Constants.H5F_LIBVER_EARLIEST-1, HDF5Constants.H5F_LIBVER_LATEST);
|
||||
}
|
||||
|
||||
@Test(expected = HDF5FunctionArgumentException.class)
|
||||
public void testH5Pset_libver_bounds_invalidhigh() throws Throwable {
|
||||
H5.H5Pset_libver_bounds(fapl_id, HDF5Constants.H5F_LIBVER_V112, HDF5Constants.H5F_LIBVER_V112+1);
|
||||
H5.H5Pset_libver_bounds(fapl_id, HDF5Constants.H5F_LIBVER_LATEST, HDF5Constants.H5F_LIBVER_LATEST+1);
|
||||
}
|
||||
|
||||
@Test
|
||||
|
@ -127,7 +127,8 @@ static void usage(const char *prog) {
|
||||
PRINTVALSTREAM(rawoutstream, " 0: This is H5F_LIBVER_EARLIEST in H5F_libver_t struct\n");
|
||||
PRINTVALSTREAM(rawoutstream, " 1: This is H5F_LIBVER_V18 in H5F_libver_t struct\n");
|
||||
PRINTVALSTREAM(rawoutstream, " 2: This is H5F_LIBVER_V110 in H5F_libver_t struct\n");
|
||||
PRINTVALSTREAM(rawoutstream, " (H5F_LIBVER_LATEST is aliased to H5F_LIBVER_V110 for this release\n");
|
||||
PRINTVALSTREAM(rawoutstream, " 3: This is H5F_LIBVER_V112 in H5F_libver_t struct\n");
|
||||
PRINTVALSTREAM(rawoutstream, " (H5F_LIBVER_LATEST is aliased to H5F_LIBVER_V112 for this release\n");
|
||||
PRINTVALSTREAM(rawoutstream, "\n");
|
||||
PRINTVALSTREAM(rawoutstream, " FS_STRATEGY is a string indicating the file space strategy used:\n");
|
||||
PRINTVALSTREAM(rawoutstream, " FSM_AGGR:\n");
|
||||
|
@ -50,7 +50,8 @@ usage: h5repack [OPTIONS] file1 file2
|
||||
0: This is H5F_LIBVER_EARLIEST in H5F_libver_t struct
|
||||
1: This is H5F_LIBVER_V18 in H5F_libver_t struct
|
||||
2: This is H5F_LIBVER_V110 in H5F_libver_t struct
|
||||
(H5F_LIBVER_LATEST is aliased to H5F_LIBVER_V110 for this release
|
||||
3: This is H5F_LIBVER_V112 in H5F_libver_t struct
|
||||
(H5F_LIBVER_LATEST is aliased to H5F_LIBVER_V112 for this release
|
||||
|
||||
FS_STRATEGY is a string indicating the file space strategy used:
|
||||
FSM_AGGR:
|
||||
|
Loading…
x
Reference in New Issue
Block a user