summaryrefslogtreecommitdiff
path: root/test/runtest
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2009-02-09 18:29:43 +0000
committerSteven Knight <knight@baldmt.com>2009-02-09 18:29:43 +0000
commitd0babf0088ed94e39ee70169f5f2678822072405 (patch)
tree5664bb6b48d53803e7ea52f1caa5afa241413f32 /test/runtest
parent107c0c6e68dd0126f43fbbe9ed34d0c2cee68919 (diff)
downloadscons-d0babf0088ed94e39ee70169f5f2678822072405.tar.gz
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.py6
-rw-r--r--test/runtest/baseline/combined.py6
-rw-r--r--test/runtest/baseline/fail.py6
-rw-r--r--test/runtest/baseline/no_result.py6
-rw-r--r--test/runtest/baseline/pass.py6
-rw-r--r--test/runtest/fallback.py6
-rw-r--r--test/runtest/noqmtest.py6
-rw-r--r--test/runtest/print_time.py6
-rw-r--r--test/runtest/python.py6
-rw-r--r--test/runtest/simple/combined.py6
-rw-r--r--test/runtest/simple/fail.py6
-rw-r--r--test/runtest/simple/no_result.py6
-rw-r--r--test/runtest/simple/pass.py6
-rw-r--r--test/runtest/src.py6
-rw-r--r--test/runtest/testlistfile.py6
-rw-r--r--test/runtest/xml/output.py6
16 files changed, 96 insertions, 0 deletions
diff --git a/test/runtest/aegis/batch-output.py b/test/runtest/aegis/batch-output.py
index 40202398..bb2aa1ed 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 f575bc81..bd479087 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 3a509258..bd52a182 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 9b1782cf..d1c0f759 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 1bc6af12..3644052b 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 5ef23638..ddabfbf4 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 f2bf6eb9..3980b707 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 0abfe932..38a5bc6f 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 d26f98e2..1830aa7b 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 6bee872f..0c9997fd 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 1e8e7b6e..f060f507 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 16499c82..55d6f0e5 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 561665ab..ee7bc740 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 eebdce4d..70d10f0d 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 0c9d84c7..a9d2565b 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 e1c14cf7..52b718a2 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: