Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-02-08 19:46:32 +0300
committerChristopher Faylor <me@cgf.cx>2003-02-08 19:46:32 +0300
commit9c88207cf3556c4799406ae89b25f82a6842ca57 (patch)
treeb715b4149942b6072c980ddf62efec7b45a4c46b /winsup/testsuite
parent994d26a476fbfb86258bf64644dc86bec02d0574 (diff)
* winsup.api/winsup.exp (ws_spawn): Tweak slightly to work with tcl 8.4.1.
Diffstat (limited to 'winsup/testsuite')
-rw-r--r--winsup/testsuite/ChangeLog5
-rw-r--r--winsup/testsuite/winsup.api/winsup.exp2
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/testsuite/ChangeLog b/winsup/testsuite/ChangeLog
index beb33c200..708200531 100644
--- a/winsup/testsuite/ChangeLog
+++ b/winsup/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2003-02-08 Christopher Faylor <cgf@redhat.com>
+
+ * winsup.api/winsup.exp (ws_spawn): Tweak slightly to work with tcl
+ 8.4.1.
+
2003-02-07 Christopher Faylor <cgf@redhat.com>
* libltp/lib/parse_opts.c: Deal with C warnings.
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"
}