summaryrefslogtreecommitdiffstats
path: root/test/titerate.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-04-22 06:25:12 (GMT)
committerGitHub <noreply@github.com>2023-04-22 06:25:12 (GMT)
commit7707859279a60b32d2b6c915442a7c04d44445b4 (patch)
tree890d16aa2408b270368b36ea4f05ca20fe2f16f6 /test/titerate.c
parenta4371b6fce577852691dfdeac642dec1dd4b9453 (diff)
downloadhdf5-7707859279a60b32d2b6c915442a7c04d44445b4.zip
hdf5-7707859279a60b32d2b6c915442a7c04d44445b4.tar.gz
hdf5-7707859279a60b32d2b6c915442a7c04d44445b4.tar.bz2
Merge with develop (#2790)
Diffstat (limited to 'test/titerate.c')
-rw-r--r--test/titerate.c17
1 files changed, 11 insertions, 6 deletions
diff --git a/test/titerate.c b/test/titerate.c
index 48e0aa9..82d8e9f 100644
--- a/test/titerate.c
+++ b/test/titerate.c
@@ -491,7 +491,7 @@ test_iter_attr(hid_t fapl, hbool_t new_format)
if ((ret = H5Aiterate2(dataset, H5_INDEX_NAME, H5_ITER_INC, &idx, aiter_cb, &info)) > 0)
TestErrPrintf("Attribute iteration function didn't return zero correctly!\n");
- /* Test all attributes on dataset, when callback always returns 1 */
+ /* Test all attributes on dataset, when callback always returns 2 */
/* This also tests the "restarting" ability, because the index changes */
info.command = RET_TWO;
i = 0;
@@ -1011,8 +1011,11 @@ test_corrupted_attnamelen(void)
hbool_t driver_is_default_compatible;
const char *testfile = H5_get_srcdir_filename(CORRUPTED_ATNAMELEN_FILE); /* Corrected test file name */
- const char *err_message = "attribute name has different length than stored length";
- /* the error message produced when the failure occurs */
+ /* The error message produced when the failure occurs
+ *
+ * FIXME: This is incredibly fragile!
+ */
+ const char *err_message = "ran off end of input buffer while decoding";
/* Output message about test being performed */
MESSAGE(5, ("Testing the Handling of Corrupted Attribute's Name Length\n"));
@@ -1203,12 +1206,14 @@ test_iterate(void)
* Programmer: Quincey Koziol
* April 5, 2000
*
- * Modifications:
- *
*-------------------------------------------------------------------------
*/
void
cleanup_iterate(void)
{
- HDremove(DATAFILE);
+ H5E_BEGIN_TRY
+ {
+ H5Fdelete(DATAFILE, H5P_DEFAULT);
+ }
+ H5E_END_TRY;
}