@@ -1577,8 +1577,6 @@ fn test_freebsd(target: &str) {
1577
1577
1578
1578
cfg. skip_signededness ( move |c| {
1579
1579
match c {
1580
- // FIXME: still required?
1581
- "LARGE_INTEGER" | "float" | "double" => true ,
1582
1580
// FIXME: still required?
1583
1581
n if n. starts_with ( "pthread" ) => true ,
1584
1582
// sem_t is a struct or pointer
@@ -1598,19 +1596,24 @@ fn test_freebsd(target: &str) {
1598
1596
"SIG_DFL" | "SIG_ERR" | "SIG_IGN" => true , // sighandler_t weirdness
1599
1597
1600
1598
// These constants were introduced in FreeBSD 12:
1601
- "SF_USER_READAHEAD" |
1602
- "EVFILT_EMPTY" |
1603
- "SO_REUSEPORT_LB" |
1604
- "IP_ORIGDSTADDR" |
1605
- "IP_RECVORIGDSTADDR" |
1606
- "IPV6_ORIGDSTADDR" |
1607
- "IPV6_RECVORIGDSTADDR"
1608
- if Some ( 12 ) != freebsd_ver => true ,
1599
+ "SF_USER_READAHEAD"
1600
+ | "EVFILT_EMPTY"
1601
+ | "SO_REUSEPORT_LB"
1602
+ | "IP_ORIGDSTADDR"
1603
+ | "IP_RECVORIGDSTADDR"
1604
+ | "IPV6_ORIGDSTADDR"
1605
+ | "IPV6_RECVORIGDSTADDR"
1606
+ if Some ( 12 ) != freebsd_ver =>
1607
+ {
1608
+ true
1609
+ }
1609
1610
1611
+ // FIXME: There are deprecated - remove in a couple of releases.
1610
1612
// These constants were removed in FreeBSD 11 (svn r273250) but will
1611
1613
// still be accepted and ignored at runtime.
1612
- "MAP_RENAME" | "MAP_NORESERVE" => true ,
1614
+ "MAP_RENAME" | "MAP_NORESERVE" if Some ( 10 ) != freebsd_ver => true ,
1613
1615
1616
+ // FIXME: There are deprecated - remove in a couple of releases.
1614
1617
// These constants were removed in FreeBSD 11 (svn r262489),
1615
1618
// and they've never had any legitimate use outside of the
1616
1619
// base system anyway.
@@ -1624,66 +1627,18 @@ fn test_freebsd(target: &str) {
1624
1627
cfg. skip_fn ( move |name| {
1625
1628
// skip those that are manually verified
1626
1629
match name {
1627
- // FIXME: still required?
1628
- "execv" | // crazy stuff with const/mut
1629
- "execve" |
1630
- "execvp" |
1631
- "execvpe" |
1632
- "fexecve" => true ,
1630
+ // FIXME: https://github.com/rust-lang/libc/issues/1272
1631
+ "execv" | "execve" | "execvp" | "execvpe" | "fexecve" => true ,
1633
1632
1634
1633
// The `uname` function in freebsd is now an inline wrapper that
1635
1634
// delegates to another, but the symbol still exists, so don't check
1636
1635
// the symbol.
1637
1636
"uname" => true ,
1638
1637
1639
- // aio_waitcomplete's return type changed between FreeBSD 10 and 11.
1640
- // FIXME: still required?
1641
- "aio_waitcomplete" => true ,
1642
-
1643
- // lio_listio confuses the checker, probably because one of its
1644
- // arguments is an array
1645
- // FIXME: still required?
1646
- "lio_listio" => true ,
1647
-
1648
1638
_ => false ,
1649
1639
}
1650
1640
} ) ;
1651
1641
1652
- cfg. skip_field_type ( move |struct_, field| {
1653
- // This is a weird union, don't check the type.
1654
- // FIXME: still required?
1655
- ( struct_ == "ifaddrs" && field == "ifa_ifu" ) ||
1656
- // FIXME: still required?
1657
- // sighandler_t type is super weird
1658
- ( struct_ == "sigaction" && field == "sa_sigaction" ) ||
1659
- // FIXME: still required?
1660
- // sigval is actually a union, but we pretend it's a struct
1661
- ( struct_ == "sigevent" && field == "sigev_value" ) ||
1662
- // aio_buf is "volatile void*" and Rust doesn't understand volatile
1663
- // FIXME: still required?
1664
- ( struct_ == "aiocb" && field == "aio_buf" ) ||
1665
- // stack_t.ss_sp's type changed from FreeBSD 10 to 11 in svn r294930
1666
- // FIXME: still required?
1667
- ( struct_ == "stack_t" && field == "ss_sp" )
1668
- } ) ;
1669
-
1670
- cfg. skip_field ( move |struct_, field| {
1671
- // this is actually a union on linux, so we can't represent it well and
1672
- // just insert some padding.
1673
- // FIXME: still required?
1674
- ( struct_ == "siginfo_t" && field == "_pad" ) ||
1675
- // sigev_notify_thread_id is actually part of a sigev_un union
1676
- // FIXME: still required?
1677
- ( struct_ == "sigevent" && field == "sigev_notify_thread_id" ) ||
1678
- // signalfd had SIGSYS fields added in Linux 4.18, but no libc release has them yet.
1679
- // FIXME: still required?
1680
- ( struct_ == "signalfd_siginfo" && ( field == "ssi_addr_lsb" ||
1681
- field == "_pad2" ||
1682
- field == "ssi_syscall" ||
1683
- field == "ssi_call_addr" ||
1684
- field == "ssi_arch" ) )
1685
- } ) ;
1686
-
1687
1642
cfg. generate ( "../src/lib.rs" , "main.rs" ) ;
1688
1643
}
1689
1644
0 commit comments