summaryrefslogtreecommitdiffstats
path: root/test/AS
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/AS
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/AS')
-rw-r--r--test/AS/AS.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/AS/AS.py b/test/AS/AS.py
index adace1e..0543a0c 100644
--- a/test/AS/AS.py
+++ b/test/AS/AS.py
@@ -197,7 +197,7 @@ ccc.Program(target = 'ccc', source = ['ccc.S', 'ccc_main.c'])
.globl name
name:
.ascii "aaa.s"
- .byte 0
+ .byte 0
""")
test.write('bbb.s', """\
@@ -207,7 +207,7 @@ name:
.globl name
name:
.ascii "bbb.s"
- .byte 0
+ .byte 0
""")
test.write('ccc.h', """\
@@ -222,7 +222,7 @@ name:
.globl name
name:
.ascii STRING
- .byte 0
+ .byte 0
""")
test.write('aaa_main.c', r"""
@@ -317,19 +317,19 @@ ddd.Program(target = 'ddd', source = ['ddd.asm', 'ddd_main.c'])
test.write('ccc.asm',
"""
DSEG segment
- PUBLIC _name
+ PUBLIC _name
_name byte "ccc.asm",0
DSEG ends
- end
+ end
""")
test.write('ddd.asm',
"""
DSEG segment
- PUBLIC _name
+ PUBLIC _name
_name byte "ddd.asm",0
DSEG ends
- end
+ end
""")
test.write('ccc_main.c', r"""
@@ -408,14 +408,14 @@ fff.Program(target = 'fff', source = ['fff.asm', 'fff_main.c'])
"""
global name
name:
- db 'eee.asm',0
+ db 'eee.asm',0
""")
test.write('fff.asm',
"""
global name
name:
- db 'fff.asm',0
+ db 'fff.asm',0
""")
test.write('eee_main.c', r"""