diff options
author | Steven Knight <knight@baldmt.com> | 2004-01-25 02:07:36 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-01-25 02:07:36 (GMT) |
commit | 4e3b37959a38511c32b997a9c60efac699e5a635 (patch) | |
tree | b1081edb286ef95c33c7297e09772fbdc774fc89 /test/ARGUMENTS.py | |
parent | 117ad0b6eaeb8aa4efcd4b1ec474f0d7c345342c (diff) | |
download | SCons-4e3b37959a38511c32b997a9c60efac699e5a635.zip SCons-4e3b37959a38511c32b997a9c60efac699e5a635.tar.gz SCons-4e3b37959a38511c32b997a9c60efac699e5a635.tar.bz2 |
Fix ARGUMENTS specifications on the command line that have multiple = in them. (Zephaniah Hull)
Diffstat (limited to 'test/ARGUMENTS.py')
-rw-r--r-- | test/ARGUMENTS.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/ARGUMENTS.py b/test/ARGUMENTS.py index ab1f806..69947a6 100644 --- a/test/ARGUMENTS.py +++ b/test/ARGUMENTS.py @@ -37,11 +37,12 @@ for k in keys: foo.close() """) -test.run(arguments='a=1 bz=3 xx=sd .') +test.run(arguments='a=1 bz=3 xx=sd zzz=foo=bar .') test.fail_test(test.read('foo.out') != """a = 1 bz = 3 xx = sd +zzz = foo=bar """) test.pass_test() |