diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-20 16:00:24 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-20 16:00:24 (GMT) |
commit | 4486398a983615ef2561b331027e59ba75552304 (patch) | |
tree | bc4c021dde5dde827b12c0a8f871ca21d32c6e41 /test | |
parent | 19257978d9ad35ae430e462524ba4b15f181e85f (diff) | |
download | hdf5-4486398a983615ef2561b331027e59ba75552304.zip hdf5-4486398a983615ef2561b331027e59ba75552304.tar.gz hdf5-4486398a983615ef2561b331027e59ba75552304.tar.bz2 |
[svn-r13347] Description:
Deprecate H5Adelete in favor of H5Adelete2, which corresponds to the new
pattern of specifying an object's location.
Tested on:
Linux/32 2.6 (chicago)
Linux/64 2.6 (chicago2)
Diffstat (limited to 'test')
-rw-r--r-- | test/tattr.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/test/tattr.c b/test/tattr.c index 723b37f..3e5ab19 100644 --- a/test/tattr.c +++ b/test/tattr.c @@ -3386,8 +3386,8 @@ test_attr_corder_transition(hid_t fcpl, hid_t fapl) /* Delete several attributes from object, until attribute storage resumes compact form */ for(u = max_compact; u >= min_dense; u--) { sprintf(attrname, "attr %02u", u); - ret = H5Adelete(my_dataset, attrname); - CHECK(ret, FAIL, "H5Adelete"); + ret = H5Adelete2(my_dataset, ".", attrname, H5P_DEFAULT); + CHECK(ret, FAIL, "H5Adelete2"); /* Verify state of object */ ret = H5O_num_attrs_test(my_dataset, &nattrs); @@ -3406,8 +3406,8 @@ test_attr_corder_transition(hid_t fcpl, hid_t fapl) /* Delete another attribute, to push attribute storage into compact form */ sprintf(attrname, "attr %02u", (min_dense - 1)); - ret = H5Adelete(my_dataset, attrname); - CHECK(ret, FAIL, "H5Adelete"); + ret = H5Adelete2(my_dataset, ".", attrname, H5P_DEFAULT); + CHECK(ret, FAIL, "H5Adelete2"); /* Verify state of object */ ret = H5O_num_attrs_test(my_dataset, &nattrs); @@ -3510,8 +3510,8 @@ test_attr_corder_transition(hid_t fcpl, hid_t fapl) /* Delete several attributes from object, until attribute storage resumes compact form */ for(u = max_compact; u >= min_dense; u--) { sprintf(attrname, "attr %02u", u); - ret = H5Adelete(my_dataset, attrname); - CHECK(ret, FAIL, "H5Adelete"); + ret = H5Adelete2(my_dataset, ".", attrname, H5P_DEFAULT); + CHECK(ret, FAIL, "H5Adelete2"); /* Verify state of object */ ret = H5O_num_attrs_test(my_dataset, &nattrs); @@ -3530,8 +3530,8 @@ test_attr_corder_transition(hid_t fcpl, hid_t fapl) /* Delete another attribute, to push attribute storage into compact form */ sprintf(attrname, "attr %02u", (min_dense - 1)); - ret = H5Adelete(my_dataset, attrname); - CHECK(ret, FAIL, "H5Adelete"); + ret = H5Adelete2(my_dataset, ".", attrname, H5P_DEFAULT); + CHECK(ret, FAIL, "H5Adelete2"); /* Verify state of object */ ret = H5O_num_attrs_test(my_dataset, &nattrs); @@ -3575,12 +3575,12 @@ test_attr_corder_transition(hid_t fcpl, hid_t fapl) /* Delete all attributes */ for(u = max_compact; u > 0; u--) { sprintf(attrname, "attr %02u", u); - ret = H5Adelete(my_dataset, attrname); - CHECK(ret, FAIL, "H5Adelete"); + ret = H5Adelete2(my_dataset, ".", attrname, H5P_DEFAULT); + CHECK(ret, FAIL, "H5Adelete2"); } /* end for */ sprintf(attrname, "attr %02u", 0); - ret = H5Adelete(my_dataset, attrname); - CHECK(ret, FAIL, "H5Adelete"); + ret = H5Adelete2(my_dataset, ".", attrname, H5P_DEFAULT); + CHECK(ret, FAIL, "H5Adelete2"); } /* end for */ /* Close Datasets */ @@ -5599,8 +5599,8 @@ test_attr_shared_delete(hid_t fcpl, hid_t fapl) sprintf(attrname, "attr %02u", u); /* Delete second dataset's attribute */ - ret = H5Adelete(dataset2, attrname); - CHECK(ret, FAIL, "H5Adelete"); + ret = H5Adelete2(fid, DSET2_NAME, attrname, H5P_DEFAULT); + CHECK(ret, FAIL, "H5Adelete2"); /* Check refcount on attributes now */ |