diff options
author | rmax <rmax> | 2006-01-16 19:38:15 (GMT) |
---|---|---|
committer | rmax <rmax> | 2006-01-16 19:38:15 (GMT) |
commit | 73cefe9821b18e74d301da6d70d9d2709cacfe7f (patch) | |
tree | 486cebf175fe6337e67e436ad7775e69b84d5e20 /tests/exec.test | |
parent | 511d1d6b19ab88a56c6988740f83cbad45f6bc28 (diff) | |
download | tcl-73cefe9821b18e74d301da6d70d9d2709cacfe7f.zip tcl-73cefe9821b18e74d301da6d70d9d2709cacfe7f.tar.gz tcl-73cefe9821b18e74d301da6d70d9d2709cacfe7f.tar.bz2 |
* generic/tclPipe.c (FileForRedirect): Prevent nameString from
being freed without having been initialized.
* tests/exec.test: Added a test for the above.
Diffstat (limited to 'tests/exec.test')
-rw-r--r-- | tests/exec.test | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/exec.test b/tests/exec.test index 6575bf6..b43da60 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.24 2005/11/04 23:01:40 patthoyts Exp $ +# RCS: @(#) $Id: exec.test,v 1.25 2006/01/16 19:38:15 rmax Exp $ package require tcltest 2 namespace import -force ::tcltest::* @@ -402,7 +402,11 @@ test exec-10.20 {errors in exec invocation} {exec} { test exec-10.21 {errors in exec invocation} {exec} { list [catch {exec [interpreter] true | ~xyzzy_bad_user/x | false} msg] $msg } {1 {user "xyzzy_bad_user" doesn't exist}} - +test exec-10.22 {errors in exec invocation} \ +-constraints exec \ +-returnCodes 1 \ +-body {exec echo test > ~non_existent_user/foo/bar} \ +-result {user "non_existent_user" doesn't exist} # Commands in background. test exec-11.1 {commands in background} {exec} { |