diff options
author | bors <bors@rust-lang.org> | 2023-04-02 12:01:40 +0000 |
---|---|---|
committer | bors <bors@rust-lang.org> | 2023-04-02 12:01:40 +0000 |
commit | 7adf246da838e6ae8d5cafb4ffe44098aa03c223 (patch) | |
tree | cd51f302c95dd0aaad991a1eed7a51dc4dbd46dd | |
parent | 68e06adafa8f793b094a23b210d39b27c813600c (diff) | |
parent | 6a61e0a66602821193751fe1d578647905ed127c (diff) | |
download | rust-libc-7adf246da838e6ae8d5cafb4ffe44098aa03c223.tar.gz |
Auto merge of #3182 - JohnTitor:skip-cmsg-nxthdr-freebsd, r=JohnTitor
Disable the `test_cmsg_nxthdr` test
A stopgap for https://github.com/rust-lang/libc/issues/3181
-rw-r--r-- | libc-test/test/cmsg.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libc-test/test/cmsg.rs b/libc-test/test/cmsg.rs index 00c3c14f4c..307d045105 100644 --- a/libc-test/test/cmsg.rs +++ b/libc-test/test/cmsg.rs @@ -55,6 +55,9 @@ mod t { // https://github.com/rust-lang/libc/issues/1239 #[cfg(not(target_arch = "sparc64"))] #[test] + // FIXME: This triggers alignment checks for pointer dereferences: + // https://github.com/rust-lang/libc/issues/3181 + #[ignore] fn test_cmsg_nxthdr() { use std::ptr; |