diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-04-28 11:06:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-28 11:06:37 (GMT) |
commit | 423bbe6ec0823504abd26b1c06b71c09ed8b94df (patch) | |
tree | 17d008d7ae6ae0146bfa158473bc9d975a8522c9 | |
parent | 5c9718614b3edebfd5742917bea109f35f0fc99e (diff) | |
parent | c9858b5115d1526d752031f232ea652e5a0de28d (diff) | |
download | Doxygen-423bbe6ec0823504abd26b1c06b71c09ed8b94df.zip Doxygen-423bbe6ec0823504abd26b1c06b71c09ed8b94df.tar.gz Doxygen-423bbe6ec0823504abd26b1c06b71c09ed8b94df.tar.bz2 |
Merge pull request #6949 from albert-github/feature/bug_enable_clang_testing
Create option to enable CLANG_ASSISTED_PARSING in test suite
-rw-r--r--[-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..100644 --- 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= |