diff options
author | William Deegan <bill@baddogconsulting.com> | 2018-09-26 16:51:36 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2018-09-26 16:51:36 (GMT) |
commit | 9ac18d0456d1f7a43596221b83537083f532a823 (patch) | |
tree | e5d714a54bed9439a2cf6abbcbb04ed2f0d03e7a /test/Glob/basic.py | |
parent | c0f0caae5890c032a6a82e8b24124b21b3152f99 (diff) | |
download | SCons-9ac18d0456d1f7a43596221b83537083f532a823.zip SCons-9ac18d0456d1f7a43596221b83537083f532a823.tar.gz SCons-9ac18d0456d1f7a43596221b83537083f532a823.tar.bz2 |
Speed up Glob tests for windows
Diffstat (limited to 'test/Glob/basic.py')
-rw-r--r-- | test/Glob/basic.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Glob/basic.py b/test/Glob/basic.py index 9afbbc6..ad998c3 100644 --- a/test/Glob/basic.py +++ b/test/Glob/basic.py @@ -33,7 +33,8 @@ import TestSCons test = TestSCons.TestSCons() test.write('SConstruct', """\ -env = Environment() +DefaultEnvironment(tools=[]) +env = Environment(tools=[]) def concatenate(target, source, env): fp = open(str(target[0]), 'wb') |