summaryrefslogtreecommitdiff
path: root/libc-test
diff options
context:
space:
mode:
authorgnzlbg <gonzalobg88@gmail.com>2019-05-23 11:28:15 +0200
committergnzlbg <gonzalobg88@gmail.com>2019-05-23 16:29:28 +0200
commitd52732581a69752475665f497395985333585110 (patch)
treefee7de8425e69e5bae2c861281f9ec96533ba6ae /libc-test
parent46c60fb726d7beba247ba1d4b531fdcf15c2f2f2 (diff)
downloadrust-libc-d52732581a69752475665f497395985333585110.tar.gz
Test strerror_r on Android and Linux
Diffstat (limited to 'libc-test')
-rw-r--r--libc-test/build.rs30
1 files changed, 28 insertions, 2 deletions
diff --git a/libc-test/build.rs b/libc-test/build.rs
index 4fd21721b9..b20e67a9cf 100644
--- a/libc-test/build.rs
+++ b/libc-test/build.rs
@@ -1337,6 +1337,9 @@ fn test_android(target: &str) {
t if t.ends_with("_t") => t.to_string(),
+ // sigval is a struct in Rust, but a union in C:
+ "sigval" => format!("union sigval"),
+
// put `struct` in front of all structs:.
t if is_struct => format!("struct {}", t),
@@ -1400,6 +1403,23 @@ fn test_android(target: &str) {
"execvpe" |
"fexecve" => true,
+ // There are two versions of the sterror_r function, see
+ //
+ // https://linux.die.net/man/3/strerror_r
+ //
+ // An XSI-compliant version provided if:
+ //
+ // (_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && ! _GNU_SOURCE
+ //
+ // and a GNU specific version provided if _GNU_SOURCE is defined.
+ //
+ // libc provides bindings for the XSI-compliant version, which is
+ // preferred for portable applications.
+ //
+ // We skip the test here since here _GNU_SOURCE is defined, and
+ // test the XSI version below.
+ "strerror_r" => true,
+
// not declared in newer android toolchains
// FIXME: still necessary?
"getdtablesize" => true,
@@ -1459,6 +1479,8 @@ fn test_android(target: &str) {
// On Android also generate another script for testing linux/fcntl
// declarations. These cannot be tested normally because including both
// `linux/fcntl.h` and `fcntl.h` fails.
+ //
+ // This also tests strerror_r.
test_linux_termios2();
}
@@ -2701,7 +2723,10 @@ fn test_linux(target: &str) {
fn test_linux_termios2() {
let mut cfg = ctest::TestGenerator::new();
cfg.skip_type(|_| true)
- .skip_fn(|_| true)
+ .skip_fn(|f| match f {
+ "strerror_r" => false,
+ _ => true,
+ })
.skip_static(|_| true);
headers! {
cfg:
@@ -2709,7 +2734,8 @@ fn test_linux_termios2() {
"net/if.h",
"linux/if.h",
"linux/quota.h",
- "asm/termbits.h"
+ "asm/termbits.h",
+ "string.h"
}
cfg.skip_const(move |name| match name {
"F_CANCELLK" | "F_ADD_SEALS" | "F_GET_SEALS" => false,