File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1410,8 +1410,6 @@ fn test_android(target: &str) {
1410
1410
// These are tested as part of the linux_fcntl tests since there are
1411
1411
// header conflicts when including them with all the other structs.
1412
1412
"termios2" => true ,
1413
- // uc_sigmask and uc_sigmask64 of ucontext_t are an anonymous union
1414
- "ucontext_t" => true ,
1415
1413
1416
1414
_ => false ,
1417
1415
}
@@ -1478,7 +1476,9 @@ fn test_android(target: &str) {
1478
1476
// signalfd had SIGSYS fields added in Android 4.19, but CI does not have that version yet.
1479
1477
( struct_ == "signalfd_siginfo" && ( field == "ssi_syscall" ||
1480
1478
field == "ssi_call_addr" ||
1481
- field == "ssi_arch" ) )
1479
+ field == "ssi_arch" ) ) ||
1480
+ // uc_sigmask and uc_sigmask64 of ucontext_t are an anonymous union
1481
+ ( struct_ == "ucontext_t" && field == "uc_sigmask__c_anonymous_union" )
1482
1482
} ) ;
1483
1483
1484
1484
cfg. generate ( "../src/lib.rs" , "main.rs" ) ;
You can’t perform that action at this time.
0 commit comments