Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions test/sys/test_socket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -921,11 +921,16 @@ pub fn test_scm_rights() {

// 1. Disable the test on emulated platforms due to not enabled support of
// AF_ALG in QEMU from rust cross
// 2. Disable the test on aarch64/Linux CI because bind() fails with ENOENT
// 2. Disable the test on aarch64/Linux and s390x/Linux because bind() fails
// with ENOENT:
// https://github.com/nix-rust/nix/issues/1352
#[cfg(linux_android)]
#[cfg_attr(
any(qemu, all(target_os = "linux", target_arch = "aarch64")),
any(
qemu,
all(target_os = "linux", target_arch = "aarch64"),
all(target_os = "linux", target_arch = "s390x"),
),
ignore
)]
#[test]
Expand Down