summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2015-02-16 16:27:30 -0800
committerWilliam Deegan <bill@baddogconsulting.com>2015-02-16 16:27:30 -0800
commit1df98abb41745b21da0e1e9009fc66416f221472 (patch)
treec73295fc775bc5cf6cbe1e9ef2bb7e060ed1baa6
parent5b070062b6fb224259d85f28bef60f15ad36effc (diff)
downloadscons-1df98abb41745b21da0e1e9009fc66416f221472.tar.gz
fix test/site_scons/override.py which was failing only on Win32. loading the m4 tool was excluded in src/engine/SCons/Tool/__init__.py in tool_list(). So I've explicitly created the Environment() loading only the m4 tool. This test is checking to see if a tool in site_scons/site_tools would override the default logic.
-rw-r--r--test/site_scons/override.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/site_scons/override.py b/test/site_scons/override.py
index ad03eaeb..e33bb888 100644
--- a/test/site_scons/override.py
+++ b/test/site_scons/override.py
@@ -48,7 +48,7 @@ def exists(env):
""")
test.write('SConstruct', """
-e=Environment()
+e=Environment(tools=['m4'])
print e.subst('M4 is $M4, M4_MINE is $M4_MINE')
""")
test.run(arguments = '-Q .',