summaryrefslogtreecommitdiffstats
path: root/test/ParseDepends.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/ParseDepends.py')
-rw-r--r--test/ParseDepends.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/ParseDepends.py b/test/ParseDepends.py
index aa15fc9..2de2105 100644
--- a/test/ParseDepends.py
+++ b/test/ParseDepends.py
@@ -40,13 +40,10 @@ with open(sys.argv[1], 'wb') as f, open(sys.argv[2], 'rb') as afp2, open(sys.arg
f.write(afp2.read() + afp3.read())
""")
-# Pass IMPLICIT_COMMAND_DEPENDENCIES=False because the test depends on us not
-# taking a dependency on the last file in the action string.
test.write('SConstruct', """
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',
- IMPLICIT_COMMAND_DEPENDENCIES=False)
+env = Environment(BUILDERS = { 'Foo' : Foo, 'Bar' : Bar }, SUBDIR='subdir')
env.ParseDepends('foo.d')
env.ParseDepends('bar.d')
env.Foo(target = 'f1.out', source = 'f1.in')