diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-09-20 19:43:48 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2020-09-20 21:22:41 (GMT) |
commit | aa6a710954b216e89c3e58d73d06319bfce4c785 (patch) | |
tree | cf6cab0954036f626d0e508006f0e9a0e44251ed /test | |
parent | 49d40b718a86fc0cb0fdaa7e76b282b6c09735c2 (diff) | |
download | SCons-aa6a710954b216e89c3e58d73d06319bfce4c785.zip SCons-aa6a710954b216e89c3e58d73d06319bfce4c785.tar.gz SCons-aa6a710954b216e89c3e58d73d06319bfce4c785.tar.bz2 |
clean up test so it doesn't load any unnecessary tools
Diffstat (limited to 'test')
-rw-r--r-- | test/TEMPFILE/fixture/SConstruct-tempfile-actionlist | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/TEMPFILE/fixture/SConstruct-tempfile-actionlist b/test/TEMPFILE/fixture/SConstruct-tempfile-actionlist index 78aee7b..07b6345 100644 --- a/test/TEMPFILE/fixture/SConstruct-tempfile-actionlist +++ b/test/TEMPFILE/fixture/SConstruct-tempfile-actionlist @@ -1,4 +1,6 @@ -env = Environment(BUILDCOM=['${TEMPFILE("xxx.py -otempfile $SOURCE")}', +DefaultEnvironment(tools=[]) +env = Environment(tools=[], + BUILDCOM=['${TEMPFILE("xxx.py -otempfile $SOURCE")}', '${TEMPFILE("yyy.py -o$TARGET tempfile")}'], MAXLINELENGTH=1) env.Command('file.output', 'file.input', '$BUILDCOM') |