diff options
author | William Deegan <bill@baddogconsulting.com> | 2016-01-17 22:02:32 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2016-01-17 22:02:32 (GMT) |
commit | 87d2714f989ab8082dc5bd4111c9d5212e81b1a9 (patch) | |
tree | bfc61a737c90e8aad39f42348b9c8bb3ef227138 /test/DVIPDF/makeindex.py | |
parent | 49bb971fdcb7c54c5044f5854de3c177a6f41d1f (diff) | |
download | SCons-87d2714f989ab8082dc5bd4111c9d5212e81b1a9.zip SCons-87d2714f989ab8082dc5bd4111c9d5212e81b1a9.tar.gz SCons-87d2714f989ab8082dc5bd4111c9d5212e81b1a9.tar.bz2 |
changes to skip tests on ubuntu-next when gcj and not real java, and also when no latex is available
Diffstat (limited to 'test/DVIPDF/makeindex.py')
-rw-r--r-- | test/DVIPDF/makeindex.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/test/DVIPDF/makeindex.py b/test/DVIPDF/makeindex.py index 22a31be..b4ac2d0 100644 --- a/test/DVIPDF/makeindex.py +++ b/test/DVIPDF/makeindex.py @@ -31,10 +31,17 @@ test = TestSCons.TestSCons() dvipdf = test.where_is('dvipdf') +if not dvipdf: + test.skip_test('Could not find dvipdf; skipping test(s).\n') + tex = test.where_is('tex') +if not tex: + test.skip_test('Could not find tex; skipping test(s).\n') + +latex = test.where_is('latex') +if not latex: + test.skip_test('Could not find latex; skipping test(s).\n') -if not dvipdf or not tex: - test.skip_test('Could not find dvipdf or text; skipping test(s).\n') |