summaryrefslogtreecommitdiffstats
path: root/test/tcoords.c
diff options
context:
space:
mode:
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;
}