From 9e2a7c517ef3bc6776227ced814b0635dae0f724 Mon Sep 17 00:00:00 2001 From: William Deegan Date: Mon, 16 Feb 2015 16:27:30 -0800 Subject: 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. --- test/site_scons/override.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/site_scons/override.py b/test/site_scons/override.py index ad03eaebb..e33bb888e 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 .', -- cgit v1.2.1