summaryrefslogtreecommitdiffstats
path: root/test/Errors
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2009-02-09 18:29:43 (GMT)
committerSteven Knight <knight@baldmt.com>2009-02-09 18:29:43 (GMT)
commitba21ffe311490bb348716e8e9127109e7fdc2f08 (patch)
tree5664bb6b48d53803e7ea52f1caa5afa241413f32 /test/Errors
parent895f277379ccb6272549468d18f27f4a5fc2ee2f (diff)
downloadSCons-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/Errors')
-rw-r--r--test/Errors/AttributeError.py6
-rw-r--r--test/Errors/Exception.py6
-rw-r--r--test/Errors/InternalError.py6
-rw-r--r--test/Errors/NameError.py6
-rw-r--r--test/Errors/SyntaxError.py6
-rw-r--r--test/Errors/TypeError.py6
-rw-r--r--test/Errors/UserError.py6
-rw-r--r--test/Errors/execute-a-directory.py6
-rw-r--r--test/Errors/exit-status.py6
-rw-r--r--test/Errors/non-executable-file.py6
-rw-r--r--test/Errors/nonexistent-executable.py6
-rw-r--r--test/Errors/permission-denied.py6
-rw-r--r--test/Errors/preparation.py6
13 files changed, 78 insertions, 0 deletions
diff --git a/test/Errors/AttributeError.py b/test/Errors/AttributeError.py
index 637cccf..c666a2d 100644
--- a/test/Errors/AttributeError.py
+++ b/test/Errors/AttributeError.py
@@ -45,3 +45,9 @@ test.run(status = 2, 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/Errors/Exception.py b/test/Errors/Exception.py
index 61bd74f..cc36035 100644
--- a/test/Errors/Exception.py
+++ b/test/Errors/Exception.py
@@ -74,3 +74,9 @@ expect = "scons: `foo.out' is up to date."
test.must_contain_all_lines(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/Errors/InternalError.py b/test/Errors/InternalError.py
index e90d402..032c7a7 100644
--- a/test/Errors/InternalError.py
+++ b/test/Errors/InternalError.py
@@ -51,3 +51,9 @@ InternalError: error inside
""", status=2)
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/Errors/NameError.py b/test/Errors/NameError.py
index be69b50..0281253 100644
--- a/test/Errors/NameError.py
+++ b/test/Errors/NameError.py
@@ -45,3 +45,9 @@ NameError: [^\n]*
""")
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/Errors/SyntaxError.py b/test/Errors/SyntaxError.py
index 956caa7..08539ad 100644
--- a/test/Errors/SyntaxError.py
+++ b/test/Errors/SyntaxError.py
@@ -51,3 +51,9 @@ SyntaxError: invalid syntax
""", status=2)
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/Errors/TypeError.py b/test/Errors/TypeError.py
index 1ec14dd..286fa26 100644
--- a/test/Errors/TypeError.py
+++ b/test/Errors/TypeError.py
@@ -45,3 +45,9 @@ TypeError:( 'int')? object does not support item assignment:
""")
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/Errors/UserError.py b/test/Errors/UserError.py
index 69ed7d4..c534ed6 100644
--- a/test/Errors/UserError.py
+++ b/test/Errors/UserError.py
@@ -48,3 +48,9 @@ test.run(stdout = "scons: Reading SConscript files ...\n",
status=2)
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/Errors/execute-a-directory.py b/test/Errors/execute-a-directory.py
index a13b4e0..e02dcb0 100644
--- a/test/Errors/execute-a-directory.py
+++ b/test/Errors/execute-a-directory.py
@@ -102,3 +102,9 @@ else:
test.must_contain_any_line(test.stderr(), errs)
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/Errors/exit-status.py b/test/Errors/exit-status.py
index 946c1c4..554f394 100644
--- a/test/Errors/exit-status.py
+++ b/test/Errors/exit-status.py
@@ -52,3 +52,9 @@ test.write('foo.in', "foo.in\n")
test.run(status=2, stderr="scons: \\*\\*\\* \\[one.out\\] Error 7\n")
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/Errors/non-executable-file.py b/test/Errors/non-executable-file.py
index 3d5cd5b..dc6b606 100644
--- a/test/Errors/non-executable-file.py
+++ b/test/Errors/non-executable-file.py
@@ -96,3 +96,9 @@ else:
test.must_contain_any_line(test.stderr(), errs)
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/Errors/nonexistent-executable.py b/test/Errors/nonexistent-executable.py
index c2f7cfd..ab6d118 100644
--- a/test/Errors/nonexistent-executable.py
+++ b/test/Errors/nonexistent-executable.py
@@ -100,3 +100,9 @@ else:
test.must_contain_any_line(test.stderr(), errs)
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/Errors/permission-denied.py b/test/Errors/permission-denied.py
index 05d1e9d..0134803 100644
--- a/test/Errors/permission-denied.py
+++ b/test/Errors/permission-denied.py
@@ -62,3 +62,9 @@ errs = [
test.fail_test(test.stderr() not in errs)
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/Errors/preparation.py b/test/Errors/preparation.py
index 597216a..914827a 100644
--- a/test/Errors/preparation.py
+++ b/test/Errors/preparation.py
@@ -73,3 +73,9 @@ test.run(chdir = 'work',
stderr = expect)
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4: