summaryrefslogtreecommitdiffstats
path: root/java/test/TestH5Oparams.java
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@koziol.gov>2019-08-21 20:36:17 (GMT)
committerQuincey Koziol <koziol@koziol.gov>2019-08-21 20:36:17 (GMT)
commit5d6f27b32be6919ab64046bd8ff27c69d84a2c17 (patch)
tree3774e701d57114cafa7bc4ab400e0fdb054472e6 /java/test/TestH5Oparams.java
parent0b85fa6004cb96d222329614fa446b98cfcc06ea (diff)
parentf0272e4945f047f17043b484db594df131222f1e (diff)
downloadhdf5-5d6f27b32be6919ab64046bd8ff27c69d84a2c17.zip
hdf5-5d6f27b32be6919ab64046bd8ff27c69d84a2c17.tar.gz
hdf5-5d6f27b32be6919ab64046bd8ff27c69d84a2c17.tar.bz2
Merge branch 'develop' into shared_file_ptr
Diffstat (limited to 'java/test/TestH5Oparams.java')
-rw-r--r--java/test/TestH5Oparams.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/java/test/TestH5Oparams.java b/java/test/TestH5Oparams.java
index d340ee7..cac3dcd 100644
--- a/java/test/TestH5Oparams.java
+++ b/java/test/TestH5Oparams.java
@@ -159,4 +159,19 @@ public class TestH5Oparams {
H5.H5Orefresh(-1);
}
+ @Test(expected = HDF5LibraryException.class)
+ public void testH5Odisable_mdc_flushes() throws Throwable {
+ H5.H5Odisable_mdc_flushes(-1);
+ }
+
+ @Test(expected = HDF5LibraryException.class)
+ public void testH5Oenable_mdc_flushes() throws Throwable {
+ H5.H5Oenable_mdc_flushes(-1);
+ }
+
+ @Test(expected = HDF5LibraryException.class)
+ public void testH5Oare_mdc_flushes_disabled() throws Throwable {
+ H5.H5Oare_mdc_flushes_disabled(-1);
+ }
+
}