diff options
author | hershey <hershey> | 1999-04-20 19:19:35 (GMT) |
---|---|---|
committer | hershey <hershey> | 1999-04-20 19:19:35 (GMT) |
commit | 7c9285dfe8c87bfddcbcd8edfed62cdf18575a60 (patch) | |
tree | e72b6a149ffe3d88eae28b693fa7d45f032b6e53 /tests/event.test | |
parent | 1078972debd4f992f68ecb132cb08616037048cd (diff) | |
download | tcl-7c9285dfe8c87bfddcbcd8edfed62cdf18575a60.zip tcl-7c9285dfe8c87bfddcbcd8edfed62cdf18575a60.tar.gz tcl-7c9285dfe8c87bfddcbcd8edfed62cdf18575a60.tar.bz2 |
added a delay to a event to so it can pass on slower machines.
Diffstat (limited to 'tests/event.test')
-rw-r--r-- | tests/event.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/event.test b/tests/event.test index d75c959..d398b5e 100644 --- a/tests/event.test +++ b/tests/event.test @@ -9,7 +9,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: event.test,v 1.4 1999/04/16 00:47:26 stanton Exp $ +# RCS: @(#) $Id: event.test,v 1.5 1999/04/20 19:19:35 hershey Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { source [file join [pwd] [file dirname [info script]] defs.tcl] @@ -394,6 +394,7 @@ test event-11.5 {Tcl_VwaitCmd procedure: round robin scheduling, 2 sources} {soc close $s } set s1 [socket -server accept 5001] + after 1000 set s2 [socket 127.0.0.1 5001] close $s1 set x 0 |