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 | c3d5ef3df00ebfb6c6cd33b4c906222517b2fdc1 (patch) | |
tree | 3a6877e15644a6da25570af9ee7aade000983ad4 /test/option--W.py | |
parent | 23cba392cd6b316d2e641948954b4e2f001de73b (diff) | |
download | SCons-c3d5ef3df00ebfb6c6cd33b4c906222517b2fdc1.zip SCons-c3d5ef3df00ebfb6c6cd33b4c906222517b2fdc1.tar.gz SCons-c3d5ef3df00ebfb6c6cd33b4c906222517b2fdc1.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/option--W.py')
-rw-r--r-- | test/option--W.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/option--W.py b/test/option--W.py index 2e9729d..f6d07e8 100644 --- a/test/option--W.py +++ b/test/option--W.py @@ -33,16 +33,16 @@ test = TestSCons.TestSCons() test.write('SConstruct', "") test.run(arguments = '-W foo .', - stderr = "Warning: the -W option is not yet implemented\n") + stderr = "Warning: the -W option is not yet implemented\n") test.run(arguments = '--what-if=foo .', - stderr = "Warning: the --what-if option is not yet implemented\n") + stderr = "Warning: the --what-if option is not yet implemented\n") test.run(arguments = '--new-file=foo .', - stderr = "Warning: the --new-file option is not yet implemented\n") + stderr = "Warning: the --new-file option is not yet implemented\n") test.run(arguments = '--assume-new=foo .', - stderr = "Warning: the --assume-new option is not yet implemented\n") + stderr = "Warning: the --assume-new option is not yet implemented\n") test.pass_test() |