summaryrefslogtreecommitdiffstats
path: root/test/tfile.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1998-07-03 00:57:00 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1998-07-03 00:57:00 (GMT)
commitb81abe336d5ab6498fc6e382822a9f85be1af8e9 (patch)
tree65b9c658f2f0ceef1a520762a869110aada11313 /test/tfile.c
parentb8237b2977e2fc202da40e5ffe72f7827ba6a33d (diff)
downloadhdf5-b81abe336d5ab6498fc6e382822a9f85be1af8e9.zip
hdf5-b81abe336d5ab6498fc6e382822a9f85be1af8e9.tar.gz
hdf5-b81abe336d5ab6498fc6e382822a9f85be1af8e9.tar.bz2
[svn-r445] Added individually named cleanup_xxx routine to each test module file
to cleanup temporary files used by that particular module. Added a cleanup() routine to testhdf5 that calls all the other cleanup_xxx() routines to do cleanup. Cleanup action can be disabled either by -c (no cleanup) option or HDF5_NOCLEANUP environment variable.
Diffstat (limited to 'test/tfile.c')
-rw-r--r--test/tfile.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/tfile.c b/test/tfile.c
index 028c509..d1a6f00 100644
--- a/test/tfile.c
+++ b/test/tfile.c
@@ -301,3 +301,27 @@ test_file(void)
test_file_create(); /* Test file creation (also creation templates) */
test_file_open(); /* Test file opening */
} /* test_file() */
+
+
+/*-------------------------------------------------------------------------
+ * Function: cleanup_file
+ *
+ * Purpose: Cleanup temporary test files
+ *
+ * Return: none
+ *
+ * Programmer: Albert Cheng
+ * July 2, 1998
+ *
+ * Modifications:
+ *
+ *-------------------------------------------------------------------------
+ */
+void
+cleanup_file(void)
+{
+ remove(FILE1);
+ remove(FILE2);
+ remove(FILE3);
+}
+