Skip to content

Commit 0283661

Browse files
committed
Fixes tests on Solaris
1 parent cdf6896 commit 0283661

File tree

9 files changed

+437
-223
lines changed

9 files changed

+437
-223
lines changed

libc-test/build.rs

+15-4
Original file line numberDiff line numberDiff line change
@@ -822,8 +822,6 @@ fn test_solarish(target: &str) {
822822
"stdlib.h",
823823
"string.h",
824824
"sys/auxv.h",
825-
"sys/epoll.h",
826-
"sys/eventfd.h",
827825
"sys/file.h",
828826
"sys/filio.h",
829827
"sys/ioctl.h",
@@ -863,6 +861,19 @@ fn test_solarish(target: &str) {
863861
"wchar.h",
864862
}
865863

864+
if is_illumos {
865+
headers! { cfg:
866+
"sys/epoll.h",
867+
"sys/eventfd.h",
868+
}
869+
}
870+
871+
if is_solaris {
872+
headers! { cfg:
873+
"sys/lgrp_user_impl.h",
874+
}
875+
}
876+
866877
cfg.skip_type(move |ty| match ty {
867878
"sighandler_t" => true,
868879
_ => false,
@@ -912,7 +923,7 @@ fn test_solarish(target: &str) {
912923
// EPOLLEXCLUSIVE is a relatively recent addition to the epoll interface and may not be
913924
// defined on older systems. It is, however, safe to use on systems which do not
914925
// explicitly support it. (A no-op is an acceptable implementation of EPOLLEXCLUSIVE.)
915-
"EPOLLEXCLUSIVE" => true,
926+
"EPOLLEXCLUSIVE" if is_illumos => true,
916927

917928
_ => false,
918929
});
@@ -1004,7 +1015,7 @@ fn test_solarish(target: &str) {
10041015
// These functions may return int or void depending on the exact
10051016
// configuration of the compilation environment, but the return
10061017
// value is not useful (always 0) so we can ignore it:
1007-
"setservent" | "endservent" if is_illumos => true,
1018+
"setservent" | "endservent" => true,
10081019

10091020
// Following illumos#3729, getifaddrs was changed to a
10101021
// redefine_extname symbol in order to preserve compatibility.

libc-test/semver/TODO-unix.txt

+5
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,8 @@
33
getpwuid_r
44
pthread_atfork
55
pthread_sigmask
6+
# * Solaris is missing flock(2)
7+
LOCK_EX
8+
LOCK_NB
9+
LOCK_SH
10+
LOCK_UN

libc-test/semver/unix.txt

-4
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,6 @@ ISTRIP
184184
IXANY
185185
IXOFF
186186
IXON
187-
LOCK_EX
188-
LOCK_NB
189-
LOCK_SH
190-
LOCK_UN
191187
LOG_ALERT
192188
LOG_AUTH
193189
LOG_CONS

src/unix/mod.rs

+25-8
Original file line numberDiff line numberDiff line change
@@ -603,10 +603,8 @@ extern "C" {
603603

604604
#[cfg(not(all(target_arch = "powerpc", target_vendor = "nintendo")))]
605605
#[cfg_attr(target_os = "netbsd", link_name = "__socket30")]
606-
#[cfg_attr(
607-
any(target_os = "illumos", target_os = "solaris"),
608-
link_name = "__xnet_socket"
609-
)]
606+
#[cfg_attr(target_os = "illumos", link_name = "__xnet_socket")]
607+
#[cfg_attr(target_os = "solaris", link_name = "__xnet7_socket")]
610608
#[cfg_attr(target_os = "espidf", link_name = "lwip_socket")]
611609
pub fn socket(domain: ::c_int, ty: ::c_int, protocol: ::c_int) -> ::c_int;
612610
#[cfg(not(all(target_arch = "powerpc", target_vendor = "nintendo")))]
@@ -892,6 +890,7 @@ extern "C" {
892890
pub fn getppid() -> pid_t;
893891
pub fn getuid() -> uid_t;
894892
pub fn isatty(fd: ::c_int) -> ::c_int;
893+
#[cfg_attr(target_os = "solaris", link_name = "__link_xpg4")]
895894
pub fn link(src: *const c_char, dst: *const c_char) -> ::c_int;
896895
pub fn lseek(fd: ::c_int, offset: off_t, whence: ::c_int) -> off_t;
897896
pub fn pathconf(path: *const c_char, name: ::c_int) -> c_long;
@@ -930,7 +929,10 @@ extern "C" {
930929
all(target_os = "macos", target_arch = "x86"),
931930
link_name = "ttyname_r$UNIX2003"
932931
)]
933-
#[cfg_attr(target_os = "illumos", link_name = "__posix_ttyname_r")]
932+
#[cfg_attr(
933+
any(target_os = "illumos", target_os = "solaris"),
934+
link_name = "__posix_ttyname_r"
935+
)]
934936
pub fn ttyname_r(fd: ::c_int, buf: *mut c_char, buflen: ::size_t) -> ::c_int;
935937
pub fn unlink(c: *const c_char) -> ::c_int;
936938
#[cfg_attr(
@@ -1051,8 +1053,6 @@ extern "C" {
10511053
)]
10521054
pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_char) -> *mut ::c_char;
10531055

1054-
pub fn flock(fd: ::c_int, operation: ::c_int) -> ::c_int;
1055-
10561056
#[cfg_attr(target_os = "netbsd", link_name = "__times13")]
10571057
pub fn times(buf: *mut ::tms) -> ::clock_t;
10581058

@@ -1353,6 +1353,7 @@ extern "C" {
13531353
#[cfg_attr(target_os = "netbsd", link_name = "__sigpending14")]
13541354
pub fn sigpending(set: *mut sigset_t) -> ::c_int;
13551355

1356+
#[cfg_attr(target_os = "solaris", link_name = "__sysconf_xpg7")]
13561357
pub fn sysconf(name: ::c_int) -> ::c_long;
13571358

13581359
pub fn mkfifo(path: *const c_char, mode: mode_t) -> ::c_int;
@@ -1423,12 +1424,20 @@ cfg_if! {
14231424
if #[cfg(not(any(target_os = "emscripten",
14241425
target_os = "android",
14251426
target_os = "haiku",
1426-
target_os = "nto")))] {
1427+
target_os = "nto",
1428+
target_os = "solaris")))] {
14271429
extern "C" {
14281430
pub fn adjtime(delta: *const timeval, olddelta: *mut timeval) -> ::c_int;
14291431
}
14301432
}
14311433
}
1434+
cfg_if! {
1435+
if #[cfg(target_os = "solaris")] {
1436+
extern "C" {
1437+
pub fn adjtime(delta: *mut timeval, olddelta: *mut timeval) -> ::c_int;
1438+
}
1439+
}
1440+
}
14321441

14331442
cfg_if! {
14341443
if #[cfg(not(any(target_os = "emscripten",
@@ -1448,6 +1457,14 @@ cfg_if! {
14481457
}
14491458
}
14501459

1460+
cfg_if! {
1461+
if #[cfg(not(target_os = "solaris"))] {
1462+
extern "C" {
1463+
pub fn flock(fd: ::c_int, operation: ::c_int) -> ::c_int;
1464+
}
1465+
}
1466+
}
1467+
14511468
cfg_if! {
14521469
if #[cfg(not(any(target_env = "uclibc", target_os = "nto")))] {
14531470
extern "C" {

0 commit comments

Comments
 (0)