diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-08-13 21:59:51 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-08-13 21:59:51 (GMT) |
commit | fa2f99e642e732753a0268cbe06fdbd6257778dc (patch) | |
tree | e92101decab69f0eee10a8645e0d4a9e98042066 /test/testhdf5.c | |
parent | 7d636b82691439dab7c7e9e33f5cffbda1fb4066 (diff) | |
download | hdf5-fa2f99e642e732753a0268cbe06fdbd6257778dc.zip hdf5-fa2f99e642e732753a0268cbe06fdbd6257778dc.tar.gz hdf5-fa2f99e642e732753a0268cbe06fdbd6257778dc.tar.bz2 |
[svn-r9080] 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/testhdf5.c')
-rw-r--r-- | test/testhdf5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testhdf5.c b/test/testhdf5.c index e9941de..e055f56 100644 --- a/test/testhdf5.c +++ b/test/testhdf5.c @@ -69,7 +69,7 @@ main(int argc, char *argv[]) TestInfo(argv[0]); /* Parse command line arguments */ - TestParseCmdLine(argc,argv,&Summary,&CleanUp); + TestParseCmdLine(argc,argv,&Summary,&CleanUp,NULL); /* Perform requested testing */ PerformTests(); |