diff options
author | Dirk Baechle <dl9obn@darc.de> | 2013-11-03 18:17:58 (GMT) |
---|---|---|
committer | Dirk Baechle <dl9obn@darc.de> | 2013-11-03 18:17:58 (GMT) |
commit | 703ba43b17517810162d91b109b54fc76868eee6 (patch) | |
tree | 6c4aaaf1971124a8862d4dcf4d0346b5c70ee5df /test/Docbook/basedir/htmlhelp/htmlhelp.py | |
parent | 396cc5ff8cce251f405e3eba6163362239ce7d08 (diff) | |
download | SCons-703ba43b17517810162d91b109b54fc76868eee6.zip SCons-703ba43b17517810162d91b109b54fc76868eee6.tar.gz SCons-703ba43b17517810162d91b109b54fc76868eee6.tar.bz2 |
- corrected LC_ALL setting for RPM packaging
- now skipping several Docbook tests, when required stylesheets aren't installed
Diffstat (limited to 'test/Docbook/basedir/htmlhelp/htmlhelp.py')
-rw-r--r-- | test/Docbook/basedir/htmlhelp/htmlhelp.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Docbook/basedir/htmlhelp/htmlhelp.py b/test/Docbook/basedir/htmlhelp/htmlhelp.py index 736f732..22bbd72 100644 --- a/test/Docbook/basedir/htmlhelp/htmlhelp.py +++ b/test/Docbook/basedir/htmlhelp/htmlhelp.py @@ -26,10 +26,16 @@ Test the base_dir argument for the HTMLHELP builder. """ +import os +import sys import TestSCons test = TestSCons.TestSCons() +if not (sys.platform.startswith('linux') and + os.path.isdir('/usr/share/xml/docbook/stylesheet/docbook-xsl')): + test.skip_test('Wrong OS or no stylesheets installed, skipping test.\n') + try: import libxml2 except: |