summaryrefslogtreecommitdiff
path: root/test/Object.py
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/Object.py
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/Object.py')
-rw-r--r--test/Object.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/test/Object.py b/test/Object.py
index 9ed7a151..8b9c5e06 100644
--- a/test/Object.py
+++ b/test/Object.py
@@ -49,7 +49,7 @@ test.write('f1.c', r"""
void
f1(void)
{
- printf("f1.c\n");
+ printf("f1.c\n");
}
""")
@@ -59,7 +59,7 @@ test.write('f2.cpp', r"""
void
f2(void)
{
- printf("f2.c\n");
+ printf("f2.c\n");
}
""")
@@ -67,7 +67,7 @@ test.write('f3.c', r"""
void
f3(void)
{
- printf("f3.c\n");
+ printf("f3.c\n");
}
""")
@@ -75,7 +75,7 @@ test.write('f4.c', r"""
void
f4(void)
{
- printf("f4.c\n");
+ printf("f4.c\n");
}
""")
@@ -83,7 +83,7 @@ test.write('f5.c', r"""
void
f5(void)
{
- printf("f5.c\n");
+ printf("f5.c\n");
}
""")
@@ -96,12 +96,12 @@ extern "C" void f3(void);
int
main(int argc, char *argv[])
{
- argv[argc++] = "--";
- f1();
- f2();
- f3();
- printf("prog.c\n");
- return 0;
+ argv[argc++] = "--";
+ f1();
+ f2();
+ f3();
+ printf("prog.c\n");
+ return 0;
}
""")