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 5608e7a commit 3a587a7Copy full SHA for 3a587a7
libc-test/build.rs
@@ -4884,7 +4884,9 @@ fn test_linux(target: &str) {
4884
// the `xsk_tx_metadata_union` field is an anonymous union
4885
(struct_ == "xsk_tx_metadata" && field == "xsk_tx_metadata_union") ||
4886
// After musl 1.2.0, the type becomes `int` instead of `long`.
4887
- (old_musl && struct_ == "utmpx" && field == "ut_session")
+ (old_musl && struct_ == "utmpx" && field == "ut_session") ||
4888
+ // FIXME(linux): this is changed to separate sec/usec fields when time64 is enabled
4889
+ (struct_ == "input_event" && field == "time")
4890
});
4891
4892
cfg.skip_roundtrip(move |s| match s {
0 commit comments