summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2005-11-05 05:56:44 (GMT)
committerSteven Knight <knight@baldmt.com>2005-11-05 05:56:44 (GMT)
commit3bd4a30ca14e0cea712e01efa4df761e6c7bc608 (patch)
treea8b8614a55f2cc2fa7d6ade86388ddfe957fb296 /test
parenta4f7654742e5880b5a568a7314b32381be2a0a94 (diff)
downloadSCons-3bd4a30ca14e0cea712e01efa4df761e6c7bc608.zip
SCons-3bd4a30ca14e0cea712e01efa4df761e6c7bc608.tar.gz
SCons-3bd4a30ca14e0cea712e01efa4df761e6c7bc608.tar.bz2
Add support for a $INSTALLSTR string. (Christoph Schulz)
Diffstat (limited to 'test')
-rw-r--r--test/Install/INSTALLSTR.py52
-rw-r--r--test/Install/Install.py (renamed from test/Install.py)0
-rw-r--r--test/Install/InstallAs.py (renamed from test/InstallAs.py)0
3 files changed, 52 insertions, 0 deletions
diff --git a/test/Install/INSTALLSTR.py b/test/Install/INSTALLSTR.py
new file mode 100644
index 0000000..d809b2c
--- /dev/null
+++ b/test/Install/INSTALLSTR.py
@@ -0,0 +1,52 @@
+#!/usr/bin/env python
+#
+# __COPYRIGHT__
+#
+# Permission is hereby granted, free of charge, to any person obtaining
+# a copy of this software and associated documentation files (the
+# "Software"), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish,
+# distribute, sublicense, and/or sell copies of the Software, and to
+# permit persons to whom the Software is furnished to do so, subject to
+# the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
+# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+#
+
+__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
+
+"""
+Test that the $INSTALLSTR variable is displayed when we install a file.
+"""
+
+import os.path
+
+import TestSCons
+
+test = TestSCons.TestSCons()
+
+test.subdir('install')
+
+test.write('SConstruct', """\
+env = Environment(INSTALLSTR = 'INSTALL $SOURCE => $TARGET!\\n')
+env.Install('install', 'file')
+""")
+
+test.write('file', "file\n")
+
+test.run(stdout=test.wrap_stdout("""\
+INSTALL file => %s!
+""") % os.path.join('install', 'file'))
+
+test.must_match(['install', 'file'], "file\n")
+
+test.pass_test()
diff --git a/test/Install.py b/test/Install/Install.py
index 50f3820..50f3820 100644
--- a/test/Install.py
+++ b/test/Install/Install.py
diff --git a/test/InstallAs.py b/test/Install/InstallAs.py
index c4e88f6..c4e88f6 100644
--- a/test/InstallAs.py
+++ b/test/Install/InstallAs.py