File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -280,6 +280,7 @@ fn test_read_into_pointer() {
280
280
#[ test]
281
281
#[ should_panic( expected = "Can't read into an immutable buffer" ) ]
282
282
#[ cfg_attr( target_env = "musl" , ignore) ]
283
+ #[ ignore]
283
284
fn test_read_immutable_buffer ( ) {
284
285
let rbuf: & [ u8 ] = b"CDEF" ;
285
286
let f = tempfile ( ) . unwrap ( ) ;
@@ -637,6 +638,7 @@ fn test_liocb_listio_signal() {
637
638
#[ cfg( not( any( target_os = "ios" , target_os = "macos" ) ) ) ]
638
639
#[ should_panic( expected = "Can't read into an immutable buffer" ) ]
639
640
#[ cfg_attr( target_env = "musl" , ignore) ]
641
+ #[ ignore]
640
642
fn test_liocb_listio_read_immutable ( ) {
641
643
let rbuf: & [ u8 ] = b"abcd" ;
642
644
let f = tempfile ( ) . unwrap ( ) ;
Original file line number Diff line number Diff line change @@ -535,6 +535,7 @@ pub extern fn alarm_signal_handler(raw_signal: libc::c_int) {
535
535
}
536
536
537
537
#[ test]
538
+ #[ ignore]
538
539
fn test_alarm ( ) {
539
540
let _m = :: SIGNAL_MTX . lock ( ) . expect ( "Mutex got poisoned by another test" ) ;
540
541
You can’t perform that action at this time.
0 commit comments