summaryrefslogtreecommitdiffstats
path: root/test/TEX/clean.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/TEX/clean.py')
-rw-r--r--test/TEX/clean.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/TEX/clean.py b/test/TEX/clean.py
index 6615fc9..499cf5b 100644
--- a/test/TEX/clean.py
+++ b/test/TEX/clean.py
@@ -67,7 +67,10 @@ bibfile = r"""
"""
test.write('SConstruct', """\
-DVI( "foo.ltx" )
+import os
+env = Environment(tools = ['tex', 'latex'],
+ ENV = {'PATH' : os.environ['PATH']})
+env.DVI( "foo.ltx" )
""")
test.write('foo.ltx', input_file)