Skip to content

Commit e18dc03

Browse files
committed
Skip more items on CI
1 parent 1581af0 commit e18dc03

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

libc-test/build.rs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2595,6 +2595,9 @@ fn test_linux(target: &str) {
25952595
// which is absent in musl, has to be defined.
25962596
"__exit_status" if musl => true,
25972597

2598+
// FIXME: CI's kernel header version is old.
2599+
"sockaddr_can" => true,
2600+
25982601
_ => false,
25992602
}
26002603
});
@@ -2701,9 +2704,10 @@ fn test_linux(target: &str) {
27012704
| "IFLA_PERM_ADDRESS"
27022705
| "IFLA_PROTO_DOWN_REASON" => true,
27032706

2704-
// FIXME: J1939 requires kernel header version 5.4 or higher,
2705-
// the MIPS CI target has a lower version
2706-
"CAN_J1939" => true,
2707+
// FIXME: They require recent kernel header:
2708+
| "CAN_J1939"
2709+
| "CAN_RAW_FILTER_MAX"
2710+
| "CAN_NPROTO" => true,
27072711

27082712
_ => false,
27092713
}

0 commit comments

Comments
 (0)