diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-08-08 03:01:03 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-08-08 03:01:03 (GMT) |
commit | 5a7fcfa213dbd65e8745d842b229ad777deace94 (patch) | |
tree | 0e47c47ccfaab1bdc9ca734239216f4a1d967034 /test/h5test.h | |
parent | 6936f40fb8eb01ab1c50b5c675f9830b4b5ad10b (diff) | |
download | hdf5-5a7fcfa213dbd65e8745d842b229ad777deace94.zip hdf5-5a7fcfa213dbd65e8745d842b229ad777deace94.tar.gz hdf5-5a7fcfa213dbd65e8745d842b229ad777deace94.tar.bz2 |
[svn-r9051] Purpose:
Feature
Description:
Added a feature such that if the test name starts with '-', do not run it
by default.
Platforms tested:
Eirene both serial and parallel.
Misc. update:
Diffstat (limited to 'test/h5test.h')
-rw-r--r-- | test/h5test.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/h5test.h b/test/h5test.h index 7c6500e..396be2b 100644 --- a/test/h5test.h +++ b/test/h5test.h @@ -108,7 +108,6 @@ extern "C" { #endif /* Generally useful testing routines */ -H5TEST_DLL herr_t h5_errors(void *client_data); H5TEST_DLL int h5_cleanup(const char *base_name[], hid_t fapl); H5TEST_DLL char *h5_fixname(const char *base_name, hid_t fapl, char *fullname, size_t size); @@ -134,7 +133,7 @@ H5TEST_DLL int GetTestVerbosity(void); H5TEST_DLL int SetTestVerbosity(int newval); H5TEST_DLL void ParseTestVerbosity(char *argv); H5TEST_DLL int GetTestNumErrs(void); -H5TEST_DLL void *GetTestParameters(void); +H5TEST_DLL const void *GetTestParameters(void); H5TEST_DLL int TestErrPrintf(const char *format, ...); H5TEST_DLL void SetTest(const char *testname, int action); |