diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-04-07 13:07:56 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-04-07 13:07:56 (GMT) |
commit | 3140697e40c77acf8c72c5dbe63fbce788362054 (patch) | |
tree | 966a9b2818859e7c96bdb8866611efad57b6e097 | |
parent | fdcde1834dd7f5e694db780793a2074a30834dd4 (diff) | |
parent | 38b1b534c986696dcf146352e7314c2919affbf5 (diff) | |
download | hdf5-3140697e40c77acf8c72c5dbe63fbce788362054.zip hdf5-3140697e40c77acf8c72c5dbe63fbce788362054.tar.gz hdf5-3140697e40c77acf8c72c5dbe63fbce788362054.tar.bz2 |
Merge pull request #403 in HDFFV/hdf5 from ~BYRN/hdf5_adb:hdf5_1_10 to hdf5_1_10
* commit '38b1b534c986696dcf146352e7314c2919affbf5':
HDFFV-10143 add missing javadoc param
Add missing test status
-rw-r--r-- | java/src/hdf/hdf5lib/H5.java | 10 | ||||
-rw-r--r-- | test/plugin.c | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/java/src/hdf/hdf5lib/H5.java b/java/src/hdf/hdf5lib/H5.java index 3c9227f..e47ba76 100644 --- a/java/src/hdf/hdf5lib/H5.java +++ b/java/src/hdf/hdf5lib/H5.java @@ -7229,6 +7229,8 @@ public class H5 implements java.io.Serializable { * * @param plugin_path * IN: Path for location of filter plugin libraries. + * @param index + * IN: The table index (0-based). * * @exception HDF5LibraryException * - Error from the HDF-5 Library. @@ -7240,6 +7242,8 @@ public class H5 implements java.io.Serializable { * * @param plugin_path * IN: Path for location of filter plugin libraries. + * @param index + * IN: The table index (0-based). * * @exception HDF5LibraryException * - Error from the HDF-5 Library. @@ -7249,6 +7253,9 @@ public class H5 implements java.io.Serializable { /** * H5PLremove removes the plugin path at the specified index. * + * @param index + * IN: The table index (0-based). + * * @exception HDF5LibraryException * - Error from the HDF-5 Library. **/ @@ -7257,6 +7264,9 @@ public class H5 implements java.io.Serializable { /** * H5PLget retrieves the plugin path at the specified index. * + * @param index + * IN: The table index (0-based). + * * @return the current path at the index in plugin path table * * @exception HDF5LibraryException diff --git a/test/plugin.c b/test/plugin.c index 041f702..2939595 100644 --- a/test/plugin.c +++ b/test/plugin.c @@ -774,6 +774,7 @@ test_filter_path_apis(void) ret = H5PLappend(pathname); } H5E_END_TRY if(ret >= 0) TEST_ERROR + PASSED(); TESTING(" remove (exceed max)"); /* Exceed the max path removal */ |