Skip to content

Commit

Permalink
Auto merge of #3172 - JohnTitor:pin-freebsd-14, r=JohnTitor
Browse files Browse the repository at this point in the history
FreeBSD: Ignore test for remove const

This brings us some problems, let's pin it.
  • Loading branch information
bors committed Mar 27, 2023
2 parents 74e81a5 + 975799a commit 9ac18cd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libc-test/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
});
Expand Down

0 comments on commit 9ac18cd

Please sign in to comment.