summaryrefslogtreecommitdiffstats
path: root/test/testhdf5.h
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/testhdf5.h
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/testhdf5.h')
-rw-r--r--test/testhdf5.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/test/testhdf5.h b/test/testhdf5.h
index 6f4355b..04ee954 100644
--- a/test/testhdf5.h
+++ b/test/testhdf5.h
@@ -139,4 +139,13 @@ void test_h5s(void);
void test_h5d(void);
void test_attr(void);
-#endif /* HDF5TEST_H */
+/* Prototypes for the cleanup routines */
+void cleanup_metadata(void);
+void cleanup_file(void);
+void cleanup_heap(void);
+void cleanup_ohdr(void);
+void cleanup_stab(void);
+void cleanup_h5s(void);
+void cleanup_attr(void);
+
+#endif /* HDF5cleanup_H */