@@ -273,14 +273,7 @@ mod tests {
273
273
assert_eq ! ( set. highest( ) , Some ( 7 ) ) ;
274
274
}
275
275
276
- // powerpc-unknown-linux-gnu currently fails on the first `assert_eq` because
277
- // `select()` returns a 0 instead of a 1. Since this test has only been run on
278
- // qemu, it's unclear if this is a OS or qemu bug. Just disable it on that arch
279
- // for now.
280
- // FIXME: Fix tests for powerpc and mips
281
- // FIXME: Add a link to an upstream qemu bug if there is one
282
276
#[ test]
283
- #[ cfg_attr( any( target_arch = "powerpc" , target_arch = "mips" ) , ignore) ]
284
277
fn test_select ( ) {
285
278
let ( r1, w1) = pipe ( ) . unwrap ( ) ;
286
279
write ( w1, b"hi!" ) . unwrap ( ) ;
@@ -301,7 +294,6 @@ mod tests {
301
294
}
302
295
303
296
#[ test]
304
- #[ cfg_attr( any( target_arch = "powerpc" , target_arch = "mips" ) , ignore) ]
305
297
fn test_select_nfds ( ) {
306
298
let ( r1, w1) = pipe ( ) . unwrap ( ) ;
307
299
write ( w1, b"hi!" ) . unwrap ( ) ;
@@ -322,7 +314,6 @@ mod tests {
322
314
}
323
315
324
316
#[ test]
325
- #[ cfg_attr( any( target_arch = "powerpc" , target_arch = "mips" ) , ignore) ]
326
317
fn test_select_nfds2 ( ) {
327
318
let ( r1, w1) = pipe ( ) . unwrap ( ) ;
328
319
write ( w1, b"hi!" ) . unwrap ( ) ;
0 commit comments