summaryrefslogtreecommitdiffstats
path: root/test/tskiplist.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/tskiplist.c')
-rw-r--r--test/tskiplist.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/tskiplist.c b/test/tskiplist.c
index 20bde76..cf88daf 100644
--- a/test/tskiplist.c
+++ b/test/tskiplist.c
@@ -181,6 +181,11 @@ test_skiplist_insert(void)
found_item=H5SL_search(slist,&search_key);
VERIFY(found_item, NULL, "H5SL_search");
+ /* Attempt to insert duplicate key (should fail) */
+ search_key=2;
+ ret=H5SL_insert(slist,&search_key,&search_key);
+ VERIFY(ret, FAIL, "H5SL_insert");
+
/* Close the skip list */
ret=H5SL_close(slist);
CHECK(ret, FAIL, "H5SL_close");