Skip to content
Snippets Groups Projects
Commit f57b285c authored by Yuki Okushi's avatar Yuki Okushi
Browse files

Skip `MINCORE_SUPER` on FreeBSD 13

parent 89b77fc9
No related branches found
No related tags found
No related merge requests found
......@@ -1843,6 +1843,11 @@ fn test_freebsd(target: &str) {
// This was renamed in FreeBSD 12.2 and 13 (r350749).
"IPPROTO_SEP" | "IPPROTO_DCCP" => true,
// This was changed to 96(0x60) in FreeBSD 13:
// https://github.com/freebsd/freebsd/
// commit/06b00ceaa914a3907e4e27bad924f44612bae1d7
"MINCORE_SUPER" if Some(13) == freebsd_ver => true,
_ => false,
}
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment