summaryrefslogtreecommitdiffstats
path: root/test/h5test.h
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2004-08-13 21:53:26 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2004-08-13 21:53:26 (GMT)
commit60412f524d06178ebd1ad7ba7ac720a1cc061888 (patch)
tree927d45fa691eec79a929ff30469e3cbeb468864b /test/h5test.h
parent188a2cfdc741ecfd137307244e089dc5d215cbde (diff)
downloadhdf5-60412f524d06178ebd1ad7ba7ac720a1cc061888.zip
hdf5-60412f524d06178ebd1ad7ba7ac720a1cc061888.tar.gz
hdf5-60412f524d06178ebd1ad7ba7ac720a1cc061888.tar.bz2
[svn-r9079] Purpose:
Feature Description: Changed TestParseCmdLine to accept an optional extra_parse() function provided by indidivual test application. Extra_parse() can handle extra options special to that test application. Updated testhdf5.c to use the new syntax of TestParseCmdLine(). Platforms tested: On eirene both serial and parallel.
Diffstat (limited to 'test/h5test.h')
-rw-r--r--test/h5test.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/h5test.h b/test/h5test.h
index 396be2b..6713b92 100644
--- a/test/h5test.h
+++ b/test/h5test.h
@@ -124,7 +124,7 @@ H5TEST_DLL void AddTest(const char *TheName, void (*TheCall) (void),
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 TestParseCmdLine(int argc, char *argv[], int *Summary, int *CleanUp, int (*extra_parse)(int ac, char *av[]));
H5TEST_DLL void PerformTests(void);
H5TEST_DLL void TestSummary(void);
H5TEST_DLL void TestCleanup(void);