diff options
author | nijtmans <nijtmans> | 2008-07-21 21:25:21 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2008-07-21 21:25:21 (GMT) |
commit | 35f986c4f26a93c0b5a0f91c81deaea2a1e5f30f (patch) | |
tree | 1e36dc0aa27335f1696429c74cc680263b1c9a06 /tests/exec.test | |
parent | ca32e49e84dd1c4b6f27fac6eb8a747cd699d864 (diff) | |
download | tcl-35f986c4f26a93c0b5a0f91c81deaea2a1e5f30f.zip tcl-35f986c4f26a93c0b5a0f91c81deaea2a1e5f30f.tar.gz tcl-35f986c4f26a93c0b5a0f91c81deaea2a1e5f30f.tar.bz2 |
fix [2021443] inconsistant "wrong # args" messages (follow-up)
Diffstat (limited to 'tests/exec.test')
-rw-r--r-- | tests/exec.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/exec.test b/tests/exec.test index d3e3e35..e8b0e66 100644 --- a/tests/exec.test +++ b/tests/exec.test @@ -11,7 +11,7 @@ # See the file "license.terms" for information on usage and redistribution of # this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: exec.test,v 1.30 2008/07/19 16:20:17 dkf Exp $ +# RCS: @(#) $Id: exec.test,v 1.31 2008/07/21 21:25:21 nijtmans Exp $ package require tcltest 2 namespace import -force ::tcltest::* @@ -364,7 +364,7 @@ err} test exec-10.1 {errors in exec invocation} -constraints {exec} -body { exec -} -returnCodes error -result {wrong # args: should be "exec ?switches? arg ?arg ...?"} +} -returnCodes error -result {wrong # args: should be "exec ?-switch ...? arg ?arg ...?"} test exec-10.2 {errors in exec invocation} -constraints {exec} -body { exec | cat } -returnCodes error -result {illegal use of | or |& in command} @@ -539,7 +539,7 @@ test exec-14.1 {-keepnewline switch} {exec} { } "foo\n" test exec-14.2 {-keepnewline switch} -constraints {exec} -body { exec -keepnewline -} -returnCodes error -result {wrong # args: should be "exec ?switches? arg ?arg ...?"} +} -returnCodes error -result {wrong # args: should be "exec ?-switch ...? arg ?arg ...?"} test exec-14.3 {unknown switch} -constraints {exec} -body { exec -gorp } -returnCodes error -result {bad switch "-gorp": must be -ignorestderr, -keepnewline, or --} |