summaryrefslogtreecommitdiff
path: root/test/ARGUMENTS.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-01-25 02:07:36 +0000
committerSteven Knight <knight@baldmt.com>2004-01-25 02:07:36 +0000
commita478cc2fd257e58173fed2f3d00a2b0948a64fcf (patch)
treeb1081edb286ef95c33c7297e09772fbdc774fc89 /test/ARGUMENTS.py
parent3137cbe6b869e0b69c1fafcc6b692ccd099c2109 (diff)
downloadscons-a478cc2fd257e58173fed2f3d00a2b0948a64fcf.tar.gz
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 ab1f806d..69947a66 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()