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/TAR | |
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/TAR')
-rw-r--r-- | test/TAR/TAR.py | 2 | ||||
-rw-r--r-- | test/TAR/TARFLAGS.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/TAR/TAR.py b/test/TAR/TAR.py index abd86ba..9d5a617 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 fcf7394..2cda502 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']) |