Ignore IP_ORIGDSTADDR in test for FreeBSD for now.

This commit is contained in:
Vitaly _Vi Shukela 2019-02-14 02:37:01 +03:00
parent 3e3b60e986
commit 486de2ba2b
No known key found for this signature in database
GPG Key ID: C097221D6E03DF68

View File

@ -725,6 +725,16 @@ fn do_ctest() {
s if ios && s.starts_with("RTV_") => true,
s if ios && s.starts_with("DLT_") => true,
| "IP_ORIGDSTADDR"
| "IP_RECVORIGDSTADDR"
| "IPV6_ORIGDSTADDR"
| "IPV6_RECVORIGDSTADDR"
if freebsd =>
{
// FreeBSD 12 required, but CI has FreeBSD 11.
true
}
_ => false,
}
});