@@ -3243,7 +3243,7 @@ fn test_neutrino(target: &str) {
3243
3243
3244
3244
let mut cfg = ctest_cfg ( ) ;
3245
3245
if target. ends_with ( "_iosock" ) {
3246
- let qnx_target_val = env:: var ( "QNX_TARGET" )
3246
+ let qnx_target_val = std :: env:: var ( "QNX_TARGET" )
3247
3247
. unwrap_or_else ( |_| "QNX_TARGET_not_set_please_source_qnxsdp" . into ( ) ) ;
3248
3248
3249
3249
cfg. include ( qnx_target_val + "/usr/include/io-sock" ) ;
@@ -5525,9 +5525,9 @@ fn test_aix(target: &str) {
5525
5525
} ) ;
5526
5526
5527
5527
cfg. type_name ( move |ty, is_struct, is_union| match ty {
5528
- "DIR" => ty. to_string ( ) ,
5529
- "FILE" => ty. to_string ( ) ,
5530
- "ACTION" => ty. to_string ( ) ,
5528
+ "DIR" => ty. to_string ( ) ,
5529
+ "FILE" => ty. to_string ( ) ,
5530
+ "ACTION" => ty. to_string ( ) ,
5531
5531
5532
5532
// 'sigval' is a struct in Rust, but a union in C.
5533
5533
"sigval" => format ! ( "union sigval" ) ,
@@ -5614,9 +5614,9 @@ fn test_aix(target: &str) {
5614
5614
// POSIX-compliant versions in the system libc. As a result,
5615
5615
// function pointer comparisons between the C and Rust sides
5616
5616
// would fail.
5617
- "getpwuid_r" | "getpwnam_r" | "getgrgid_r" | "getgrnam_r"
5618
- | "aio_cancel " | "aio_error " | "aio_fsync " | "aio_read "
5619
- | "aio_return" | "aio_suspend" | " aio_write" | "select" => true ,
5617
+ "getpwuid_r" | "getpwnam_r" | "getgrgid_r" | "getgrnam_r" | "aio_cancel"
5618
+ | "aio_error " | "aio_fsync " | "aio_read " | "aio_return" | "aio_suspend "
5619
+ | "aio_write" | "select" => true ,
5620
5620
5621
5621
// 'getdtablesize' is a constant in the AIX header but it is
5622
5622
// a real function in libc which the Rust side is resolved to.
@@ -5633,7 +5633,6 @@ fn test_aix(target: &str) {
5633
5633
}
5634
5634
} ) ;
5635
5635
5636
-
5637
5636
cfg. volatile_item ( |i| {
5638
5637
use ctest:: VolatileItemKind :: * ;
5639
5638
match i {
0 commit comments