File tree 1 file changed +3
-4
lines changed 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -73,11 +73,8 @@ fn test_aio_cancel_all() {
73
73
let _ = aiocb. aio_return ( ) ;
74
74
}
75
75
76
- // I can't explain why, but on Travis in OSX aiocb.fsync will repeatedly
77
- // return EAGAIN. It doesn't happen on the bench.
78
76
#[ test]
79
- #[ cfg_attr( any( target_os = "macos" ,
80
- all( target_env = "musl" , target_arch = "x86_64" ) ) , ignore) ]
77
+ #[ cfg_attr( all( target_env = "musl" , target_arch = "x86_64" ) , ignore) ]
81
78
fn test_fsync ( ) {
82
79
const INITIAL : & ' static [ u8 ] = b"abcdef123456" ;
83
80
let mut f = tempfile ( ) . unwrap ( ) ;
@@ -504,6 +501,8 @@ fn test_lio_listio_read_immutable() {
504
501
}
505
502
506
503
// Test dropping an AioCb that hasn't yet finished.
504
+ // Skip on OSX where this test seems to hose the AIO subsystem and
505
+ // causes subsequent tests to fail
507
506
#[ test]
508
507
#[ should_panic( expected = "Dropped an in-progress AioCb" ) ]
509
508
#[ cfg( not( any( target_os = "macos" , target_env = "musl" ) ) ) ]
You can’t perform that action at this time.
0 commit comments