diff options
author | Steven Knight <knight@baldmt.com> | 2005-10-14 16:23:52 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-10-14 16:23:52 (GMT) |
commit | af962864b108d8fdd654edaf3c0300404ca07e3e (patch) | |
tree | 3a6877e15644a6da25570af9ee7aade000983ad4 /test/Perforce/Perforce.py | |
parent | 82c2f16e53cba1a639d568fe8d6780dfe30c56ab (diff) | |
download | SCons-af962864b108d8fdd654edaf3c0300404ca07e3e.zip SCons-af962864b108d8fdd654edaf3c0300404ca07e3e.tar.gz SCons-af962864b108d8fdd654edaf3c0300404ca07e3e.tar.bz2 |
Get rid of indentation tabs in the test scripts and have runtest.py invoke them with the python -tt option to keep them out.
Diffstat (limited to 'test/Perforce/Perforce.py')
-rw-r--r-- | test/Perforce/Perforce.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Perforce/Perforce.py b/test/Perforce/Perforce.py index d273cbb..04127f5 100644 --- a/test/Perforce/Perforce.py +++ b/test/Perforce/Perforce.py @@ -67,7 +67,7 @@ class TestPerforce(TestSCons.TestSCons): # We don't use self.run() because the TestCmd logic will hang # waiting for the daemon to exit, even when we pass it - # the -d option. + # the -d option. try: spawnv = os.spawnv except AttributeError: @@ -99,15 +99,15 @@ class TestPerforce(TestSCons.TestSCons): def substitute(self, s, **kw): kw = kw.copy() - kw.update(self.__dict__) + kw.update(self.__dict__) return s % kw def cleanup(self, condition = None): if self.p4d: self.p4('admin stop') - self.p4d = None + self.p4d = None - if TestSCons: + if TestSCons: TestSCons.TestSCons.cleanup(self, condition) test = TestPerforce() |