diff options
Diffstat (limited to 'test/Docbook/basic/htmlhelp/htmlhelp_cmd.py')
-rw-r--r-- | test/Docbook/basic/htmlhelp/htmlhelp_cmd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Docbook/basic/htmlhelp/htmlhelp_cmd.py b/test/Docbook/basic/htmlhelp/htmlhelp_cmd.py index 8e1c1b6..541ef75 100644 --- a/test/Docbook/basic/htmlhelp/htmlhelp_cmd.py +++ b/test/Docbook/basic/htmlhelp/htmlhelp_cmd.py @@ -38,13 +38,13 @@ if not xsltproc: test.dir_fixture('image') # Normal invocation -test.run(arguments=['-f','SConstruct.cmd'], stderr=None) +test.run(arguments=['-f','SConstruct.cmd','DOCBOOK_XSLTPROC=%s'%xsltproc], stderr=None) test.must_exist(test.workpath('index.html')) test.must_exist(test.workpath('htmlhelp.hhp')) test.must_exist(test.workpath('toc.hhc')) # Cleanup -test.run(arguments=['-f','SConstruct.cmd','-c']) +test.run(arguments=['-f','SConstruct.cmd','-c','DOCBOOK_XSLTPROC=%s'%xsltproc]) test.must_not_exist(test.workpath('index.html')) test.must_not_exist(test.workpath('htmlhelp.hhp')) test.must_not_exist(test.workpath('toc.hhc')) |