summaryrefslogtreecommitdiffstats
path: root/test/Perforce
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2005-10-14 16:23:52 (GMT)
committerSteven Knight <knight@baldmt.com>2005-10-14 16:23:52 (GMT)
commitc3d5ef3df00ebfb6c6cd33b4c906222517b2fdc1 (patch)
tree3a6877e15644a6da25570af9ee7aade000983ad4 /test/Perforce
parent23cba392cd6b316d2e641948954b4e2f001de73b (diff)
downloadSCons-c3d5ef3df00ebfb6c6cd33b4c906222517b2fdc1.zip
SCons-c3d5ef3df00ebfb6c6cd33b4c906222517b2fdc1.tar.gz
SCons-c3d5ef3df00ebfb6c6cd33b4c906222517b2fdc1.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')
-rw-r--r--test/Perforce/Perforce.py8
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()