summaryrefslogtreecommitdiffstats
path: root/test/links.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2014-07-31 19:26:19 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2014-07-31 19:26:19 (GMT)
commitbeb6f83cfd696e835970091f730a23db31381455 (patch)
tree8250eb2f16a6c7efbf7b54ffcfe3e968aa1b278b /test/links.c
parent33ea1ada248725e4cce6316c503e5c760bcca49c (diff)
downloadhdf5-beb6f83cfd696e835970091f730a23db31381455.zip
hdf5-beb6f83cfd696e835970091f730a23db31381455.tar.gz
hdf5-beb6f83cfd696e835970091f730a23db31381455.tar.bz2
[svn-r25500] fix HDFFV-8888 - H5Ldelete_by_idx fails on non-existent group name.
tested Jam. minor change.
Diffstat (limited to 'test/links.c')
-rw-r--r--test/links.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/links.c b/test/links.c
index f1e6daa..09c2d4d 100644
--- a/test/links.c
+++ b/test/links.c
@@ -11422,6 +11422,12 @@ delete_by_idx(hid_t fapl)
} H5E_END_TRY;
if(ret >= 0) TEST_ERROR
+ /* Check for deletion on non-existing group */
+ H5E_BEGIN_TRY {
+ ret = H5Ldelete_by_idx(group_id, "None", idx_type, order, (hsize_t)0, H5P_DEFAULT);
+ } H5E_END_TRY;
+ if(ret >= 0) TEST_ERROR
+
/* Create several links, up to limit of compact form */
for(u = 0; u < max_compact; u++) {
hid_t group_id2; /* Group ID */