summaryrefslogtreecommitdiffstats
path: root/test/tcoords.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/tcoords.c
parenta4371b6fce577852691dfdeac642dec1dd4b9453 (diff)
downloadhdf5-7707859279a60b32d2b6c915442a7c04d44445b4.zip
hdf5-7707859279a60b32d2b6c915442a7c04d44445b4.tar.gz
hdf5-7707859279a60b32d2b6c915442a7c04d44445b4.tar.bz2
Merge with develop (#2790)
Diffstat (limited to 'test/tcoords.c')
-rw-r--r--test/tcoords.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/tcoords.c b/test/tcoords.c
index cf84aba..230db60 100644
--- a/test/tcoords.c
+++ b/test/tcoords.c
@@ -713,12 +713,14 @@ test_coords(void)
* Programmer: Raymond Lu
* 20 Dec. 2007
*
- * Modifications:
- *
*-------------------------------------------------------------------------
*/
void
cleanup_coords(void)
{
- HDremove(FILENAME);
+ H5E_BEGIN_TRY
+ {
+ H5Fdelete(FILENAME, H5P_DEFAULT);
+ }
+ H5E_END_TRY;
}