summaryrefslogtreecommitdiff
path: root/test/sys
diff options
context:
space:
mode:
authorNick Pelone <nick.pelone@calyptix.com>2020-05-26 15:20:39 -0400
committerNick Pelone <nick.pelone@calyptix.com>2020-05-26 15:20:39 -0400
commitdd0a99001ea2607c9914b882b0b6a10fa22c5375 (patch)
tree788de058ba812935898d0830c1fc143e9fab057e /test/sys
parentc379d1ac997a84c0a2fe96b0f65c3bf244c96c8d (diff)
downloadnix-dd0a99001ea2607c9914b882b0b6a10fa22c5375.zip
Fix build on OpenBSD caused by erroneous inclusion in allowed OS list for sendmmsg() / recvmmsg() in #1208.
In #1208, sendmmsg() / recvmmsg() were added, but OpenBSD(who doesn't support these) was included on the list of allowed operating systems for sendmmsg() related things. This broke the build on OpenBSD. For more Rust-world examples, see: https://github.com/rust-lang/libc/commit/6f6297301d49ff67b8ca044d651f36a56950298c
Diffstat (limited to 'test/sys')
-rw-r--r--test/sys/test_socket.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/sys/test_socket.rs b/test/sys/test_socket.rs
index 9bf45828..d6c1ec0c 100644
--- a/test/sys/test_socket.rs
+++ b/test/sys/test_socket.rs
@@ -309,7 +309,6 @@ mod recvfrom {
target_os = "linux",
target_os = "android",
target_os = "freebsd",
- target_os = "openbsd",
target_os = "netbsd",
))]
#[test]