summaryrefslogtreecommitdiff
path: root/test/Install/INSTALLSTR.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/Install/INSTALLSTR.py')
-rw-r--r--test/Install/INSTALLSTR.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/Install/INSTALLSTR.py b/test/Install/INSTALLSTR.py
index 145b81dbb..ace04f4af 100644
--- a/test/Install/INSTALLSTR.py
+++ b/test/Install/INSTALLSTR.py
@@ -36,16 +36,18 @@ test = TestSCons.TestSCons()
test.subdir('install')
+# Check that spaces aren't stripped in INSTALLSTR by using
+# extra whitespace in the string (issue 2018)
test.write('SConstruct', """\
DefaultEnvironment(tools=[])
-env = Environment(tools=[], INSTALLSTR = 'INSTALL $SOURCE => $TARGET!')
+env = Environment(tools=[], INSTALLSTR='INSTALL $SOURCE => $TARGET!')
env.Install('install', 'file')
""")
test.write('file', "file\n")
test.run(stdout=test.wrap_stdout("""\
-INSTALL file => %s!
+INSTALL file => %s!
""") % os.path.join('install', 'file'))
test.must_match(['install', 'file'], "file\n")