summaryrefslogtreecommitdiffstats
path: root/testing/runtests.py
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-04-03 17:48:15 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-04-03 17:48:15 (GMT)
commit95a6451107f8964b1c2290e2f4e9761a64be124b (patch)
treecb7a746d28c7f482cf93dfb00d3c9232a06d163a /testing/runtests.py
parent4575eef95039149eb19c4f5e5bf99e67e36afb5a (diff)
downloadDoxygen-95a6451107f8964b1c2290e2f4e9761a64be124b.zip
Doxygen-95a6451107f8964b1c2290e2f4e9761a64be124b.tar.gz
Doxygen-95a6451107f8964b1c2290e2f4e9761a64be124b.tar.bz2
Create test possibilities for xhtml and pdf output
Regression of default output (INPUT setting was overruled).
Diffstat (limited to 'testing/runtests.py')
-rw-r--r--testing/runtests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/runtests.py b/testing/runtests.py
index d1ce5fd..a714cd8 100644
--- a/testing/runtests.py
+++ b/testing/runtests.py
@@ -63,11 +63,12 @@ class Tester:
os.mkdir(self.test_out)
shutil.copy(self.args.inputdir+'/Doxyfile',self.test_out)
with open(self.test_out+'/Doxyfile','a') as f:
+ print('INPUT=%s/%s' % (self.args.inputdir,self.test), file=f)
+ print('STRIP_FROM_PATH=%s' % self.args.inputdir, file=f)
+ print('EXAMPLE_PATH=%s' % self.args.inputdir, file=f)
if 'config' in self.config:
for option in self.config['config']:
print(option, file=f)
- print('INPUT=%s/%s' % (self.args.inputdir,self.test), file=f)
- print('STRIP_FROM_PATH=%s' % self.args.inputdir, file=f)
if (self.args.xml):
print('GENERATE_XML=YES', file=f)
print('XML_OUTPUT=%s/out' % self.test_out, file=f)
@@ -81,7 +82,6 @@ class Tester:
if (self.args.pdf):
print('GENERATE_LATEX=YES', file=f)
print('LATEX_OUTPUT=%s/latex' % self.test_out, file=f)
- print('EXAMPLE_PATH=%s' % self.args.inputdir, file=f)
if 'check' not in self.config or not self.config['check']:
print('Test doesn\'t specify any files to check')