From c3116c5045ece2fccff13fddf8f74dd72918be7a Mon Sep 17 00:00:00 2001 From: David CARLIER Date: Sat, 5 Aug 2023 12:19:15 +0100 Subject: [PATCH] std/tests: disable ancillary tests on freebsd since the feature itself is. --- library/std/src/os/unix/net/tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/os/unix/net/tests.rs b/library/std/src/os/unix/net/tests.rs index 3d4302e665c20..6a6af9efd78ed 100644 --- a/library/std/src/os/unix/net/tests.rs +++ b/library/std/src/os/unix/net/tests.rs @@ -662,7 +662,7 @@ fn test_send_vectored_fds_unix_stream() { } } -#[cfg(any(target_os = "android", target_os = "linux", target_os = "freebsd"))] +#[cfg(any(target_os = "android", target_os = "linux"))] #[test] #[cfg_attr(target_os = "android", ignore)] // Android SELinux rules prevent creating Unix sockets fn test_send_vectored_with_ancillary_to_unix_datagram() {