diff options
author | Steven Knight <knight@baldmt.com> | 2004-07-15 12:39:34 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-07-15 12:39:34 (GMT) |
commit | af9e270bf0dc34fecff450199f90dc14bb0334de (patch) | |
tree | c2864cbd6341ba776c90abb8c2cbb1456906a0a5 /etc/TestCmd.py | |
parent | d4da437a7df193b540560e8bb06aa1573b615cc8 (diff) | |
download | SCons-af9e270bf0dc34fecff450199f90dc14bb0334de.zip SCons-af9e270bf0dc34fecff450199f90dc14bb0334de.tar.gz SCons-af9e270bf0dc34fecff450199f90dc14bb0334de.tar.bz2 |
Win32 portability: add an explicit match argument to TestCommon.py, use it to only use match_re_dotall when we're using TestSCons.noisy_ar.
Diffstat (limited to 'etc/TestCmd.py')
-rw-r--r-- | etc/TestCmd.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/etc/TestCmd.py b/etc/TestCmd.py index 48aa204..9533398 100644 --- a/etc/TestCmd.py +++ b/etc/TestCmd.py @@ -175,8 +175,8 @@ version. # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. __author__ = "Steven Knight <knight at baldmt dot com>" -__revision__ = "TestCmd.py 0.7.D001 2004/07/08 10:02:13 knight" -__version__ = "0.7" +__revision__ = "TestCmd.py 0.8.D001 2004/07/15 06:24:14 knight" +__version__ = "0.8" import os import os.path @@ -496,7 +496,7 @@ class TestCmd: """ if not self._dirlist: return - os.chdir(self._cwd) + os.chdir(self._cwd) self.workdir = None if condition is None: condition = self.condition @@ -510,7 +510,7 @@ class TestCmd: self.writable(dir, 1) shutil.rmtree(dir, ignore_errors = 1) self._dirlist = [] - + try: global _Cleanup _Cleanup.remove(self) @@ -789,10 +789,10 @@ class TestCmd: def where_is(self, file, path=None, pathext=None): """Find an executable file. """ - if is_List(file): - file = apply(os.path.join, tuple(file)) - if not os.path.isabs(file): - file = where_is(file, path, pathext) + if is_List(file): + file = apply(os.path.join, tuple(file)) + if not os.path.isabs(file): + file = where_is(file, path, pathext) return file def workdir_set(self, path): |