We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9830960 commit 2d206ecCopy full SHA for 2d206ec
libc-test/build.rs
@@ -4496,7 +4496,10 @@ fn test_linux(target: &str) {
4496
// `handle` is a VLA
4497
(struct_ == "fanotify_event_info_fid" && field == "handle") ||
4498
// invalid application of 'sizeof' to incomplete type 'long unsigned int[]'
4499
- (musl && struct_ == "mcontext_t" && field == "__extcontext" && loongarch64)
+ (musl && struct_ == "mcontext_t" && field == "__extcontext" && loongarch64) ||
4500
+ // FIXME(#4121): a new field was added from `f_spare`
4501
+ (struct_ == "statvfs" && field == "__f_spare") ||
4502
+ (struct_ == "statvfs64" && field == "__f_spare")
4503
});
4504
4505
cfg.skip_roundtrip(move |s| match s {
0 commit comments