[svn-r30075] Description:

Bring object/dataset/group/named datatype features from revise_chunks
branch to trunk.  Also CMake support for h5format_convert and a bunch of
misc. cleanups.

Tested on:
    MacOSX/64 10.11.5 (amazon) w/serial, parallel & production
    (h5committest forthcoming)
This commit is contained in:
Quincey Koziol
2016-06-14 18:07:03 -05:00
parent 7a9e13afdb
commit d3396a7953
55 changed files with 2054 additions and 103 deletions

View File

@@ -368,4 +368,14 @@ public class TestH5Gbasic {
assertNotNull(info);
}
@Test(expected = HDF5LibraryException.class)
public void testH5Gflush_invalid() throws Throwable {
H5.H5Gflush(-1);
}
@Test(expected = HDF5LibraryException.class)
public void testH5Grefresh_invalid() throws Throwable {
H5.H5Grefresh(-1);
}
}