diff options
author | William Deegan <bill@baddogconsulting.com> | 2018-09-26 18:03:34 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2018-09-26 18:03:34 (GMT) |
commit | db67204cfdb270dbc08f36813e20c0a41c225b25 (patch) | |
tree | 60c3a7ec077325d4656b557474d2fd763fa1c6d0 /test/option/debug-count.py | |
parent | 8fca42cbacd48d6f832721363813d9b3d1e3163d (diff) | |
download | SCons-db67204cfdb270dbc08f36813e20c0a41c225b25.zip SCons-db67204cfdb270dbc08f36813e20c0a41c225b25.tar.gz SCons-db67204cfdb270dbc08f36813e20c0a41c225b25.tar.bz2 |
Speed up option tests for windows
Diffstat (limited to 'test/option/debug-count.py')
-rw-r--r-- | test/option/debug-count.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/option/debug-count.py b/test/option/debug-count.py index b82a434..2b5b745 100644 --- a/test/option/debug-count.py +++ b/test/option/debug-count.py @@ -44,6 +44,7 @@ except ImportError: test.write('SConstruct', """ +DefaultEnvironment(tools=[]) def cat(target, source, env): open(str(target[0]), 'wb').write(open(str(source[0]), 'rb').read()) env = Environment(BUILDERS={'Cat':Builder(action=Action(cat))}) |