summaryrefslogtreecommitdiffstats
path: root/tests/socket.test
diff options
context:
space:
mode:
authormax <max@tclers.tk>2013-11-12 11:45:04 (GMT)
committermax <max@tclers.tk>2013-11-12 11:45:04 (GMT)
commit498d86acd9ca0d9d7bc004c1c14c19dc332b77a3 (patch)
treeae8b95a0f6db9a3169098a1ff72849daf385b087 /tests/socket.test
parent1aafdd134e0b8454e83bc659eeb7f7dd2c5b2006 (diff)
downloadtcl-498d86acd9ca0d9d7bc004c1c14c19dc332b77a3.zip
tcl-498d86acd9ca0d9d7bc004c1c14c19dc332b77a3.tar.gz
tcl-498d86acd9ca0d9d7bc004c1c14c19dc332b77a3.tar.bz2
Fix [5425f2c082]: [fconfigure -error] breaks the background processing of a pending [socket -async].
Diffstat (limited to 'tests/socket.test')
-rw-r--r--tests/socket.test28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/socket.test b/tests/socket.test
index 5542c09..f7e817b 100644
--- a/tests/socket.test
+++ b/tests/socket.test
@@ -1841,6 +1841,7 @@ test socket-14.4 {[socket -async] and both, readdable and writable fileevents} \
after cancel $after
close $client
close $server
+ unset x
} -result {{} bye}
test socket-14.5 {[socket -async] which fails before any connect() can be made} \
-constraints [list socket supported_any] \
@@ -1850,6 +1851,33 @@ test socket-14.5 {[socket -async] which fails before any connect() can be made}
} \
-returnCodes 1 \
-result {couldn't open socket: cannot assign requested address}
+test socket-14.6 {[socket -async] with no event loop and [fconfigure -error] before the socket is connected} \
+ -constraints [list socket supported_any] \
+ -setup {
+ proc accept {s a p} {
+ puts $s bye
+ close $s
+ }
+ set server [socket -server accept -myaddr 127.0.0.1 0]
+ set port [lindex [fconfigure $server -sockname] 2]
+ set x ""
+ } \
+ -body {
+ set client [socket -async localhost $port]
+ foreach _ {1 2} {
+ lappend x [lindex [fconfigure $client -sockname] 0]
+ lappend x [fconfigure $client -error]
+ update
+ }
+ lappend x [gets $client]
+ } \
+ -cleanup {
+ close $server
+ close $client
+ unset x
+ } \
+ -result [list ::1 "connection refused" 127.0.0.1 "" bye]
+
::tcltest::cleanupTests
flush stdout
return