File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ fn test_apple(target: &str) {
225
225
}
226
226
} ) ;
227
227
228
- cfg. skip_roundtrip ( |s| match s {
228
+ cfg. skip_roundtrip ( move |s| match s {
229
229
// FIXME: TODO
230
230
"utsname" | "statfs" | "dirent" | "utmpx" => true ,
231
231
_ => false ,
@@ -2259,6 +2259,19 @@ fn test_linux(target: &str) {
2259
2259
field == "ssi_arch" ) )
2260
2260
} ) ;
2261
2261
2262
+ cfg. skip_roundtrip ( move |s| match s {
2263
+ // FIXME: TODO
2264
+ "_libc_fpstate" | "user_fpregs_struct" if x86_64 => true ,
2265
+ "utsname"
2266
+ | "statx"
2267
+ | "dirent"
2268
+ | "dirent64"
2269
+ | "utmpx"
2270
+ | "user"
2271
+ | "user_fpxregs_struct" => true ,
2272
+ _ => false ,
2273
+ } ) ;
2274
+
2262
2275
cfg. generate ( "../src/lib.rs" , "main.rs" ) ;
2263
2276
2264
2277
test_linux_like_apis ( target) ;
You can’t perform that action at this time.
0 commit comments