We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d623db9 commit 09c00edCopy full SHA for 09c00ed
src/sys/socket/consts.rs
@@ -434,12 +434,15 @@ mod test {
434
TCP_CORK,
435
// SO_BUSY_POLL,
436
// SO_RXQ_OVFL,
437
+ #[cfg(not(target_arch="arm"))]
438
SO_PASSCRED,
439
SO_PRIORITY,
440
// SO_PROTOCOL,
441
SO_RCVBUFFORCE,
442
// SO_PEEK_OFF,
443
444
SO_PEERCRED,
445
446
SO_SNDBUFFORCE,
447
MSG_ERRQUEUE);
448
}
src/sys/socket/sockopt.rs
@@ -378,7 +378,7 @@ impl<'a> Set<'a, usize> for SetUsize {
378
379
#[cfg(test)]
380
mod test {
381
- #[cfg(target_os = "linux")]
+ #[cfg(all(target_os = "linux", not(target_arch = "arm")))]
382
#[test]
383
fn can_get_peercred_on_unix_socket() {
384
use super::super::*;
0 commit comments