diff options
Diffstat (limited to 'testing/runtests.py')
-rwxr-xr-x | testing/runtests.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testing/runtests.py b/testing/runtests.py index d132da5..fa3c186 100755 --- a/testing/runtests.py +++ b/testing/runtests.py @@ -116,6 +116,8 @@ class Tester: print('LATEX_OUTPUT=%s/latex' % self.test_out, file=f) if self.args.subdirs: print('CREATE_SUBDIRS=YES', file=f) + if (self.args.clang): + print('CLANG_ASSISTED_PARSING=YES', file=f) if (self.args.cfgs): for cfg in list(itertools.chain.from_iterable(self.args.cfgs)): if cfg.find('=') == -1: @@ -435,6 +437,9 @@ def main(): action="store_true") parser.add_argument('--subdirs',help='use the configuration parameter CREATE_SUBDIRS=YES', action="store_true") + parser.add_argument('--clang',help='use CLANG_ASSISTED_PARSING, works only when ' + 'doxygen has been compiled with "use_libclang"', + action="store_true") parser.add_argument('--keep',help='keep result directories', action="store_true") parser.add_argument('--cfg',nargs='+',dest='cfgs',action='append',help= |