diff options
author | Steven Knight <knight@baldmt.com> | 2009-02-09 18:29:43 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2009-02-09 18:29:43 (GMT) |
commit | ba21ffe311490bb348716e8e9127109e7fdc2f08 (patch) | |
tree | 5664bb6b48d53803e7ea52f1caa5afa241413f32 /test/QT | |
parent | 895f277379ccb6272549468d18f27f4a5fc2ee2f (diff) | |
download | SCons-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/QT')
-rw-r--r-- | test/QT/CPPPATH-appended.py | 6 | ||||
-rw-r--r-- | test/QT/CPPPATH.py | 6 | ||||
-rw-r--r-- | test/QT/QTFLAGS.py | 6 | ||||
-rw-r--r-- | test/QT/Tool.py | 6 | ||||
-rw-r--r-- | test/QT/copied-env.py | 6 | ||||
-rw-r--r-- | test/QT/empty-env.py | 6 | ||||
-rw-r--r-- | test/QT/generated-ui.py | 6 | ||||
-rw-r--r-- | test/QT/installed.py | 6 | ||||
-rw-r--r-- | test/QT/manual.py | 6 | ||||
-rw-r--r-- | test/QT/moc-from-cpp.py | 6 | ||||
-rw-r--r-- | test/QT/moc-from-header.py | 6 | ||||
-rw-r--r-- | test/QT/reentrant.py | 6 | ||||
-rw-r--r-- | test/QT/source-from-ui.py | 6 | ||||
-rw-r--r-- | test/QT/up-to-date.py | 6 | ||||
-rw-r--r-- | test/QT/warnings.py | 6 |
15 files changed, 90 insertions, 0 deletions
diff --git a/test/QT/CPPPATH-appended.py b/test/QT/CPPPATH-appended.py index dc5e813..2780921 100644 --- a/test/QT/CPPPATH-appended.py +++ b/test/QT/CPPPATH-appended.py @@ -73,3 +73,9 @@ test.write(['sub', 'local_include', 'local_include.h'], r""" test.run(arguments = aaa_exe) test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: diff --git a/test/QT/CPPPATH.py b/test/QT/CPPPATH.py index a45465f..4ea42bd 100644 --- a/test/QT/CPPPATH.py +++ b/test/QT/CPPPATH.py @@ -63,3 +63,9 @@ test.write(['local_include', 'local_include.h'], r""" test.run(arguments = aaa_exe) test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: diff --git a/test/QT/QTFLAGS.py b/test/QT/QTFLAGS.py index 5656b08..87dcaf0 100644 --- a/test/QT/QTFLAGS.py +++ b/test/QT/QTFLAGS.py @@ -277,3 +277,9 @@ test.run(chdir='work2', stderr=None) test.must_exist(['work2', 'main' + _exe]) test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: diff --git a/test/QT/Tool.py b/test/QT/Tool.py index bb6b851..86eb4ca 100644 --- a/test/QT/Tool.py +++ b/test/QT/Tool.py @@ -151,3 +151,9 @@ env.Tool('qt', ['$TOOL_PATH']) 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/QT/copied-env.py b/test/QT/copied-env.py index dc96317..f68e1db 100644 --- a/test/QT/copied-env.py +++ b/test/QT/copied-env.py @@ -79,3 +79,9 @@ if not MYLIB_IMPL: test.fail_test() test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: diff --git a/test/QT/empty-env.py b/test/QT/empty-env.py index 5bf173a..77547e7 100644 --- a/test/QT/empty-env.py +++ b/test/QT/empty-env.py @@ -69,3 +69,9 @@ test.run(program = test.workpath('main' + TestSCons._exe), stdout = 'qt/include/foo6.h\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/QT/generated-ui.py b/test/QT/generated-ui.py index 991047d..e01a633 100644 --- a/test/QT/generated-ui.py +++ b/test/QT/generated-ui.py @@ -127,3 +127,9 @@ test.run(arguments = '.', 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/QT/installed.py b/test/QT/installed.py index dde81c7..e9d2e16 100644 --- a/test/QT/installed.py +++ b/test/QT/installed.py @@ -211,3 +211,9 @@ test.fail_test(string.find(test.stderr(), expect1) == -1 and test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: diff --git a/test/QT/manual.py b/test/QT/manual.py index d3426db..dcab3aa 100644 --- a/test/QT/manual.py +++ b/test/QT/manual.py @@ -139,3 +139,9 @@ test.must_exist(test.workpath('fff.cpp')) test.must_exist(test.workpath('fff.moc.cpp')) test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: diff --git a/test/QT/moc-from-cpp.py b/test/QT/moc-from-cpp.py index 1936a72..1bd7b10 100644 --- a/test/QT/moc-from-cpp.py +++ b/test/QT/moc-from-cpp.py @@ -97,3 +97,9 @@ test.run(arguments = "variant_dir=1 dup=0 " + test.must_exist(test.workpath('build_dup0', moc)) test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: diff --git a/test/QT/moc-from-header.py b/test/QT/moc-from-header.py index 102facc..41b1b3d 100644 --- a/test/QT/moc-from-header.py +++ b/test/QT/moc-from-header.py @@ -97,3 +97,9 @@ test.run(arguments = "variant_dir=1 chdir=1 dup=0 " + test.must_exist(['build_dup0', moc]) test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: diff --git a/test/QT/reentrant.py b/test/QT/reentrant.py index 336aa13..be464b9 100644 --- a/test/QT/reentrant.py +++ b/test/QT/reentrant.py @@ -65,3 +65,9 @@ test.run(program = test.workpath('main' + TestSCons._exe), stdout = 'qt/include/foo5.h\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/QT/source-from-ui.py b/test/QT/source-from-ui.py index 874285d..6cffecc 100644 --- a/test/QT/source-from-ui.py +++ b/test/QT/source-from-ui.py @@ -149,3 +149,9 @@ test.must_not_exist(test.workpath(cpp)) test.must_not_exist(test.workpath(h)) test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: diff --git a/test/QT/up-to-date.py b/test/QT/up-to-date.py index 28ae16e..fbbcac0 100644 --- a/test/QT/up-to-date.py +++ b/test/QT/up-to-date.py @@ -139,3 +139,9 @@ test.up_to_date(options = '--debug=explain', stderr=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/QT/warnings.py b/test/QT/warnings.py index ef94dd6..975091b 100644 --- a/test/QT/warnings.py +++ b/test/QT/warnings.py @@ -98,3 +98,9 @@ File "%s", line \d+, in (\?|<module>) test.fail_test(not test.match_re(test.stderr(), expect)) test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: |