summaryrefslogtreecommitdiff
path: root/libc-test
diff options
context:
space:
mode:
authorgnzlbg <gonzalobg88@gmail.com>2019-07-03 14:39:54 +0200
committergnzlbg <gonzalobg88@gmail.com>2019-07-05 18:13:03 +0200
commitb81a234913d6fcaa6483765d248b5dc258b2bf2e (patch)
tree88052748462b353bb2cc6c22e0a86fb54b5c48b5 /libc-test
parent5e3866ad56a4e4906dcd6db3908f7b1182c1becf (diff)
downloadrust-libc-b81a234913d6fcaa6483765d248b5dc258b2bf2e.tar.gz
Silence roundtrip in linux
Diffstat (limited to 'libc-test')
-rw-r--r--libc-test/build.rs15
1 files changed, 14 insertions, 1 deletions
diff --git a/libc-test/build.rs b/libc-test/build.rs
index 8f3c83ea9f..3ec1c07f97 100644
--- a/libc-test/build.rs
+++ b/libc-test/build.rs
@@ -225,7 +225,7 @@ fn test_apple(target: &str) {
}
});
- cfg.skip_roundtrip(|s| match s {
+ cfg.skip_roundtrip(move |s| match s {
// FIXME: TODO
"utsname" | "statfs" | "dirent" | "utmpx" => true,
_ => false,
@@ -2259,6 +2259,19 @@ fn test_linux(target: &str) {
field == "ssi_arch"))
});
+ cfg.skip_roundtrip(move |s| match s {
+ // FIXME: TODO
+ "_libc_fpstate" | "user_fpregs_struct" if x86_64 => true,
+ "utsname"
+ | "statx"
+ | "dirent"
+ | "dirent64"
+ | "utmpx"
+ | "user"
+ | "user_fpxregs_struct" => true,
+ _ => false,
+ });
+
cfg.generate("../src/lib.rs", "main.rs");
test_linux_like_apis(target);