summaryrefslogtreecommitdiffstats
path: root/test/packaging
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/packaging
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/packaging')
-rw-r--r--test/packaging/convenience-functions.py6
-rw-r--r--test/packaging/guess-package-name.py6
-rw-r--r--test/packaging/ipkg.py6
-rw-r--r--test/packaging/msi/explicit-target.py6
-rw-r--r--test/packaging/msi/file-placement.py6
-rw-r--r--test/packaging/msi/package.py6
-rw-r--r--test/packaging/multiple-packages-at-once.py6
-rw-r--r--test/packaging/multiple-subdirs.py6
-rw-r--r--test/packaging/option--package-type.py6
-rw-r--r--test/packaging/place-files-in-subdirectory.py6
-rw-r--r--test/packaging/rpm/cleanup.py6
-rw-r--r--test/packaging/rpm/explicit-target.py6
-rw-r--r--test/packaging/rpm/internationalization.py6
-rw-r--r--test/packaging/rpm/multipackage.py6
-rw-r--r--test/packaging/rpm/package.py6
-rw-r--r--test/packaging/rpm/tagging.py6
-rw-r--r--test/packaging/sandbox-test.py6
-rw-r--r--test/packaging/strip-install-dir.py6
-rw-r--r--test/packaging/tar/bz2.py6
-rw-r--r--test/packaging/tar/gz.py6
-rw-r--r--test/packaging/use-builddir.py6
-rw-r--r--test/packaging/zip.py6
22 files changed, 132 insertions, 0 deletions
diff --git a/test/packaging/convenience-functions.py b/test/packaging/convenience-functions.py
index 6eae270..9554383 100644
--- a/test/packaging/convenience-functions.py
+++ b/test/packaging/convenience-functions.py
@@ -74,3 +74,9 @@ expected = test.wrap_stdout(read_str = expect_read, build_str = expect_build)
test.run(stdout=expected)
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/packaging/guess-package-name.py b/test/packaging/guess-package-name.py
index 9c91248..9c85b9a 100644
--- a/test/packaging/guess-package-name.py
+++ b/test/packaging/guess-package-name.py
@@ -103,3 +103,9 @@ test.run(stderr = None)
test.must_exist( 'libfoo-1.2.3.tar.bz2' )
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/packaging/ipkg.py b/test/packaging/ipkg.py
index 62ce628..08889a9 100644
--- a/test/packaging/ipkg.py
+++ b/test/packaging/ipkg.py
@@ -127,3 +127,9 @@ test.run(arguments='', stderr = None)
test.must_exist( 'foo_0.0_arm.ipk' )
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/packaging/msi/explicit-target.py b/test/packaging/msi/explicit-target.py
index e7b0c2d..bc786ee 100644
--- a/test/packaging/msi/explicit-target.py
+++ b/test/packaging/msi/explicit-target.py
@@ -89,3 +89,9 @@ test.fail_test( not Package.attributes['Description'].value == 'balalalalal' )
test.fail_test( not Package.attributes['Comments'].value == 'this should be reallly really long' )
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/packaging/msi/file-placement.py b/test/packaging/msi/file-placement.py
index c2aaf35..2cc9e61 100644
--- a/test/packaging/msi/file-placement.py
+++ b/test/packaging/msi/file-placement.py
@@ -170,3 +170,9 @@ componentrefs = features[2].getElementsByTagName( 'ComponentRef' )
test.fail_test( not componentrefs[0].attributes['Id'].value == 'file3.dll' )
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/packaging/msi/package.py b/test/packaging/msi/package.py
index 3fb4e6e..0de241e 100644
--- a/test/packaging/msi/package.py
+++ b/test/packaging/msi/package.py
@@ -138,3 +138,9 @@ test.fail_test( not elements[4].attributes['Title'].value == 'Java Part' )
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/packaging/multiple-packages-at-once.py b/test/packaging/multiple-packages-at-once.py
index bbf273f..8c3f72d 100644
--- a/test/packaging/multiple-packages-at-once.py
+++ b/test/packaging/multiple-packages-at-once.py
@@ -97,3 +97,9 @@ test.must_exist( 'src-1.0.tar.gz' )
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/packaging/multiple-subdirs.py b/test/packaging/multiple-subdirs.py
index 80758ab..66b81a3 100644
--- a/test/packaging/multiple-subdirs.py
+++ b/test/packaging/multiple-subdirs.py
@@ -78,3 +78,9 @@ test.must_exist(['two', 'two-1.0.0.tar.gz'])
test.must_exist(['three', 'three-1.0.0.tar.gz'])
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/packaging/option--package-type.py b/test/packaging/option--package-type.py
index ce16e95..c1d6720 100644
--- a/test/packaging/option--package-type.py
+++ b/test/packaging/option--package-type.py
@@ -86,3 +86,9 @@ test.must_not_exist( 'bin/main.c' )
test.must_not_exist( '/bin/main.c' )
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/packaging/place-files-in-subdirectory.py b/test/packaging/place-files-in-subdirectory.py
index 66bdd53..f7224ba 100644
--- a/test/packaging/place-files-in-subdirectory.py
+++ b/test/packaging/place-files-in-subdirectory.py
@@ -106,3 +106,9 @@ str = os.popen( 'tar -tzf %s'%test.workpath('libfoo-1.2.3.tar.gz') ).read()
test.fail_test( str != "libfoo-1.2.3/src/main.c\nlibfoo-1.2.3/SConstruct\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/packaging/rpm/cleanup.py b/test/packaging/rpm/cleanup.py
index 11f6645..7ae5473 100644
--- a/test/packaging/rpm/cleanup.py
+++ b/test/packaging/rpm/cleanup.py
@@ -105,3 +105,9 @@ test.must_not_exist( 'foo-1.2.3/src/main.c' )
test.must_not_exist( 'bin/main' )
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/packaging/rpm/explicit-target.py b/test/packaging/rpm/explicit-target.py
index 2949a2f..c383b57 100644
--- a/test/packaging/rpm/explicit-target.py
+++ b/test/packaging/rpm/explicit-target.py
@@ -86,3 +86,9 @@ scons: *** Setting target is not supported for rpm.
test.run(arguments='', status=2, stderr=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/packaging/rpm/internationalization.py b/test/packaging/rpm/internationalization.py
index 24d8ddd..e9fcc12 100644
--- a/test/packaging/rpm/internationalization.py
+++ b/test/packaging/rpm/internationalization.py
@@ -179,3 +179,9 @@ test.must_exist( src_rpm )
test.must_exist( machine_rpm )
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/packaging/rpm/multipackage.py b/test/packaging/rpm/multipackage.py
index 5b85db3..c3f1f4e 100644
--- a/test/packaging/rpm/multipackage.py
+++ b/test/packaging/rpm/multipackage.py
@@ -113,3 +113,9 @@ test.fail_test( not os.popen('rpm -qpl %s' % machine_rpm).read()=='/bin/main\n')
test.fail_test( not os.popen('rpm -qpl %s' % src_rpm).read()=='foo-1.2.3.spec\nfoo-1.2.3.tar.gz\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/packaging/rpm/package.py b/test/packaging/rpm/package.py
index 2a37265..14da4bb 100644
--- a/test/packaging/rpm/package.py
+++ b/test/packaging/rpm/package.py
@@ -92,3 +92,9 @@ test.fail_test( not os.popen('rpm -qpl %s' % machine_rpm).read()=='/bin/main\n')
test.fail_test( not os.popen('rpm -qpl %s' % src_rpm).read()=='foo-1.2.3.spec\nfoo-1.2.3.tar.gz\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/packaging/rpm/tagging.py b/test/packaging/rpm/tagging.py
index c08b4ef..6a242c6 100644
--- a/test/packaging/rpm/tagging.py
+++ b/test/packaging/rpm/tagging.py
@@ -99,3 +99,9 @@ expect = '(0755, root, users) /bin/main'
test.must_contain_all_lines(test.read('foo-1.2.3.spec'), [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/packaging/sandbox-test.py b/test/packaging/sandbox-test.py
index f82940b..7110c87 100644
--- a/test/packaging/sandbox-test.py
+++ b/test/packaging/sandbox-test.py
@@ -71,3 +71,9 @@ test.must_exist( 'libfoobar-1.2.3.tar.gz' )
test.must_exist( 'libfoobar-1.2.3.zip' )
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/packaging/strip-install-dir.py b/test/packaging/strip-install-dir.py
index ec40220..92f0361 100644
--- a/test/packaging/strip-install-dir.py
+++ b/test/packaging/strip-install-dir.py
@@ -63,3 +63,9 @@ test.must_not_exist( 'bin/main.c' )
test.must_not_exist( '/bin/main.c' )
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/packaging/tar/bz2.py b/test/packaging/tar/bz2.py
index 3a12a9b..d37de00 100644
--- a/test/packaging/tar/bz2.py
+++ b/test/packaging/tar/bz2.py
@@ -61,3 +61,9 @@ env.Package( PACKAGETYPE = 'src_tarbz2',
test.must_exist( 'src.tar.bz2' )
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/packaging/tar/gz.py b/test/packaging/tar/gz.py
index 6582ed2..052adc2 100644
--- a/test/packaging/tar/gz.py
+++ b/test/packaging/tar/gz.py
@@ -61,3 +61,9 @@ env.Package( PACKAGETYPE = 'src_targz',
test.must_exist( 'src.tar.gz' )
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/packaging/use-builddir.py b/test/packaging/use-builddir.py
index 4d7e887..76b9737 100644
--- a/test/packaging/use-builddir.py
+++ b/test/packaging/use-builddir.py
@@ -91,3 +91,9 @@ test.must_exist( 'temp/libfoo-1.2.3/src/main.c' )
test.must_exist( 'temp/libfoo-1.2.3/SConstruct' )
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/packaging/zip.py b/test/packaging/zip.py
index a2406e6..89f3074 100644
--- a/test/packaging/zip.py
+++ b/test/packaging/zip.py
@@ -63,3 +63,9 @@ test.run(arguments='', stderr = None)
test.must_exist( 'src.zip' )
test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4: