summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/EnvironmentTests.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-12-15 03:19:12 (GMT)
committerSteven Knight <knight@baldmt.com>2004-12-15 03:19:12 (GMT)
commit41a6db6e20cd1e326e114e1bdac54df8660ab51c (patch)
tree2f979e277aaa83395d8bdaf7b2bf183e192b30b6 /src/engine/SCons/EnvironmentTests.py
parent7fb6f3fba8fee089062cb3a5159037d80abd55b7 (diff)
downloadSCons-41a6db6e20cd1e326e114e1bdac54df8660ab51c.zip
SCons-41a6db6e20cd1e326e114e1bdac54df8660ab51c.tar.gz
SCons-41a6db6e20cd1e326e114e1bdac54df8660ab51c.tar.bz2
Remove Node scanner storage. (Kevin Quick)
Diffstat (limited to 'src/engine/SCons/EnvironmentTests.py')
-rw-r--r--src/engine/SCons/EnvironmentTests.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/engine/SCons/EnvironmentTests.py b/src/engine/SCons/EnvironmentTests.py
index 71383e7..56c42cb 100644
--- a/src/engine/SCons/EnvironmentTests.py
+++ b/src/engine/SCons/EnvironmentTests.py
@@ -2001,6 +2001,13 @@ f5: \
assert str(t) == 'xxx.out', str(t)
assert 'xxx.in' in map(lambda x: x.path, t.sources)
+ # Make sure we can use Builder keyword arguments
+ # on Command() calls.
+ env.Command(target='mmm.out', source='mmm.1.in',
+ action='multibuild', multi=1)
+ env.Command(target='mmm.out', source='mmm.2.in',
+ action='multibuild', multi=1)
+
def test_Configure(self):
"""Test the Configure() method"""
# Configure() will write to a local temporary file.