summaryrefslogtreecommitdiff
path: root/test/DVIPDF/makeindex.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/DVIPDF/makeindex.py')
-rw-r--r--test/DVIPDF/makeindex.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/test/DVIPDF/makeindex.py b/test/DVIPDF/makeindex.py
index 22a31be1..b4ac2d04 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')