summaryrefslogtreecommitdiffstats
path: root/test/CPPDEFINES
diff options
context:
space:
mode:
authorRussel Winder <russel@winder.org.uk>2016-01-10 15:29:55 (GMT)
committerRussel Winder <russel@winder.org.uk>2016-01-10 15:29:55 (GMT)
commit2bffdfc4addbc1565c2f21f35b73ab09ef4f3105 (patch)
tree7ddd20376bdc4514c673615dcddd01d7f9dbc10b /test/CPPDEFINES
parent543495e2fe3353396225b973e7fe64fb8e566f64 (diff)
downloadSCons-2bffdfc4addbc1565c2f21f35b73ab09ef4f3105.zip
SCons-2bffdfc4addbc1565c2f21f35b73ab09ef4f3105.tar.gz
SCons-2bffdfc4addbc1565c2f21f35b73ab09ef4f3105.tar.bz2
Remove spurious space causing test fail.
Diffstat (limited to 'test/CPPDEFINES')
-rw-r--r--test/CPPDEFINES/append.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CPPDEFINES/append.py b/test/CPPDEFINES/append.py
index 432ab64..14ea7b3 100644
--- a/test/CPPDEFINES/append.py
+++ b/test/CPPDEFINES/append.py
@@ -67,7 +67,7 @@ for (t1, c1) in cases:
env=Environment(CPPDEFINES = c1, CPPDEFPREFIX='-D')
env.Append(CPPDEFINES = c2)
final=env.subst('$_CPPDEFFLAGS',source="src", target="tgt")
- print('Append: \\n\\tresult=%s\\n\\tfinal=%s'%\\
+ print('Append:\\n\\tresult=%s\\n\\tfinal=%s'%\\
(env['CPPDEFINES'], final))
env=Environment(CPPDEFINES = c1, CPPDEFPREFIX='-D')
env.AppendUnique(CPPDEFINES = c2)