Skip to content
Open
4 changes: 3 additions & 1 deletion libc-test/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4558,7 +4558,9 @@ fn test_linux(target: &str) {
// `frames` is a flexible array member
(struct_ == "bcm_msg_head" && field == "frames") ||
// FAM
(struct_ == "af_alg_iv" && field == "iv")
(struct_ == "af_alg_iv" && field == "iv") ||
// FIXME(linux): this is changed to separate sec/usec fields when time64 is enabled
(struct_ == "input_event" && field == "time")
Comment on lines +4562 to +4563
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This isn't defined in musl, why is the skip needed as part of this series? Or if the definition is wrong, shouldn't it be changed?

});

cfg.skip_roundtrip(move |s| match s {
Expand Down