summaryrefslogtreecommitdiffstats
path: root/test/option/debug-multiple.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/option/debug-multiple.py')
-rw-r--r--test/option/debug-multiple.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/option/debug-multiple.py b/test/option/debug-multiple.py
index f121a2c..23af13b 100644
--- a/test/option/debug-multiple.py
+++ b/test/option/debug-multiple.py
@@ -36,6 +36,7 @@ import TestSCons
test = TestSCons.TestSCons()
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))})