Skip to content

Commit bbc31fa

Browse files
committed
Re-enable more tests
1 parent aeadbde commit bbc31fa

File tree

2 files changed

+18
-63
lines changed

2 files changed

+18
-63
lines changed

libc-test/build.rs

+16-61
Original file line numberDiff line numberDiff line change
@@ -1577,8 +1577,6 @@ fn test_freebsd(target: &str) {
15771577

15781578
cfg.skip_signededness(move |c| {
15791579
match c {
1580-
// FIXME: still required?
1581-
"LARGE_INTEGER" | "float" | "double" => true,
15821580
// FIXME: still required?
15831581
n if n.starts_with("pthread") => true,
15841582
// sem_t is a struct or pointer
@@ -1598,19 +1596,24 @@ fn test_freebsd(target: &str) {
15981596
"SIG_DFL" | "SIG_ERR" | "SIG_IGN" => true, // sighandler_t weirdness
15991597

16001598
// 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+
}
16091610

1611+
// FIXME: There are deprecated - remove in a couple of releases.
16101612
// These constants were removed in FreeBSD 11 (svn r273250) but will
16111613
// still be accepted and ignored at runtime.
1612-
"MAP_RENAME" | "MAP_NORESERVE" => true,
1614+
"MAP_RENAME" | "MAP_NORESERVE" if Some(10) != freebsd_ver => true,
16131615

1616+
// FIXME: There are deprecated - remove in a couple of releases.
16141617
// These constants were removed in FreeBSD 11 (svn r262489),
16151618
// and they've never had any legitimate use outside of the
16161619
// base system anyway.
@@ -1624,66 +1627,18 @@ fn test_freebsd(target: &str) {
16241627
cfg.skip_fn(move |name| {
16251628
// skip those that are manually verified
16261629
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,
16331632

16341633
// The `uname` function in freebsd is now an inline wrapper that
16351634
// delegates to another, but the symbol still exists, so don't check
16361635
// the symbol.
16371636
"uname" => true,
16381637

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-
16481638
_ => false,
16491639
}
16501640
});
16511641

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-
16871642
cfg.generate("../src/lib.rs", "main.rs");
16881643
}
16891644

src/unix/bsd/freebsdlike/freebsd/freebsd12/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ s! {
2525
pub shm_dtime: ::time_t,
2626
pub shm_ctime: ::time_t,
2727
}
28-
}
2928

30-
s_no_extra_traits! {
3129
pub struct kevent {
3230
pub ident: ::uintptr_t,
3331
pub filter: ::c_short,
@@ -37,7 +35,9 @@ s_no_extra_traits! {
3735
pub udata: *mut ::c_void,
3836
pub ext: [u64; 4],
3937
}
38+
}
4039

40+
s_no_extra_traits! {
4141
pub struct dirent {
4242
pub d_fileno: ::ino_t,
4343
pub d_off: ::off_t,

0 commit comments

Comments
 (0)