Skip to content

Commit

Permalink
fix: skip test for musl
Browse files Browse the repository at this point in the history
  • Loading branch information
adder32 committed Nov 12, 2023
1 parent 6b2beb8 commit 900ef0d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libc-test/build.rs
Expand Up @@ -3671,6 +3671,10 @@ fn test_linux(target: &str) {
if name.starts_with("RLIM64") {
return true;
}
// CI fails because musl targets use Linux v4 kernel
if name.starts_with("NI_IDN") {
return true;
}
}
match name {
// These constants are not available if gnu headers have been included
Expand Down

0 comments on commit 900ef0d

Please sign in to comment.