Skip to content

Commit c1b25a5

Browse files
committed
Unignore tests for some functions on AArch64-Android
1 parent d565a36 commit c1b25a5

File tree

1 file changed

+0
-26
lines changed

1 file changed

+0
-26
lines changed

libc-test/build.rs

-26
Original file line numberDiff line numberDiff line change
@@ -1370,7 +1370,6 @@ fn test_android(target: &str) {
13701370
t => panic!("unsupported target: {}", t),
13711371
};
13721372
let x86 = target.contains("i686") || target.contains("x86_64");
1373-
let aarch64 = target.contains("aarch64");
13741373

13751374
let mut cfg = ctest_cfg();
13761375
cfg.define("_GNU_SOURCE", None);
@@ -1592,31 +1591,6 @@ fn test_android(target: &str) {
15921591
// test the XSI version below.
15931592
"strerror_r" => true,
15941593

1595-
// FIXME: Somehow we cannot find these fns on aarch64.
1596-
// https://github.com/rust-lang/libc/issues/1765
1597-
"lockf"
1598-
| "preadv64"
1599-
| "pwritev64"
1600-
| "openpty"
1601-
| "forkpty"
1602-
| "login_tty"
1603-
| "getifaddrs"
1604-
| "freeifaddrs"
1605-
| "sethostname"
1606-
| "getgrgid_r"
1607-
| "getgrnam_r"
1608-
| "sigtimedwait"
1609-
| "fmemopen"
1610-
| "open_memstream"
1611-
| "open_wmemstream"
1612-
| "clock_getcpuclockid"
1613-
| "process_vm_readv"
1614-
| "process_vm_writev"
1615-
if aarch64 =>
1616-
{
1617-
true
1618-
}
1619-
16201594
_ => false,
16211595
}
16221596
});

0 commit comments

Comments
 (0)