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/SharedLibrary.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/SharedLibrary.py')
| -rw-r--r-- | test/SharedLibrary.py | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/test/SharedLibrary.py b/test/SharedLibrary.py index 185cf9f..72f8770 100644 --- a/test/SharedLibrary.py +++ b/test/SharedLibrary.py @@ -68,7 +68,7 @@ test.write('foo.c', r""" void f1(void) { - printf("foo.c\n"); + printf("foo.c\n"); fflush(stdout); } """) @@ -80,7 +80,7 @@ test.write('f1.c', r""" void f1(void) { - printf("f1.c\n"); + printf("f1.c\n"); fflush(stdout); } """) @@ -97,7 +97,7 @@ test.write('f2a.c', r""" void f2a(void) { - printf("f2a.c\n"); + printf("f2a.c\n"); } """) @@ -105,7 +105,7 @@ test.write('f2b.c', r""" void f2b(void) { - printf("f2b.c\n"); + printf("f2b.c\n"); } """) @@ -115,7 +115,7 @@ test.write('f2c.c', r""" void f2c(void) { - printf("f2c.c\n"); + printf("f2c.c\n"); fflush(stdout); } """) @@ -134,7 +134,7 @@ test.write('f3a.c', r""" void f3a(void) { - printf("f3a.c\n"); + printf("f3a.c\n"); } """) @@ -142,7 +142,7 @@ test.write('f3b.c', r""" void f3b(void) { - printf("f3b.c\n"); + printf("f3b.c\n"); } """) @@ -152,7 +152,7 @@ test.write('f3c.c', r""" void f3c(void) { - printf("f3c.c\n"); + printf("f3c.c\n"); fflush(stdout); } """) @@ -178,15 +178,15 @@ void f3c(void); int main(int argc, char *argv[]) { - argv[argc++] = "--"; - f1(); - f2a(); - f2b(); - f2c(); - f3a(); - f3b(); - f3c(); - printf("prog.c\n"); + argv[argc++] = "--"; + f1(); + f2a(); + f2b(); + f2c(); + f3a(); + f3b(); + f3c(); + printf("prog.c\n"); return 0; } """) |
