@@ -172,7 +172,7 @@ fn long_path() {
172
172
#[ test]
173
173
#[ cfg( not( target_os = "nto" ) ) ]
174
174
#[ cfg_attr( target_os = "android" , ignore) ] // Android SELinux rules prevent creating Unix sockets
175
- #[ cfg_attr( target_os = "cygwin" , ignore) ] // Cygwin ignores timeout
175
+ #[ cfg_attr( target_os = "cygwin" , ignore) ] // Cygwin connect needs handshake
176
176
fn timeouts ( ) {
177
177
let dir = tmpdir ( ) ;
178
178
let socket_path = dir. path ( ) . join ( "sock" ) ;
@@ -201,7 +201,7 @@ fn timeouts() {
201
201
202
202
#[ test]
203
203
#[ cfg_attr( target_os = "android" , ignore) ] // Android SELinux rules prevent creating Unix sockets
204
- #[ cfg_attr( target_os = "cygwin" , ignore) ] // Cygwin ignores timeout
204
+ #[ cfg_attr( target_os = "cygwin" , ignore) ] // Cygwin connect needs handshake
205
205
fn test_read_timeout ( ) {
206
206
let dir = tmpdir ( ) ;
207
207
let socket_path = dir. path ( ) . join ( "sock" ) ;
@@ -222,7 +222,7 @@ fn test_read_timeout() {
222
222
223
223
#[ test]
224
224
#[ cfg_attr( target_os = "android" , ignore) ] // Android SELinux rules prevent creating Unix sockets
225
- #[ cfg_attr( target_os = "cygwin" , ignore) ] // Cygwin ignores timeout
225
+ #[ cfg_attr( target_os = "cygwin" , ignore) ] // Cygwin connect needs handshake
226
226
fn test_read_with_timeout ( ) {
227
227
let dir = tmpdir ( ) ;
228
228
let socket_path = dir. path ( ) . join ( "sock" ) ;
@@ -251,7 +251,7 @@ fn test_read_with_timeout() {
251
251
// when passed zero Durations
252
252
#[ test]
253
253
#[ cfg_attr( target_os = "android" , ignore) ] // Android SELinux rules prevent creating Unix sockets
254
- #[ cfg_attr( target_os = "cygwin" , ignore) ] // Cygwin ignores timeout
254
+ #[ cfg_attr( target_os = "cygwin" , ignore) ] // Cygwin connect needs handshake
255
255
fn test_unix_stream_timeout_zero_duration ( ) {
256
256
let dir = tmpdir ( ) ;
257
257
let socket_path = dir. path ( ) . join ( "sock" ) ;
0 commit comments