summaryrefslogtreecommitdiffstats
path: root/test/Library.py
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)
commitaf962864b108d8fdd654edaf3c0300404ca07e3e (patch)
tree3a6877e15644a6da25570af9ee7aade000983ad4 /test/Library.py
parent82c2f16e53cba1a639d568fe8d6780dfe30c56ab (diff)
downloadSCons-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/Library.py')
-rw-r--r--test/Library.py32
1 files changed, 16 insertions, 16 deletions
diff --git a/test/Library.py b/test/Library.py
index f089e0c..e4626ab 100644
--- a/test/Library.py
+++ b/test/Library.py
@@ -41,7 +41,7 @@ test.write('f1.c', r"""
void
f1(void)
{
- printf("f1.c\n");
+ printf("f1.c\n");
}
""")
@@ -49,7 +49,7 @@ test.write('f2a.c', r"""
void
f2a(void)
{
- printf("f2a.c\n");
+ printf("f2a.c\n");
}
""")
@@ -57,7 +57,7 @@ test.write('f2b.c', r"""
void
f2b(void)
{
- printf("f2b.c\n");
+ printf("f2b.c\n");
}
""")
@@ -65,7 +65,7 @@ test.write('f2c.c', r"""
void
f2c(void)
{
- printf("f2c.c\n");
+ printf("f2c.c\n");
}
""")
@@ -73,7 +73,7 @@ test.write('f3a.c', r"""
void
f3a(void)
{
- printf("f3a.c\n");
+ printf("f3a.c\n");
}
""")
@@ -81,7 +81,7 @@ test.write('f3b.c', r"""
void
f3b(void)
{
- printf("f3b.c\n");
+ printf("f3b.c\n");
}
""")
@@ -90,7 +90,7 @@ test.write('f3c.cpp', r"""
extern "C" void
f3c(void)
{
- printf("f3c.cpp\n");
+ printf("f3c.cpp\n");
}
""")
@@ -108,15 +108,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;
}
""")