summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-03-27 17:18:47 +0000
committerbors <bors@rust-lang.org>2023-03-27 17:18:47 +0000
commit9ac18cda748ae45811331d537cf7b375ec91089d (patch)
tree71c419d8b6cf93abd45460345699298bccda248b
parent74e81a50c2528b01507e9d03f594949c0f91c817 (diff)
parent975799a344216572f9bbddbb2be76a8ba94c0e9d (diff)
downloadrust-libc-9ac18cda748ae45811331d537cf7b375ec91089d.tar.gz
Auto merge of #3172 - JohnTitor:pin-freebsd-14, r=JohnTitor
FreeBSD: Ignore test for remove const This brings us some problems, let's pin it.
-rw-r--r--libc-test/build.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/libc-test/build.rs b/libc-test/build.rs
index b9b3cbd27c..7df612655e 100644
--- a/libc-test/build.rs
+++ b/libc-test/build.rs
@@ -2276,10 +2276,13 @@ fn test_freebsd(target: &str) {
// Added in FreeBSD 14
"IFCAP_NV" if Some(14) > freebsd_ver => true,
- // Removed in https://reviews.freebsd.org/D38574 and https://reviews.freebsd.org/D38822
+ // FIXME: Removed in https://reviews.freebsd.org/D38574 and https://reviews.freebsd.org/D38822
// We maybe should deprecate them once a stable release ships them.
"IP_BINDMULTI" | "IP_RSS_LISTEN_BUCKET" => true,
+ // FIXME: Removed in https://reviews.freebsd.org/D39127.
+ "KERN_VNODE" => true,
+
_ => false,
}
});