@@ -622,9 +622,12 @@ fn test_openbsd(target: &str) {
622
622
"KERN_MAXID" | "NET_RT_MAXID" => true ,
623
623
"EV_SYSFLAGS" => true ,
624
624
625
- // Removed in OpenBSD 7.7 (unused since 1991)
625
+ // Removed in OpenBSD 7.7
626
626
"ATF_COM" | "ATF_PERM" | "ATF_PUBL" | "ATF_USETRAILERS" => true ,
627
627
628
+ // Removed in OpenBSD 7.8
629
+ "CTL_FS" | "SO_NETPROC" => true ,
630
+
628
631
_ => false ,
629
632
}
630
633
} ) ;
@@ -5622,9 +5625,9 @@ fn test_aix(target: &str) {
5622
5625
} ) ;
5623
5626
5624
5627
cfg. type_name ( move |ty, is_struct, is_union| match ty {
5625
- "DIR" => ty. to_string ( ) ,
5626
- "FILE" => ty. to_string ( ) ,
5627
- "ACTION" => ty. to_string ( ) ,
5628
+ "DIR" => ty. to_string ( ) ,
5629
+ "FILE" => ty. to_string ( ) ,
5630
+ "ACTION" => ty. to_string ( ) ,
5628
5631
5629
5632
// 'sigval' is a struct in Rust, but a union in C.
5630
5633
"sigval" => format ! ( "union sigval" ) ,
@@ -5711,9 +5714,9 @@ fn test_aix(target: &str) {
5711
5714
// POSIX-compliant versions in the system libc. As a result,
5712
5715
// function pointer comparisons between the C and Rust sides
5713
5716
// would fail.
5714
- "getpwuid_r" | "getpwnam_r" | "getgrgid_r" | "getgrnam_r"
5715
- | "aio_cancel " | "aio_error " | "aio_fsync " | "aio_read "
5716
- | "aio_return" | "aio_suspend" | " aio_write" | "select" => true ,
5717
+ "getpwuid_r" | "getpwnam_r" | "getgrgid_r" | "getgrnam_r" | "aio_cancel"
5718
+ | "aio_error " | "aio_fsync " | "aio_read " | "aio_return" | "aio_suspend "
5719
+ | "aio_write" | "select" => true ,
5717
5720
5718
5721
// 'getdtablesize' is a constant in the AIX header but it is
5719
5722
// a real function in libc which the Rust side is resolved to.
@@ -5730,7 +5733,6 @@ fn test_aix(target: &str) {
5730
5733
}
5731
5734
} ) ;
5732
5735
5733
-
5734
5736
cfg. volatile_item ( |i| {
5735
5737
use ctest:: VolatileItemKind :: * ;
5736
5738
match i {
0 commit comments