diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-08-28 08:13:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-28 08:13:57 +0200 |
| commit | eb569400e5cefde50ff938bac0fab4c0ba2a1b31 (patch) | |
| tree | b4ed16a8167ea3369f17e6e38ecfcc3e38fadc68 | |
| parent | d2644d9fe97d4ffae93af836975903f5800c7fb0 (diff) | |
| parent | c3116c5045ece2fccff13fddf8f74dd72918be7a (diff) | |
| download | rust-eb569400e5cefde50ff938bac0fab4c0ba2a1b31.tar.gz rust-eb569400e5cefde50ff938bac0fab4c0ba2a1b31.zip | |
Rollup merge of #114512 - devnexen:fix_tests_fbsd, r=thomcc
std/tests: disable ancillary tests on freebsd since the feature itsel… …f is.
| -rw-r--r-- | library/std/src/os/unix/net/tests.rs | 2 |
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() { |
