diff options
author | oehhar <harald.oehlmann@elmicron.de> | 2014-04-02 09:54:27 (GMT) |
---|---|---|
committer | oehhar <harald.oehlmann@elmicron.de> | 2014-04-02 09:54:27 (GMT) |
commit | b5277efde02115a99b120d3a90fb1471c6aee409 (patch) | |
tree | 8f39afbf3b2d4eb41b5a5280864cf29bba5671a3 /tests/socket.test | |
parent | fa9b84b398d88714ceaa6410047ccead8f15b1c3 (diff) | |
download | tcl-b5277efde02115a99b120d3a90fb1471c6aee409.zip tcl-b5277efde02115a99b120d3a90fb1471c6aee409.tar.gz tcl-b5277efde02115a99b120d3a90fb1471c6aee409.tar.bz2 |
Test to demonstrate bug [336441ed59]. Depends on timing and will not always fire but is better than nothing. Reliable for me.
Diffstat (limited to 'tests/socket.test')
-rw-r--r-- | tests/socket.test | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/socket.test b/tests/socket.test index 0ae5abd..218cce4 100644 --- a/tests/socket.test +++ b/tests/socket.test @@ -910,6 +910,22 @@ test socket-8.1 {testing -async flag on sockets} {socket} { set z } bye +test socket-8.2 {testing writable event when quick failure} {socket win} { + # Test for bug 336441ed59 where a quick background fail was ignored + + # Test only for windows as socket -async 255.255.255.255 fails directly + # on unix + + # The following connect should fail very quickly + set a1 [after 2000 {set x timeout}] + set s [socket -async 255.255.255.255 43434] + fileevent $s writable {set x writable} + vwait x + catch {close $s} + after cancel $a1 + set x +} writable + test socket-9.1 {testing spurious events} {socket} { set len 0 set spurious 0 |