Skip to content

Commit 3e0e585

Browse files
committed
Ignore SYS_clone3 during musl tests
1 parent efe0fe9 commit 3e0e585

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libc-test/build.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -2638,7 +2638,8 @@ fn test_linux(target: &str) {
26382638

26392639
// FIXME: Not currently available in headers on MIPS
26402640
// Not yet implemented on sparc64
2641-
"SYS_clone3" if mips | sparc64 => true,
2641+
// FIXME: available in musl headers since musl 1.2.0
2642+
"SYS_clone3" if mips | sparc64 | musl => true,
26422643

26432644
// Missing from musl's kernel headers
26442645
| "IFLA_GSO_MAX_SEGS"

0 commit comments

Comments
 (0)