summaryrefslogtreecommitdiff
path: root/test/CacheDir
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/CacheDir
parent107c0c6e68dd0126f43fbbe9ed34d0c2cee68919 (diff)
downloadscons-d0babf0088ed94e39ee70169f5f2678822072405.tar.gz
Add emacs and vim editing settings to the bottom of *.py files.
Diffstat (limited to 'test/CacheDir')
-rw-r--r--test/CacheDir/CacheDir.py6
-rw-r--r--test/CacheDir/NoCache.py6
-rw-r--r--test/CacheDir/SideEffect.py6
-rw-r--r--test/CacheDir/VariantDir.py6
-rw-r--r--test/CacheDir/debug.py6
-rw-r--r--test/CacheDir/environment.py6
-rw-r--r--test/CacheDir/multi-targets.py6
-rw-r--r--test/CacheDir/multiple-targets.py6
-rw-r--r--test/CacheDir/option--cd.py6
-rw-r--r--test/CacheDir/option--cf.py6
-rw-r--r--test/CacheDir/option--cs.py6
-rw-r--r--test/CacheDir/scanner-target.py6
-rw-r--r--test/CacheDir/source-scanner.py6
-rw-r--r--test/CacheDir/symlink.py6
-rw-r--r--test/CacheDir/timestamp-match.py6
-rw-r--r--test/CacheDir/timestamp-newer.py6
-rw-r--r--test/CacheDir/up-to-date-q.py6
17 files changed, 102 insertions, 0 deletions
diff --git a/test/CacheDir/CacheDir.py b/test/CacheDir/CacheDir.py
index f918707f..c72b2d06 100644
--- a/test/CacheDir/CacheDir.py
+++ b/test/CacheDir/CacheDir.py
@@ -155,3 +155,9 @@ test.up_to_date(chdir = 'src', 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/CacheDir/NoCache.py b/test/CacheDir/NoCache.py
index 44e51a01..7e9b5406 100644
--- a/test/CacheDir/NoCache.py
+++ b/test/CacheDir/NoCache.py
@@ -73,3 +73,9 @@ test.must_match(['beta','bar_cached'], 'alpha')
test.must_match(['beta','bar_notcached'], 'beta')
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/CacheDir/SideEffect.py b/test/CacheDir/SideEffect.py
index 814a5e37..e84ab090 100644
--- a/test/CacheDir/SideEffect.py
+++ b/test/CacheDir/SideEffect.py
@@ -105,3 +105,9 @@ test.must_match(['work', 'log.txt'], 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/CacheDir/VariantDir.py b/test/CacheDir/VariantDir.py
index b5650c14..8ba3e781 100644
--- a/test/CacheDir/VariantDir.py
+++ b/test/CacheDir/VariantDir.py
@@ -146,3 +146,9 @@ test.up_to_date(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/CacheDir/debug.py b/test/CacheDir/debug.py
index 93012411..94880be3 100644
--- a/test/CacheDir/debug.py
+++ b/test/CacheDir/debug.py
@@ -173,3 +173,9 @@ test.must_match(debug_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/CacheDir/environment.py b/test/CacheDir/environment.py
index 391fb94f..297d46d8 100644
--- a/test/CacheDir/environment.py
+++ b/test/CacheDir/environment.py
@@ -161,3 +161,9 @@ test.up_to_date(chdir = 'src', 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/CacheDir/multi-targets.py b/test/CacheDir/multi-targets.py
index 0de03313..9ca194ee 100644
--- a/test/CacheDir/multi-targets.py
+++ b/test/CacheDir/multi-targets.py
@@ -68,3 +68,9 @@ test.must_exist(multiple_bar)
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/CacheDir/multiple-targets.py b/test/CacheDir/multiple-targets.py
index 77b8f6fb..d7e6ac7a 100644
--- a/test/CacheDir/multiple-targets.py
+++ b/test/CacheDir/multiple-targets.py
@@ -64,3 +64,9 @@ test.must_exist(test.workpath('foo'))
test.must_exist(test.workpath('bar'))
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/CacheDir/option--cd.py b/test/CacheDir/option--cd.py
index 9aa94023..9b9f2f7a 100644
--- a/test/CacheDir/option--cd.py
+++ b/test/CacheDir/option--cd.py
@@ -127,3 +127,9 @@ test.unlink(['src', 'cat.out'])
# All done.
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/CacheDir/option--cf.py b/test/CacheDir/option--cf.py
index 47847d43..b2237556 100644
--- a/test/CacheDir/option--cf.py
+++ b/test/CacheDir/option--cf.py
@@ -121,3 +121,9 @@ test.fail_test(os.path.exists(test.workpath('src', 'cat.out')))
# All done.
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/CacheDir/option--cs.py b/test/CacheDir/option--cs.py
index 1e62c491..df1a87f7 100644
--- a/test/CacheDir/option--cs.py
+++ b/test/CacheDir/option--cs.py
@@ -192,3 +192,9 @@ test.up_to_date(chdir = 'src2', arguments = '.')
# All done.
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/CacheDir/scanner-target.py b/test/CacheDir/scanner-target.py
index 33930d8e..645b5977 100644
--- a/test/CacheDir/scanner-target.py
+++ b/test/CacheDir/scanner-target.py
@@ -78,3 +78,9 @@ test.run()
test.must_not_exist(test.workpath('cache', 'N', 'None'))
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/CacheDir/source-scanner.py b/test/CacheDir/source-scanner.py
index 119a959d..e7db5e91 100644
--- a/test/CacheDir/source-scanner.py
+++ b/test/CacheDir/source-scanner.py
@@ -82,3 +82,9 @@ test.must_not_exist(test.workpath(cache, 'N', 'None'))
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/CacheDir/symlink.py b/test/CacheDir/symlink.py
index 3bc8ec11..ca3bbe24 100644
--- a/test/CacheDir/symlink.py
+++ b/test/CacheDir/symlink.py
@@ -65,3 +65,9 @@ test.fail_test(not os.path.islink('file.symlink'))
test.must_match('file.symlink', "file.txt\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/CacheDir/timestamp-match.py b/test/CacheDir/timestamp-match.py
index 0e0074db..afc3f63c 100644
--- a/test/CacheDir/timestamp-match.py
+++ b/test/CacheDir/timestamp-match.py
@@ -57,3 +57,9 @@ test.up_to_date(options = '--cache-show --debug=explain', arguments = '.')
test.up_to_date(options = '--cache-show --debug=explain', 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/CacheDir/timestamp-newer.py b/test/CacheDir/timestamp-newer.py
index 36267f8d..8a47fec2 100644
--- a/test/CacheDir/timestamp-newer.py
+++ b/test/CacheDir/timestamp-newer.py
@@ -57,3 +57,9 @@ test.up_to_date(options = '--cache-show --debug=explain', arguments = '.')
test.up_to_date(options = '--cache-show --debug=explain', 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/CacheDir/up-to-date-q.py b/test/CacheDir/up-to-date-q.py
index 3830cd2e..275b1276 100644
--- a/test/CacheDir/up-to-date-q.py
+++ b/test/CacheDir/up-to-date-q.py
@@ -79,3 +79,9 @@ test.run(chdir = 'beta', arguments = '.')
test.run(chdir = 'beta', arguments = '. -q')
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4: