@@ -251,7 +251,6 @@ mod tests {
251
251
use super :: super :: local_loop;
252
252
253
253
#[ test]
254
- #[ ignore( cfg( windows) ) ] // FIXME(#10386): how windows pipes work
255
254
fn connect_err ( ) {
256
255
match PipeWatcher :: connect ( local_loop ( ) , & "path/to/nowhere" . to_c_str ( ) ) {
257
256
Ok ( * ) => fail ! ( ) ,
@@ -260,7 +259,6 @@ mod tests {
260
259
}
261
260
262
261
#[ test]
263
- #[ ignore( cfg( windows) ) ] // FIXME(#10386): how windows pipes work
264
262
fn bind_err ( ) {
265
263
match PipeListener :: bind ( local_loop ( ) , & "path/to/nowhere" . to_c_str ( ) ) {
266
264
Ok ( * ) => fail ! ( ) ,
@@ -269,7 +267,6 @@ mod tests {
269
267
}
270
268
271
269
#[ test]
272
- #[ ignore( cfg( windows) ) ] // FIXME(#10386): how windows pipes work
273
270
fn bind ( ) {
274
271
let p = next_test_unix ( ) . to_c_str ( ) ;
275
272
match PipeListener :: bind ( local_loop ( ) , & p) {
@@ -279,15 +276,13 @@ mod tests {
279
276
}
280
277
281
278
#[ test] #[ should_fail]
282
- #[ ignore( cfg( windows) ) ] // FIXME(#10386): how windows pipes work
283
279
fn bind_fail ( ) {
284
280
let p = next_test_unix ( ) . to_c_str ( ) ;
285
281
let _w = PipeListener :: bind ( local_loop ( ) , & p) . unwrap ( ) ;
286
282
fail ! ( ) ;
287
283
}
288
284
289
285
#[ test]
290
- #[ ignore( cfg( windows) ) ] // FIXME(#10386): how windows pipes work
291
286
fn connect ( ) {
292
287
let path = next_test_unix ( ) ;
293
288
let path2 = path. clone ( ) ;
@@ -313,7 +308,6 @@ mod tests {
313
308
}
314
309
315
310
#[ test] #[ should_fail]
316
- #[ ignore( cfg( windows) ) ] // FIXME(#10386): how windows pipes work
317
311
fn connect_fail ( ) {
318
312
let path = next_test_unix ( ) ;
319
313
let path2 = path. clone ( ) ;
0 commit comments