diff options
author | Steven Knight <knight@baldmt.com> | 2004-12-15 03:19:12 +0000 |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-12-15 03:19:12 +0000 |
commit | 41a6db6e20cd1e326e114e1bdac54df8660ab51c (patch) | |
tree | 2f979e277aaa83395d8bdaf7b2bf183e192b30b6 /src/engine/SCons/EnvironmentTests.py | |
parent | 7fb6f3fba8fee089062cb3a5159037d80abd55b7 (diff) | |
download | scons-41a6db6e20cd1e326e114e1bdac54df8660ab51c.tar.gz |
Remove Node scanner storage. (Kevin Quick)
Diffstat (limited to 'src/engine/SCons/EnvironmentTests.py')
-rw-r--r-- | src/engine/SCons/EnvironmentTests.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/engine/SCons/EnvironmentTests.py b/src/engine/SCons/EnvironmentTests.py index 71383e7a..56c42cbc 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. |