diff options
author | das <das> | 2008-03-11 22:23:33 (GMT) |
---|---|---|
committer | das <das> | 2008-03-11 22:23:33 (GMT) |
commit | 59b1b83945ed41a450ebe9a8c07ccc6ca6dbfcd0 (patch) | |
tree | 5c69b968595ded23a044be5a2e7479098877f411 /tests/exec.test | |
parent | 964479ff7f21913d53a84477d3ba9dea1b2e5490 (diff) | |
download | tcl-59b1b83945ed41a450ebe9a8c07ccc6ca6dbfcd0.zip tcl-59b1b83945ed41a450ebe9a8c07ccc6ca6dbfcd0.tar.gz tcl-59b1b83945ed41a450ebe9a8c07ccc6ca6dbfcd0.tar.bz2 |
* tests/exec.test (exec-9.7): reduce timing sensitivity
* tests/socket.test (socket-2.11): (esp. on multi-proc machines).
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 b0b9d65..c803343 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.28 2006/12/07 10:35:38 patthoyts Exp $ +# RCS: @(#) $Id: exec.test,v 1.29 2008/03/11 22:23:33 das Exp $ package require tcltest 2 namespace import -force ::tcltest::* @@ -339,8 +339,8 @@ test exec-9.6 {commands returning errors} {exec} { list [catch {exec [interpreter] "$path(sh)" -c "\"$path(echo)\" error msg 1>&2"} msg] $msg } {1 {error msg}} test exec-9.7 {commands returning errors} {exec stdio} { - list [catch {exec [interpreter] "$path(sh)" -c "\"$path(echo)\" error msg 1>&2" \ - | [interpreter] "$path(sh)" -c "\"$path(echo)\" error msg 1>&2"} msg] $msg + list [catch {exec [interpreter] "$path(sh)" -c "\"$path(echo)\" error msg 1>&2 ; \"$path(sleep)\" 1" \ + | [interpreter] "$path(sh)" -c "\"$path(echo)\" error msg 1>&2 ; \"$path(sleep)\" 1"} msg] $msg } {1 {error msg error msg}} |