File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -434,12 +434,15 @@ mod test {
434
434
TCP_CORK ,
435
435
// SO_BUSY_POLL,
436
436
// SO_RXQ_OVFL,
437
+ #[ cfg( not( target_arch="arm" ) ) ]
437
438
SO_PASSCRED ,
438
439
SO_PRIORITY ,
439
440
// SO_PROTOCOL,
440
441
SO_RCVBUFFORCE ,
441
442
// SO_PEEK_OFF,
443
+ #[ cfg( not( target_arch="arm" ) ) ]
442
444
SO_PEERCRED ,
445
+ #[ cfg( not( target_arch="arm" ) ) ]
443
446
SO_SNDBUFFORCE ,
444
447
MSG_ERRQUEUE ) ;
445
448
}
Original file line number Diff line number Diff line change @@ -378,7 +378,7 @@ impl<'a> Set<'a, usize> for SetUsize {
378
378
379
379
#[ cfg( test) ]
380
380
mod test {
381
- #[ cfg( target_os = "linux" ) ]
381
+ #[ cfg( all ( target_os = "linux" , not ( target_arch = "arm" ) ) ) ]
382
382
#[ test]
383
383
fn can_get_peercred_on_unix_socket ( ) {
384
384
use super :: super :: * ;
You can’t perform that action at this time.
0 commit comments