summaryrefslogtreecommitdiff
path: root/test/Libs
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/Libs
parent107c0c6e68dd0126f43fbbe9ed34d0c2cee68919 (diff)
downloadscons-d0babf0088ed94e39ee70169f5f2678822072405.tar.gz
Add emacs and vim editing settings to the bottom of *.py files.
Diffstat (limited to 'test/Libs')
-rw-r--r--test/Libs/LIBPATH.py6
-rw-r--r--test/Libs/LIBPREFIX.py6
-rw-r--r--test/Libs/LIBPREFIXES.py6
-rw-r--r--test/Libs/LIBS.py6
-rw-r--r--test/Libs/LIBSUFFIX.py6
-rw-r--r--test/Libs/LIBSUFFIXES.py6
-rw-r--r--test/Libs/Library.py6
-rw-r--r--test/Libs/SHLIBPREFIX.py6
-rw-r--r--test/Libs/SHLIBSUFFIX.py6
-rw-r--r--test/Libs/SharedLibrary.py6
-rw-r--r--test/Libs/SharedLibraryIxes.py6
11 files changed, 66 insertions, 0 deletions
diff --git a/test/Libs/LIBPATH.py b/test/Libs/LIBPATH.py
index e52cb9fa..b5a1b54b 100644
--- a/test/Libs/LIBPATH.py
+++ b/test/Libs/LIBPATH.py
@@ -173,3 +173,9 @@ test.run(arguments = '.',
match=TestSCons.match_re_dotall)
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/Libs/LIBPREFIX.py b/test/Libs/LIBPREFIX.py
index a71e9673..764fb4e5 100644
--- a/test/Libs/LIBPREFIX.py
+++ b/test/Libs/LIBPREFIX.py
@@ -36,3 +36,9 @@ test.write('SConstruct', """
test.run(arguments = '.')
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/Libs/LIBPREFIXES.py b/test/Libs/LIBPREFIXES.py
index 1e5d6c2b..1b284588 100644
--- a/test/Libs/LIBPREFIXES.py
+++ b/test/Libs/LIBPREFIXES.py
@@ -75,3 +75,9 @@ test.fail_test(not os.path.exists(test.workpath('xxx-foo' + _lib)))
test.run(program = test.workpath('prog'), stdout = "foo.c\nprog.c\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/Libs/LIBS.py b/test/Libs/LIBS.py
index e9f65451..fa6295a5 100644
--- a/test/Libs/LIBS.py
+++ b/test/Libs/LIBS.py
@@ -287,3 +287,9 @@ test.run(program=blender_exe,
stdout='src/component1/message.c\nsrc/component2/hello.c\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/Libs/LIBSUFFIX.py b/test/Libs/LIBSUFFIX.py
index a71e9673..764fb4e5 100644
--- a/test/Libs/LIBSUFFIX.py
+++ b/test/Libs/LIBSUFFIX.py
@@ -36,3 +36,9 @@ test.write('SConstruct', """
test.run(arguments = '.')
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/Libs/LIBSUFFIXES.py b/test/Libs/LIBSUFFIXES.py
index 29cbb18e..4426e603 100644
--- a/test/Libs/LIBSUFFIXES.py
+++ b/test/Libs/LIBSUFFIXES.py
@@ -75,3 +75,9 @@ test.fail_test(not os.path.exists(test.workpath(lib_ + 'foo.xxx')))
test.run(program = test.workpath('prog'), stdout = "foo.c\nprog.c\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/Libs/Library.py b/test/Libs/Library.py
index 4bcb2c7d..b603926a 100644
--- a/test/Libs/Library.py
+++ b/test/Libs/Library.py
@@ -165,3 +165,9 @@ test.run(program = test.workpath('uses-nrd'),
stdout = "nrd\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/Libs/SHLIBPREFIX.py b/test/Libs/SHLIBPREFIX.py
index 2af6a96c..c46b5aac 100644
--- a/test/Libs/SHLIBPREFIX.py
+++ b/test/Libs/SHLIBPREFIX.py
@@ -51,3 +51,9 @@ test.run(arguments = '.')
test.fail_test(not os.path.exists(test.workpath('shlib-foo' + _lib)))
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/Libs/SHLIBSUFFIX.py b/test/Libs/SHLIBSUFFIX.py
index e2509fab..31fe8ba8 100644
--- a/test/Libs/SHLIBSUFFIX.py
+++ b/test/Libs/SHLIBSUFFIX.py
@@ -51,3 +51,9 @@ test.run(arguments = '.')
test.fail_test(not os.path.exists(test.workpath(dll_ + 'foo.shlib')))
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/Libs/SharedLibrary.py b/test/Libs/SharedLibrary.py
index b688a0bd..1bb91ead 100644
--- a/test/Libs/SharedLibrary.py
+++ b/test/Libs/SharedLibrary.py
@@ -282,3 +282,9 @@ main(int argc, char *argv[])
stdout = "f4.c\nprogbar.c\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/Libs/SharedLibraryIxes.py b/test/Libs/SharedLibraryIxes.py
index f9d14711..fb0bc22e 100644
--- a/test/Libs/SharedLibraryIxes.py
+++ b/test/Libs/SharedLibraryIxes.py
@@ -259,3 +259,9 @@ for t in tests:
test.run(program = test.workpath(t[3]), stdout=expected)
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4: