diff options
author | Christopher Faylor <me@cgf.cx> | 2003-02-08 16:46:32 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-02-08 16:46:32 +0000 |
commit | 9c88207cf3556c4799406ae89b25f82a6842ca57 (patch) | |
tree | b715b4149942b6072c980ddf62efec7b45a4c46b /winsup/testsuite/winsup.api/winsup.exp | |
parent | 994d26a476fbfb86258bf64644dc86bec02d0574 (diff) | |
download | cygnal-9c88207cf3556c4799406ae89b25f82a6842ca57.tar.gz cygnal-9c88207cf3556c4799406ae89b25f82a6842ca57.tar.bz2 cygnal-9c88207cf3556c4799406ae89b25f82a6842ca57.zip |
* winsup.api/winsup.exp (ws_spawn): Tweak slightly to work with tcl 8.4.1.
Diffstat (limited to 'winsup/testsuite/winsup.api/winsup.exp')
-rw-r--r-- | winsup/testsuite/winsup.api/winsup.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/testsuite/winsup.api/winsup.exp b/winsup/testsuite/winsup.api/winsup.exp index 86064661b..ccfa7b200 100644 --- a/winsup/testsuite/winsup.api/winsup.exp +++ b/winsup/testsuite/winsup.api/winsup.exp @@ -23,7 +23,7 @@ if { [info exists env(CYGWIN_TESTSUITE_TESTS)] } { proc ws_spawn {cmd args} { global rv verbose "running $cmd\n" - catch [eval "exec $cmd"] rv + catch "exec $cmd" rv verbose send "catchCode = $rv\n" } |