Skip to content
Snippets Groups Projects
Commit c1b25a56 authored by Yuki Okushi's avatar Yuki Okushi
Browse files

Unignore tests for some functions on AArch64-Android

parent d565a360
No related branches found
No related tags found
No related merge requests found
...@@ -1370,7 +1370,6 @@ fn test_android(target: &str) { ...@@ -1370,7 +1370,6 @@ fn test_android(target: &str) {
t => panic!("unsupported target: {}", t), t => panic!("unsupported target: {}", t),
}; };
let x86 = target.contains("i686") || target.contains("x86_64"); let x86 = target.contains("i686") || target.contains("x86_64");
let aarch64 = target.contains("aarch64");
let mut cfg = ctest_cfg(); let mut cfg = ctest_cfg();
cfg.define("_GNU_SOURCE", None); cfg.define("_GNU_SOURCE", None);
...@@ -1592,31 +1591,6 @@ fn test_android(target: &str) { ...@@ -1592,31 +1591,6 @@ fn test_android(target: &str) {
// test the XSI version below. // test the XSI version below.
"strerror_r" => true, "strerror_r" => true,
// FIXME: Somehow we cannot find these fns on aarch64.
// https://github.com/rust-lang/libc/issues/1765
"lockf"
| "preadv64"
| "pwritev64"
| "openpty"
| "forkpty"
| "login_tty"
| "getifaddrs"
| "freeifaddrs"
| "sethostname"
| "getgrgid_r"
| "getgrnam_r"
| "sigtimedwait"
| "fmemopen"
| "open_memstream"
| "open_wmemstream"
| "clock_getcpuclockid"
| "process_vm_readv"
| "process_vm_writev"
if aarch64 =>
{
true
}
_ => false, _ => false,
} }
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment