Skip to content

Commit

Permalink
Skip more items on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnTitor committed Jan 7, 2021
1 parent 1581af0 commit e18dc03
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions libc-test/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2595,6 +2595,9 @@ fn test_linux(target: &str) {
// which is absent in musl, has to be defined.
"__exit_status" if musl => true,

// FIXME: CI's kernel header version is old.
"sockaddr_can" => true,

_ => false,
}
});
Expand Down Expand Up @@ -2701,9 +2704,10 @@ fn test_linux(target: &str) {
| "IFLA_PERM_ADDRESS"
| "IFLA_PROTO_DOWN_REASON" => true,

// FIXME: J1939 requires kernel header version 5.4 or higher,
// the MIPS CI target has a lower version
"CAN_J1939" => true,
// FIXME: They require recent kernel header:
| "CAN_J1939"
| "CAN_RAW_FILTER_MAX"
| "CAN_NPROTO" => true,

_ => false,
}
Expand Down

0 comments on commit e18dc03

Please sign in to comment.