summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2018-09-26 00:16:34 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2018-09-26 00:16:34 (GMT)
commit98c03d901cb4b9aa6ee80ab13888477a4cc3637e (patch)
treec3881e366c3a2a96825a239a08dddbc1c6425b42
parent6d86d2f92d83deb8f00c66858e93cc864bcfcc6a (diff)
downloadSCons-98c03d901cb4b9aa6ee80ab13888477a4cc3637e.zip
SCons-98c03d901cb4b9aa6ee80ab13888477a4cc3637e.tar.gz
SCons-98c03d901cb4b9aa6ee80ab13888477a4cc3637e.tar.bz2
Change so DefaultEnvironment and Enviroment don't initialize any tools to speed up test on windows
-rw-r--r--test/Depends/Depends.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Depends/Depends.py b/test/Depends/Depends.py
index 6804fd0..054b9a1 100644
--- a/test/Depends/Depends.py
+++ b/test/Depends/Depends.py
@@ -51,9 +51,10 @@ SUBDIR_foo_dep = os.path.join('$SUBDIR', 'foo.dep')
SUBDIR_f3_out = os.path.join('$SUBDIR', 'f3.out')
test.write('SConstruct', """
+DefaultEnvironment(tools=[])
Foo = Builder(action = r'%(_python_)s build.py $TARGET $SOURCES subdir/foo.dep')
Bar = Builder(action = r'%(_python_)s build.py $TARGET $SOURCES subdir/bar.dep')
-env = Environment(BUILDERS = { 'Foo' : Foo, 'Bar' : Bar }, SUBDIR='subdir')
+env = Environment(tools=[], BUILDERS = { 'Foo' : Foo, 'Bar' : Bar }, SUBDIR='subdir')
env.Depends(target = ['f1.out', 'f2.out'], dependency = r'%(SUBDIR_foo_dep)s')
env.Depends(target = r'%(SUBDIR_f3_out)s', dependency = 'subdir/bar.dep')
env.Foo(target = 'f1.out', source = 'f1.in')