Inc CMake min, Add new tests, rework test CMake files

This commit is contained in:
Allen Byrne
2018-02-27 12:57:07 -06:00
parent a4f0666ecd
commit b36bad53d9
79 changed files with 746 additions and 712 deletions

View File

@@ -1385,6 +1385,13 @@ public class TestH5Pfapl {
ret_val_id = H5.H5Pget_evict_on_close(fapl_id);
assertTrue("H5P_evict_on_close", ret_val_id);
}
catch (HDF5PropertyListInterfaceException err) {
// parallel is not supported
if (err.getMinorErrorNumber() != HDF5Constants.H5E_CANTSET) {
err.printStackTrace();
fail("H5P_evict_on_close: " + err);
}
}
catch (Throwable err) {
err.printStackTrace();
fail("H5P_evict_on_close: " + err);