Skip to content

Commit

Permalink
Ignore SYS_clone3 during musl tests
Browse files Browse the repository at this point in the history
  • Loading branch information
voidc committed Mar 14, 2021
1 parent efe0fe9 commit 3e0e585
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libc-test/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2638,7 +2638,8 @@ fn test_linux(target: &str) {

// FIXME: Not currently available in headers on MIPS
// Not yet implemented on sparc64
"SYS_clone3" if mips | sparc64 => true,
// FIXME: available in musl headers since musl 1.2.0
"SYS_clone3" if mips | sparc64 | musl => true,

// Missing from musl's kernel headers
| "IFLA_GSO_MAX_SEGS"
Expand Down

0 comments on commit 3e0e585

Please sign in to comment.