summaryrefslogtreecommitdiffstats
path: root/test/ARGUMENTS.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-01-25 02:07:36 (GMT)
committerSteven Knight <knight@baldmt.com>2004-01-25 02:07:36 (GMT)
commit4e3b37959a38511c32b997a9c60efac699e5a635 (patch)
treeb1081edb286ef95c33c7297e09772fbdc774fc89 /test/ARGUMENTS.py
parent117ad0b6eaeb8aa4efcd4b1ec474f0d7c345342c (diff)
downloadSCons-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.py3
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()