diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-23 07:47:15 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-23 07:47:15 (GMT) |
commit | 649c413c41cc325e89367e599b52d503902cc0b1 (patch) | |
tree | 5f19ae4ff8137c3f05453068de0abf0807b093b2 /tests/socket.test | |
parent | 6dd81c7dbab95889d400c127558205f45aee2693 (diff) | |
parent | a1c17947a68b03c30749dc651fe7fa0d1712ada8 (diff) | |
download | tcl-649c413c41cc325e89367e599b52d503902cc0b1.zip tcl-649c413c41cc325e89367e599b52d503902cc0b1.tar.gz tcl-649c413c41cc325e89367e599b52d503902cc0b1.tar.bz2 |
Merge 8.6
Diffstat (limited to 'tests/socket.test')
-rw-r--r-- | tests/socket.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/socket.test b/tests/socket.test index 51014aa..a1a66b5 100644 --- a/tests/socket.test +++ b/tests/socket.test @@ -1873,7 +1873,7 @@ proc transf_test {{testmode transfer} {maxIter 1000} {maxTime 10000}} { set ::count [expr {$maxIter / 4 * 3 - 1}]; # bypass 3/4 iterations } } - tcltest::DebugPuts 1 "== test \[$::localhost\]:$port $testmode ==" + tcltest::DebugPuts 2 "== test \[$::localhost\]:$port $testmode ==" set ::parent [thread::id] # helper thread creating async connection and initiating transfer (detach) to parent: set ::helper [thread::create] @@ -1901,7 +1901,7 @@ proc transf_test {{testmode transfer} {maxIter 1000} {maxTime 10000}} { } # parent proc commiting transfer attempt (attach) and checking acquire was successful: proc transf_parent {fd args} { - tcltest::DebugPuts 1 "** trma / $::count ** $args **" + tcltest::DebugPuts 2 "** trma / $::count ** $args **" thread::attach $fd if {"parent-close" in $::testmode} {;# to test close during connect set ::count $::count @@ -1928,7 +1928,7 @@ proc transf_test {{testmode transfer} {maxIter 1000} {maxTime 10000}} { break } if {[incr ::count] >= $maxIter} break - tcltest::DebugPuts 1 "** iter / $::count **" + tcltest::DebugPuts 2 "** iter / $::count **" thread::send -async $::helper [list iteration nr $::count] } update @@ -1937,7 +1937,7 @@ proc transf_test {{testmode transfer} {maxIter 1000} {maxTime 10000}} { catch {after cancel $tout} if {$srvsock ne {}} {close $srvsock} if {[info exists ::helper]} {thread::release -wait $::helper} - tcltest::DebugPuts 1 "== stop / $::count ==" + tcltest::DebugPuts 2 "== stop / $::count ==" unset -nocomplain ::count ::testmode ::parent ::helper } } |