diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-03-30 15:12:50 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-03-30 15:12:50 (GMT) |
commit | 6e89ba320794568747456e826b263a2dc6e1f822 (patch) | |
tree | 299de711c9aed7e57f03ecfb6d146489d28e544d /test | |
parent | ba2cfde1fda880bf9d4b18dd439100ee5c4680bb (diff) | |
download | hdf5-6e89ba320794568747456e826b263a2dc6e1f822.zip hdf5-6e89ba320794568747456e826b263a2dc6e1f822.tar.gz hdf5-6e89ba320794568747456e826b263a2dc6e1f822.tar.bz2 |
Add missing declarations
Diffstat (limited to 'test')
-rw-r--r-- | test/h5test.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/h5test.h b/test/h5test.h index 065c089..0a7744d 100644 --- a/test/h5test.h +++ b/test/h5test.h @@ -157,6 +157,15 @@ H5TEST_DLL int print_func(const char *format, ...); H5TEST_DLL int h5_make_local_copy(const char *origfilename, const char *local_copy_name); H5TEST_DLL herr_t h5_verify_cached_stabs(const char *base_name[], hid_t fapl); +/* Functions that will replace VFD-dependent functions that violate + * the single responsibility principle. Unlike their predecessors, + * these new functions do not have hidden side effects. + */ +/* h5_fileaccess() replacement */ +/* h5_clean_files() replacements */ +H5TEST_DLL void h5_delete_test_file(const char *base_name, hid_t fapl); +H5TEST_DLL void h5_delete_all_test_files(const char *base_name[], hid_t fapl); + /* Routines for operating on the list of tests (for the "all in one" tests) */ H5TEST_DLL void TestUsage(void); H5TEST_DLL void AddTest(const char *TheName, void (*TheCall) (void), |