diff options
author | Steven Knight <knight@baldmt.com> | 2002-05-07 21:52:15 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-05-07 21:52:15 (GMT) |
commit | e9512cbcf8dc872b474f9e7990b60bb9db1924f3 (patch) | |
tree | 0ba2d9c0f3368e88cd306a6f988657979dd1cccf /test/DVIPS.py | |
parent | a2ceacbe77db1b308f26454477ae3b1f1139eac8 (diff) | |
download | SCons-e9512cbcf8dc872b474f9e7990b60bb9db1924f3.zip SCons-e9512cbcf8dc872b474f9e7990b60bb9db1924f3.tar.gz SCons-e9512cbcf8dc872b474f9e7990b60bb9db1924f3.tar.bz2 |
Add a better PATH search to the tests.
Diffstat (limited to 'test/DVIPS.py')
-rw-r--r-- | test/DVIPS.py | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/test/DVIPS.py b/test/DVIPS.py index 91900be..b3bdebc 100644 --- a/test/DVIPS.py +++ b/test/DVIPS.py @@ -32,11 +32,6 @@ import TestSCons python = sys.executable -if sys.platform == 'win32': - _exe = '.exe' -else: - _exe = '' - test = TestSCons.TestSCons() @@ -119,12 +114,7 @@ test.fail_test(test.read('test4.ps') != "This is a .latex test.\n") -dvips = None -for dir in string.split(os.environ['PATH'], os.pathsep): - l = os.path.join(dir, 'dvips' + _exe) - if os.path.exists(l): - dvips = l - break +dvips = test.where_is('dvips') if dvips: |