@@ -251,7 +251,6 @@ mod tests {
251251 use super :: super :: local_loop;
252252
253253 #[ test]
254- #[ ignore( cfg( windows) ) ] // FIXME(#10386): how windows pipes work
255254 fn connect_err ( ) {
256255 match PipeWatcher :: connect ( local_loop ( ) , & "path/to/nowhere" . to_c_str ( ) ) {
257256 Ok ( * ) => fail ! ( ) ,
@@ -260,7 +259,6 @@ mod tests {
260259 }
261260
262261 #[ test]
263- #[ ignore( cfg( windows) ) ] // FIXME(#10386): how windows pipes work
264262 fn bind_err ( ) {
265263 match PipeListener :: bind ( local_loop ( ) , & "path/to/nowhere" . to_c_str ( ) ) {
266264 Ok ( * ) => fail ! ( ) ,
@@ -269,7 +267,6 @@ mod tests {
269267 }
270268
271269 #[ test]
272- #[ ignore( cfg( windows) ) ] // FIXME(#10386): how windows pipes work
273270 fn bind ( ) {
274271 let p = next_test_unix ( ) . to_c_str ( ) ;
275272 match PipeListener :: bind ( local_loop ( ) , & p) {
@@ -279,15 +276,13 @@ mod tests {
279276 }
280277
281278 #[ test] #[ should_fail]
282- #[ ignore( cfg( windows) ) ] // FIXME(#10386): how windows pipes work
283279 fn bind_fail ( ) {
284280 let p = next_test_unix ( ) . to_c_str ( ) ;
285281 let _w = PipeListener :: bind ( local_loop ( ) , & p) . unwrap ( ) ;
286282 fail ! ( ) ;
287283 }
288284
289285 #[ test]
290- #[ ignore( cfg( windows) ) ] // FIXME(#10386): how windows pipes work
291286 fn connect ( ) {
292287 let path = next_test_unix ( ) ;
293288 let path2 = path. clone ( ) ;
@@ -313,7 +308,6 @@ mod tests {
313308 }
314309
315310 #[ test] #[ should_fail]
316- #[ ignore( cfg( windows) ) ] // FIXME(#10386): how windows pipes work
317311 fn connect_fail ( ) {
318312 let path = next_test_unix ( ) ;
319313 let path2 = path. clone ( ) ;
0 commit comments