diff options
author | Steven Knight <knight@baldmt.com> | 2009-02-09 18:29:43 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2009-02-09 18:29:43 (GMT) |
commit | ba21ffe311490bb348716e8e9127109e7fdc2f08 (patch) | |
tree | 5664bb6b48d53803e7ea52f1caa5afa241413f32 /test/runtest/simple | |
parent | 895f277379ccb6272549468d18f27f4a5fc2ee2f (diff) | |
download | SCons-ba21ffe311490bb348716e8e9127109e7fdc2f08.zip SCons-ba21ffe311490bb348716e8e9127109e7fdc2f08.tar.gz SCons-ba21ffe311490bb348716e8e9127109e7fdc2f08.tar.bz2 |
Add emacs and vim editing settings to the bottom of *.py files.
Diffstat (limited to 'test/runtest/simple')
-rw-r--r-- | test/runtest/simple/combined.py | 6 | ||||
-rw-r--r-- | test/runtest/simple/fail.py | 6 | ||||
-rw-r--r-- | test/runtest/simple/no_result.py | 6 | ||||
-rw-r--r-- | test/runtest/simple/pass.py | 6 |
4 files changed, 24 insertions, 0 deletions
diff --git a/test/runtest/simple/combined.py b/test/runtest/simple/combined.py index 6bee872..0c9997f 100644 --- a/test/runtest/simple/combined.py +++ b/test/runtest/simple/combined.py @@ -87,3 +87,9 @@ expect = r"""qmtest run --output results.qmr --format none --result-stream="scon test.run(arguments = 'test', status = 1, stdout = expect) test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: diff --git a/test/runtest/simple/fail.py b/test/runtest/simple/fail.py index 1e8e7b6..f060f50 100644 --- a/test/runtest/simple/fail.py +++ b/test/runtest/simple/fail.py @@ -62,3 +62,9 @@ expect = r"""qmtest run --output results.qmr --format none --result-stream="scon test.run(arguments = 'test/fail.py', status = 1, stdout = expect) test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: diff --git a/test/runtest/simple/no_result.py b/test/runtest/simple/no_result.py index 16499c8..55d6f0e 100644 --- a/test/runtest/simple/no_result.py +++ b/test/runtest/simple/no_result.py @@ -60,3 +60,9 @@ expect = r"""qmtest run --output results.qmr --format none --result-stream="scon test.run(arguments = 'test/no_result.py', status = 1, stdout = expect) test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: diff --git a/test/runtest/simple/pass.py b/test/runtest/simple/pass.py index 561665a..ee7bc74 100644 --- a/test/runtest/simple/pass.py +++ b/test/runtest/simple/pass.py @@ -58,3 +58,9 @@ expect = r"""qmtest run --output results.qmr --format none --result-stream="scon test.run(arguments = 'test/pass.py', stdout = expect) test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: |