Skip to content

Commit 975799a

Browse files
committed
FreeBSD: Ignore test for remove const
Signed-off-by: Yuki Okushi <jtitor@2k36.org>
1 parent 74e81a5 commit 975799a

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)