summaryrefslogtreecommitdiffstats
path: root/test/DVIPDF.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-05-07 21:52:15 (GMT)
committerSteven Knight <knight@baldmt.com>2002-05-07 21:52:15 (GMT)
commite9512cbcf8dc872b474f9e7990b60bb9db1924f3 (patch)
tree0ba2d9c0f3368e88cd306a6f988657979dd1cccf /test/DVIPDF.py
parenta2ceacbe77db1b308f26454477ae3b1f1139eac8 (diff)
downloadSCons-e9512cbcf8dc872b474f9e7990b60bb9db1924f3.zip
SCons-e9512cbcf8dc872b474f9e7990b60bb9db1924f3.tar.gz
SCons-e9512cbcf8dc872b474f9e7990b60bb9db1924f3.tar.bz2
Add a better PATH search to the tests.
Diffstat (limited to 'test/DVIPDF.py')
-rw-r--r--test/DVIPDF.py12
1 files changed, 1 insertions, 11 deletions
diff --git a/test/DVIPDF.py b/test/DVIPDF.py
index 69108e1..d22cfd8 100644
--- a/test/DVIPDF.py
+++ b/test/DVIPDF.py
@@ -32,11 +32,6 @@ import TestSCons
python = sys.executable
-if sys.platform == 'win32':
- _exe = '.exe'
-else:
- _exe = ''
-
test = TestSCons.TestSCons()
@@ -104,12 +99,7 @@ test.fail_test(test.read('test2.pdf') != "This is a .tex test.\n")
-dvipdf = None
-for dir in string.split(os.environ['PATH'], os.pathsep):
- l = os.path.join(dir, 'dvipdf' + _exe)
- if os.path.exists(l):
- dvipdf = l
- break
+dvipdf = test.where_is('dvipdf')
if dvipdf: