diff options
author | hobbs <hobbs> | 2001-09-14 00:43:21 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2001-09-14 00:43:21 (GMT) |
commit | 42e90f4f65fe0740c1045bf3f4a1f4c81522b6a3 (patch) | |
tree | 0c4cb7adb139c9e422bec181ffaff6ecdb71df13 /tests/socket.test | |
parent | 37be4afdd112e8b929bc2005e753d1df3b500065 (diff) | |
download | tcl-42e90f4f65fe0740c1045bf3f4a1f4c81522b6a3.zip tcl-42e90f4f65fe0740c1045bf3f4a1f4c81522b6a3.tar.gz tcl-42e90f4f65fe0740c1045bf3f4a1f4c81522b6a3.tar.bz2 |
fixed typo in socket-12.1
Diffstat (limited to 'tests/socket.test')
-rw-r--r-- | tests/socket.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/socket.test b/tests/socket.test index dfd6292..46a3e72 100644 --- a/tests/socket.test +++ b/tests/socket.test @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: socket.test,v 1.17 2001/09/11 17:30:44 andreas_kupries Exp $ +# RCS: @(#) $Id: socket.test,v 1.18 2001/09/14 00:43:21 hobbs Exp $ # Running socket tests with a remote server: # ------------------------------------------ @@ -1425,7 +1425,7 @@ test socket-12.1 {testing inheritance of server sockets} {socket exec} { ### exec $::tcltest::tcltest script2 & set p [open "|[list $::tcltest::tcltest script2]" r] - gets $f listen + gets $p listen after 5000 { set ok_to_proceed 1 } vwait ok_to_proceed |