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 | c3d5ef3df00ebfb6c6cd33b4c906222517b2fdc1 (patch) | |
tree | 3a6877e15644a6da25570af9ee7aade000983ad4 /test/AR | |
parent | 23cba392cd6b316d2e641948954b4e2f001de73b (diff) | |
download | SCons-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/AR')
-rw-r--r-- | test/AR/AR.py | 10 | ||||
-rw-r--r-- | test/AR/ARFLAGS.py | 10 |
2 files changed, 10 insertions, 10 deletions
diff --git a/test/AR/AR.py b/test/AR/AR.py index 81a57b5..32419fa 100644 --- a/test/AR/AR.py +++ b/test/AR/AR.py @@ -59,7 +59,7 @@ test.write('foo.c', r""" void library_function(void) { - printf("foo.c\n"); + printf("foo.c\n"); } """) @@ -67,7 +67,7 @@ test.write('bar.c', r""" void library_function(void) { - printf("bar.c\n"); + printf("bar.c\n"); } """) @@ -75,9 +75,9 @@ test.write('main.c', r""" int main(int argc, char *argv[]) { - argv[argc++] = "--"; - library_function(); - exit (0); + argv[argc++] = "--"; + library_function(); + exit (0); } """) diff --git a/test/AR/ARFLAGS.py b/test/AR/ARFLAGS.py index 9a7e274..399170e 100644 --- a/test/AR/ARFLAGS.py +++ b/test/AR/ARFLAGS.py @@ -59,7 +59,7 @@ test.write('foo.c', r""" void library_function(void) { - printf("foo.c\n"); + printf("foo.c\n"); } """) @@ -67,7 +67,7 @@ test.write('bar.c', r""" void library_function(void) { - printf("bar.c\n"); + printf("bar.c\n"); } """) @@ -75,9 +75,9 @@ test.write('main.c', r""" int main(int argc, char *argv[]) { - argv[argc++] = "--"; - library_function(); - exit (0); + argv[argc++] = "--"; + library_function(); + exit (0); } """) |