summaryrefslogtreecommitdiffstats
path: root/test/tcoords.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/tcoords.c')
-rw-r--r--test/tcoords.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/tcoords.c b/test/tcoords.c
index cf84aba..f2bad20 100644
--- a/test/tcoords.c
+++ b/test/tcoords.c
@@ -720,5 +720,9 @@ test_coords(void)
void
cleanup_coords(void)
{
- HDremove(FILENAME);
+ H5E_BEGIN_TRY
+ {
+ H5Fdelete(FILENAME, H5P_DEFAULT);
+ }
+ H5E_END_TRY;
}