Skip to content

Commit 9ac18cd

Browse files
committed
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.
2 parents 74e81a5 + 975799a commit 9ac18cd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

libc-test/build.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2276,10 +2276,13 @@ fn test_freebsd(target: &str) {
22762276
// Added in FreeBSD 14
22772277
"IFCAP_NV" if Some(14) > freebsd_ver => true,
22782278

2279-
// Removed in https://reviews.freebsd.org/D38574 and https://reviews.freebsd.org/D38822
2279+
// FIXME: Removed in https://reviews.freebsd.org/D38574 and https://reviews.freebsd.org/D38822
22802280
// We maybe should deprecate them once a stable release ships them.
22812281
"IP_BINDMULTI" | "IP_RSS_LISTEN_BUCKET" => true,
22822282

2283+
// FIXME: Removed in https://reviews.freebsd.org/D39127.
2284+
"KERN_VNODE" => true,
2285+
22832286
_ => false,
22842287
}
22852288
});

0 commit comments

Comments
 (0)