about summary refs log tree commit diff
path: root/library/std/src/os/unix/net/tests.rs
diff options
context:
space:
mode:
authorDavid CARLIER <devnexen@gmail.com>2023-08-05 12:19:15 +0100
committerDavid CARLIER <devnexen@gmail.com>2023-08-05 12:19:15 +0100
commitc3116c5045ece2fccff13fddf8f74dd72918be7a (patch)
treef586b7af5e5caae1f85e07044d2f2e3c8bdd782d /library/std/src/os/unix/net/tests.rs
parentb3df56a65f9424a7f4af101091582f49cfc29286 (diff)
downloadrust-c3116c5045ece2fccff13fddf8f74dd72918be7a.tar.gz
rust-c3116c5045ece2fccff13fddf8f74dd72918be7a.zip
std/tests: disable ancillary tests on freebsd since the feature itself is.
Diffstat (limited to 'library/std/src/os/unix/net/tests.rs')
-rw-r--r--library/std/src/os/unix/net/tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/os/unix/net/tests.rs b/library/std/src/os/unix/net/tests.rs
index 3d4302e665c..6a6af9efd78 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() {