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 cfdf7ba commit 05958c5Copy full SHA for 05958c5
libc-test/build.rs
@@ -4861,7 +4861,9 @@ fn test_linux(target: &str) {
4861
// the `xsk_tx_metadata_union` field is an anonymous union
4862
(struct_ == "xsk_tx_metadata" && field == "xsk_tx_metadata_union") ||
4863
// After musl 1.2.0, the type becomes `int` instead of `long`.
4864
- (old_musl && struct_ == "utmpx" && field == "ut_session")
+ (old_musl && struct_ == "utmpx" && field == "ut_session") ||
4865
+ // FIXME(linux): this is changed to separate sec/usec fields when time64 is enabled
4866
+ (struct_ == "input_event" && field == "time")
4867
});
4868
4869
cfg.skip_roundtrip(move |s| match s {
0 commit comments