File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -2514,6 +2514,10 @@ fn test_linux(target: &str) {
2514
2514
if ty. starts_with ( "__c_anonymous_" ) {
2515
2515
return true ;
2516
2516
}
2517
+ // FIXME: musl CI has old headers
2518
+ if ( musl || sparc64) && ty. starts_with ( "uinput_" ) {
2519
+ return true ;
2520
+ }
2517
2521
match ty {
2518
2522
// These cannot be tested when "resolv.h" is included and are tested
2519
2523
// in the `linux_elf.rs` file.
@@ -2675,6 +2679,12 @@ fn test_linux(target: &str) {
2675
2679
// FIXME: Requires recent kernel headers (5.8):
2676
2680
"STATX_MNT_ID" => true ,
2677
2681
2682
+ // FIXME: requires more recent kernel headers on CI
2683
+ | "UINPUT_VERSION"
2684
+ | "SW_MAX"
2685
+ | "SW_CNT"
2686
+ if musl || mips || ppc64 || riscv64 || sparc64 => true ,
2687
+
2678
2688
_ => false ,
2679
2689
}
2680
2690
} ) ;
You can’t perform that action at this time.
0 commit comments