summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2014-05-28 18:58:51 (GMT)
committerdgp <dgp@users.sourceforge.net>2014-05-28 18:58:51 (GMT)
commitd344208a62df4671dac9a66fa4589979bc68d7bb (patch)
tree9be3430887ad5943e0fe6308e10daaf21569c76a /tests
parent7e7fc66d0c49405ff64c193170207ba58c33301f (diff)
parent8dc54fa3e0120b8916399d8eb7c07c8dbf3810cb (diff)
downloadtcl-d344208a62df4671dac9a66fa4589979bc68d7bb.zip
tcl-d344208a62df4671dac9a66fa4589979bc68d7bb.tar.gz
tcl-d344208a62df4671dac9a66fa4589979bc68d7bb.tar.bz2
Refinements of FlushChannel() and its callers. Notably includes removal
of the flag BUFFER_READY.
Diffstat (limited to 'tests')
-rw-r--r--tests/io.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/io.test b/tests/io.test
index c7da8e6..f1248b9 100644
--- a/tests/io.test
+++ b/tests/io.test
@@ -2786,7 +2786,7 @@ test io-29.34 {Tcl_Close, async flush on close, using sockets} {socket tempNotMa
variable x running
set l abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz
proc writelots {s l} {
- for {set i 0} {$i < 2000} {incr i} {
+ for {set i 0} {$i < 9000} {incr i} {
puts $s $l
}
}
@@ -2817,7 +2817,7 @@ test io-29.34 {Tcl_Close, async flush on close, using sockets} {socket tempNotMa
close $ss
vwait [namespace which -variable x]
set c
-} 2000
+} 9000
test io-29.35 {Tcl_Close vs fileevent vs multiple interpreters} {socket tempNotMac fileevent} {
# On Mac, this test screws up sockets such that subsequent tests using port 2828
# either cause errors or panic().