Get rid of indentation tabs in the test scripts and have runtest.py invoke them with...
[scons.git] / test / Repository / top-level-path.py
index 00c056c0113295805ef9582c012a48e9b86278e1..2d4164a6a7c6105e799a2c4c53fc3ce507c9ee34 100644 (file)
@@ -38,7 +38,7 @@ test = TestSCons.TestSCons()
 test.subdir('repository',
             ['repository', 'src'],
             ['repository', 'subdir'],
-           'work')
+            'work')
 
 src_SConscript = os.path.join('src', 'SConscript')
 work_src_foo = test.workpath('work', 'src', 'foo' + _exe)
@@ -59,7 +59,7 @@ test.write(['repository', 'src', 'aaa.c'], r"""
 void
 src_aaa(void)
 {
-       printf("repository/src/aaa.c\n");
+        printf("repository/src/aaa.c\n");
 }
 """)
 
@@ -67,7 +67,7 @@ test.write(['repository', 'subdir', 'aaa.c'], r"""
 void
 subdir_aaa(void)
 {
-       printf("repository/subdir/aaa.c\n");
+        printf("repository/subdir/aaa.c\n");
 }
 """)
 
@@ -77,11 +77,11 @@ extern void subdir_aaa(void);
 int
 main(int argc, char *argv[])
 {
-       argv[argc++] = "--";
-       src_aaa();
-       subdir_aaa();
-       printf("repository/src/foo.c\n");
-       exit (0);
+        argv[argc++] = "--";
+        src_aaa();
+        subdir_aaa();
+        printf("repository/src/foo.c\n");
+        exit (0);
 }
 """)