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 | |
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')
-rw-r--r-- | test/runtest/aegis/batch-output.py | 6 | ||||
-rw-r--r-- | test/runtest/baseline/combined.py | 6 | ||||
-rw-r--r-- | test/runtest/baseline/fail.py | 6 | ||||
-rw-r--r-- | test/runtest/baseline/no_result.py | 6 | ||||
-rw-r--r-- | test/runtest/baseline/pass.py | 6 | ||||
-rw-r--r-- | test/runtest/fallback.py | 6 | ||||
-rw-r--r-- | test/runtest/noqmtest.py | 6 | ||||
-rw-r--r-- | test/runtest/print_time.py | 6 | ||||
-rw-r--r-- | test/runtest/python.py | 6 | ||||
-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 | ||||
-rw-r--r-- | test/runtest/src.py | 6 | ||||
-rw-r--r-- | test/runtest/testlistfile.py | 6 | ||||
-rw-r--r-- | test/runtest/xml/output.py | 6 |
16 files changed, 96 insertions, 0 deletions
diff --git a/test/runtest/aegis/batch-output.py b/test/runtest/aegis/batch-output.py index 4020239..bb2aa1e 100644 --- a/test/runtest/aegis/batch-output.py +++ b/test/runtest/aegis/batch-output.py @@ -58,3 +58,9 @@ test_result = [ test.must_match('aegis.out', expect, mode='r') 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/baseline/combined.py b/test/runtest/baseline/combined.py index f575bc8..bd47908 100644 --- a/test/runtest/baseline/combined.py +++ b/test/runtest/baseline/combined.py @@ -85,3 +85,9 @@ expect = r"""qmtest run --output baseline.qmr --format none --result-stream="sco test.run(arguments = '-b . 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/baseline/fail.py b/test/runtest/baseline/fail.py index 3a50925..bd52a18 100644 --- a/test/runtest/baseline/fail.py +++ b/test/runtest/baseline/fail.py @@ -60,3 +60,9 @@ expect = r"""qmtest run --output baseline.qmr --format none --result-stream="sco test.run(arguments = '-b . 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/baseline/no_result.py b/test/runtest/baseline/no_result.py index 9b1782c..d1c0f75 100644 --- a/test/runtest/baseline/no_result.py +++ b/test/runtest/baseline/no_result.py @@ -58,3 +58,9 @@ expect = r"""qmtest run --output baseline.qmr --format none --result-stream="sco test.run(arguments = '-b . 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/baseline/pass.py b/test/runtest/baseline/pass.py index 1bc6af1..3644052 100644 --- a/test/runtest/baseline/pass.py +++ b/test/runtest/baseline/pass.py @@ -56,3 +56,9 @@ expect = r"""qmtest run --output baseline.qmr --format none --result-stream="sco test.run(arguments = '-b . 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: diff --git a/test/runtest/fallback.py b/test/runtest/fallback.py index 5ef2363..ddabfbf 100644 --- a/test/runtest/fallback.py +++ b/test/runtest/fallback.py @@ -110,3 +110,9 @@ test.run(arguments = string.join(testlist), stderr = expect_stderr) 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/noqmtest.py b/test/runtest/noqmtest.py index f2bf6eb..3980b70 100644 --- a/test/runtest/noqmtest.py +++ b/test/runtest/noqmtest.py @@ -100,3 +100,9 @@ test.run(arguments = '--noqmtest %s' % string.join(testlist), stderr = expect_stderr) 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/print_time.py b/test/runtest/print_time.py index 0abfe93..38a5bc6 100644 --- a/test/runtest/print_time.py +++ b/test/runtest/print_time.py @@ -94,3 +94,9 @@ expect = r"""qmtest run --output results.qmr --format none --result-stream="scon test.run(arguments = '-t 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/python.py b/test/runtest/python.py index d26f98e..1830aa7 100644 --- a/test/runtest/python.py +++ b/test/runtest/python.py @@ -70,3 +70,9 @@ expect = r"""qmtest run --output results.qmr --format none --result-stream="scon test.run(arguments = ['-P', mypython, 'test'], 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/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: diff --git a/test/runtest/src.py b/test/runtest/src.py index eebdce4..70d10f0 100644 --- a/test/runtest/src.py +++ b/test/runtest/src.py @@ -74,3 +74,9 @@ expect = r"""qmtest run --output results.qmr --format none --result-stream="scon test.run(arguments = 'src', 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/testlistfile.py b/test/runtest/testlistfile.py index 0c9d84c..a9d2565 100644 --- a/test/runtest/testlistfile.py +++ b/test/runtest/testlistfile.py @@ -74,3 +74,9 @@ expect = """qmtest run --output results.qmr --format none --result-stream="scons test.run(arguments = '-f t.txt', 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/xml/output.py b/test/runtest/xml/output.py index e1c14cf..52b718a 100644 --- a/test/runtest/xml/output.py +++ b/test/runtest/xml/output.py @@ -189,3 +189,9 @@ if non_matches: test.fail_test() test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: |