summaryrefslogtreecommitdiffstats
path: root/test/Dir/source.py
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2018-09-26 02:57:44 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2018-09-26 02:57:44 (GMT)
commite3a56e698a663c309d42d56e1064077d4c5de602 (patch)
tree4754b0317a2f8524183df52f4bb5a407ceab17d3 /test/Dir/source.py
parent948b7daaad23a943d10ec74d864467d7ff659de9 (diff)
downloadSCons-e3a56e698a663c309d42d56e1064077d4c5de602.zip
SCons-e3a56e698a663c309d42d56e1064077d4c5de602.tar.gz
SCons-e3a56e698a663c309d42d56e1064077d4c5de602.tar.bz2
More changes to speed up testing on windows.
Diffstat (limited to 'test/Dir/source.py')
-rw-r--r--test/Dir/source.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Dir/source.py b/test/Dir/source.py
index c272c8f..5fe917d 100644
--- a/test/Dir/source.py
+++ b/test/Dir/source.py
@@ -42,6 +42,7 @@ test.subdir('tstamp', [ 'tstamp', 'subdir' ],
'cmd-content', [ 'cmd-content', 'subdir' ])
test.write('SConstruct', """\
+DefaultEnvironment(tools=[])
def writeTarget(target, source, env):
f=open(str(target[0]), 'w')
f.write("stuff\\n")
@@ -52,7 +53,7 @@ test_bld_dir = Builder(action=writeTarget,
source_factory=Dir,
source_scanner=DirScanner)
test_bld_file = Builder(action=writeTarget)
-env = Environment()
+env = Environment(tools=[])
env['BUILDERS']['TestDir'] = test_bld_dir
env['BUILDERS']['TestFile'] = test_bld_file