Skip to content
Snippets Groups Projects
Commit 04c7f116 authored by Sébastien Marie's avatar Sébastien Marie
Browse files

skip roundtrip on few struct on OpenBSD

parent 2b01f7e6
No related branches found
No related tags found
No related merge requests found
......@@ -369,6 +369,11 @@ fn test_openbsd(target: &str) {
(struct_ == "siginfo_t" && field == "si_addr")
});
cfg.skip_roundtrip(move |s| match s {
"dirent" | "utsname" | "utmp" => true,
_ => false,
});
cfg.generate("../src/lib.rs", "main.rs");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment