diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-03-30 23:35:16 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-03-30 23:35:16 (GMT) |
commit | d7a5f94d66390f2a777e51dba2e781d7f84e0656 (patch) | |
tree | 2db9623a283851a7273b2d01096f45c06c6a3d30 /test/h5test.h | |
parent | c3d9b510b4e65cd32ec9708fd369d31b77d76ea6 (diff) | |
download | hdf5-d7a5f94d66390f2a777e51dba2e781d7f84e0656.zip hdf5-d7a5f94d66390f2a777e51dba2e781d7f84e0656.tar.gz hdf5-d7a5f94d66390f2a777e51dba2e781d7f84e0656.tar.bz2 |
[svn-r8289] Purpose:
Feature
Description:
Added to AddTest() a generic parameters pointer argument to
allow some extra parameters for some tests. E.g., test file
names can be customized during runtime and passed into the
test routines.
Platforms tested:
"h5committested".
Also run compat test in eirene.
Diffstat (limited to 'test/h5test.h')
-rw-r--r-- | test/h5test.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/h5test.h b/test/h5test.h index 1b37feb..a903349 100644 --- a/test/h5test.h +++ b/test/h5test.h @@ -115,7 +115,8 @@ H5TEST_DLL int print_func(const char *format, ...); /* 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), - void (*Cleanup) (void), const char *TheDescr); + void (*Cleanup) (void), const char *TheDescr, + const void *Parameters); H5TEST_DLL void TestInfo(const char *ProgName); H5TEST_DLL void TestParseCmdLine(int argc, char *argv[], int *Summary, int *CleanUp); H5TEST_DLL void PerformTests(void); |