summaryrefslogtreecommitdiffstats
path: root/test/Clean/basic.py
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2018-10-01 16:29:59 (GMT)
committerGitHub <noreply@github.com>2018-10-01 16:29:59 (GMT)
commit623a1ac4f17006e1fc847c82bcdbdc6a7c2c0929 (patch)
treecbb15688bef0850e1847f7be9cf52ce8c6255137 /test/Clean/basic.py
parent748b05d34deacb718a57b2463aa9a1f10958740c (diff)
parentdb67204cfdb270dbc08f36813e20c0a41c225b25 (diff)
downloadSCons-623a1ac4f17006e1fc847c82bcdbdc6a7c2c0929.zip
SCons-623a1ac4f17006e1fc847c82bcdbdc6a7c2c0929.tar.gz
SCons-623a1ac4f17006e1fc847c82bcdbdc6a7c2c0929.tar.bz2
Merge pull request #3201 from bdbaddog/speedup_win_tests_pt1
Speedup tests on Windows platform - Part 1 (more to come)
Diffstat (limited to 'test/Clean/basic.py')
-rw-r--r--test/Clean/basic.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Clean/basic.py b/test/Clean/basic.py
index 7c4730e..e9f0540 100644
--- a/test/Clean/basic.py
+++ b/test/Clean/basic.py
@@ -45,8 +45,9 @@ file.close()
""")
test.write('SConstruct', """
+DefaultEnvironment(tools=[])
B = Builder(action = r'%(_python_)s build.py $TARGETS $SOURCES')
-env = Environment(BUILDERS = { 'B' : B })
+env = Environment(tools=[], BUILDERS = { 'B' : B })
env.B(target = 'foo1.out', source = 'foo1.in')
env.B(target = 'foo2.out', source = 'foo2.xxx')
env.B(target = 'foo2.xxx', source = 'foo2.in')