summaryrefslogtreecommitdiff
path: root/test/TAR
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2005-10-14 16:23:52 +0000
committerSteven Knight <knight@baldmt.com>2005-10-14 16:23:52 +0000
commitaf962864b108d8fdd654edaf3c0300404ca07e3e (patch)
tree3a6877e15644a6da25570af9ee7aade000983ad4 /test/TAR
parent82c2f16e53cba1a639d568fe8d6780dfe30c56ab (diff)
downloadscons-af962864b108d8fdd654edaf3c0300404ca07e3e.tar.gz
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/TAR')
-rw-r--r--test/TAR/TAR.py2
-rw-r--r--test/TAR/TARFLAGS.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/test/TAR/TAR.py b/test/TAR/TAR.py
index abd86bad..9d5a617e 100644
--- a/test/TAR/TAR.py
+++ b/test/TAR/TAR.py
@@ -49,7 +49,7 @@ def process(outfile, name):
list = os.listdir(name)
list.sort()
for entry in list:
- process(outfile, os.path.join(name, entry))
+ process(outfile, os.path.join(name, entry))
else:
outfile.write(open(name, 'rb').read())
outfile = open(out, 'wb')
diff --git a/test/TAR/TARFLAGS.py b/test/TAR/TARFLAGS.py
index fcf7394f..2cda5022 100644
--- a/test/TAR/TARFLAGS.py
+++ b/test/TAR/TARFLAGS.py
@@ -52,7 +52,7 @@ def process(outfile, name):
entries = os.listdir(name)
entries.sort()
for entry in entries:
- process(outfile, os.path.join(name, entry))
+ process(outfile, os.path.join(name, entry))
else:
outfile.write(open(name, 'rb').read())
outfile = open(out, 'wb')
@@ -104,7 +104,7 @@ os.system(string.join(sys.argv[1:], " "))
foo = Environment()
tar = foo['TAR']
bar = Environment(TAR = '',
- TARFLAGS = r'%s wrapper.py ' + tar + ' -c -b 1')
+ TARFLAGS = r'%s wrapper.py ' + tar + ' -c -b 1')
foo.Tar(target = 'foo.tar', source = ['file10', 'file11'])
foo.Tar(target = 'foo.tar', source = 'file12')
bar.Tar(target = 'bar.tar', source = ['file13', 'file14'])