diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-04-03 21:35:01 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-04-03 21:35:01 (GMT) |
commit | 4c8f0b2463410eff8a0a6c4531ad051d7c33abd1 (patch) | |
tree | 07f5d45649e764a556be322e587d49a7a023cb6b /test/h5test.h | |
parent | 6705762081f1bbea41037cc44973dc20d85832fc (diff) | |
download | hdf5-4c8f0b2463410eff8a0a6c4531ad051d7c33abd1.zip hdf5-4c8f0b2463410eff8a0a6c4531ad051d7c33abd1.tar.gz hdf5-4c8f0b2463410eff8a0a6c4531ad051d7c33abd1.tar.bz2 |
[svn-r8298] Purpose:
Code cleanup
Description:
Added SetTest() to handle test controls.
Platforms tested:
h5committested.
Diffstat (limited to 'test/h5test.h')
-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 fa4ed43..99706f0 100644 --- a/test/h5test.h +++ b/test/h5test.h @@ -68,6 +68,13 @@ #define VERBOSE_HI (GetTestVerbosity()>=VERBO_HI) /* + * Test controls definitions. + */ +#define SKIPTEST 1 /* Skip this test */ +#define ONLYTEST 2 /* Do only this test */ +#define BEGINTEST 3 /* Skip all tests before this test */ + +/* * This contains the filename prefix specificied as command line option for * the parallel test files. */ @@ -129,6 +136,8 @@ H5TEST_DLL void ParseTestVerbosity(char *argv); H5TEST_DLL int GetTestNumErrs(void); H5TEST_DLL void *GetTestParameters(void); H5TEST_DLL int TestErrPrintf(const char *format, ...); +H5TEST_DLL void SetTest(const char *testname, int action); + #ifdef H5_HAVE_PARALLEL H5TEST_DLL int h5_set_info_object(void); |