diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-15 22:08:08 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-15 22:08:08 (GMT) |
commit | 51580d9be11bafb5de9c2fe1371a75aa5f6a4d03 (patch) | |
tree | 8affd6a76abfaeea7b60ea758349863f78f9fb24 /test | |
parent | d4c0a98a9b9b6225f73c722f8d6c34b055e7436f (diff) | |
download | hdf5-51580d9be11bafb5de9c2fe1371a75aa5f6a4d03.zip hdf5-51580d9be11bafb5de9c2fe1371a75aa5f6a4d03.tar.gz hdf5-51580d9be11bafb5de9c2fe1371a75aa5f6a4d03.tar.bz2 |
[svn-r12919] Description:
More progress toward getting H5Ldelete_by_idx() working - removals on
densely stored links should work now (still needs some more tests). Still
need to write code for removals on "old-style" groups.
Tested on:
FreeBSD/32 4.11 (sleipnir)
Diffstat (limited to 'test')
-rw-r--r-- | test/links.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/links.c b/test/links.c index d4083ec..16dbe88 100644 --- a/test/links.c +++ b/test/links.c @@ -6532,7 +6532,6 @@ delete_by_idx(hid_t fapl) /* Verify state of group (empty) */ if(H5G_has_links_test(group_id, NULL) == TRUE) TEST_ERROR -#ifdef NOT_YET /* Create more links, to push group into dense form */ for(u = 0; u < (max_compact * 2); u++) { hid_t group_id2; /* Group ID */ @@ -6579,9 +6578,6 @@ delete_by_idx(hid_t fapl) /* Delete last link in creation order */ if(H5Ldelete_by_idx(group_id, ".", H5L_INDEX_CRT_ORDER, H5_ITER_INC, (hsize_t)0, H5P_DEFAULT) < 0) TEST_ERROR -#else /* NOT_YET */ -HDfprintf(stderr, "Finish deletion tests!\n"); -#endif /* NOT_YET */ /* Verify state of group (empty) */ if(H5G_has_links_test(group_id, NULL) == TRUE) TEST_ERROR |