-
Notifications
You must be signed in to change notification settings - Fork 1.1k
OpenBSD is broken due to char_def #4209
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Could you confirm whether |
Oh, this is the problem from |
This is an issue introduced in #4198. We should add skip_type like the following to test_openbsd. cfg.skip_type(move |ty| {
match ty {
// `c_char_def` is always public but not always reexported.
"c_char_def" => true,
_ => false,
}
}); Line 483 in 28d4064
(I think the best way would be to remove c_char_def itself though: #4202) |
Also @semarie are these runs public on something like buildbot? I don't think we can include OpenBSD as part of our CI unless it moves up to tier 2, but maybe we could put together a dashboard for builds running on external systems. |
my CI is just a daily cron task which fetch HEAD, build and run the testsuite, and I receive an email when it fails to complete. so no dashboard. |
Fixes rust-lang#4209 (backport <rust-lang#4210>) (cherry picked from commit 9ff3409)
My daily CI on OpenBSD (x86_64) failed (testing 5f41b7a)
As several PR regarding
char_def
was merged, I am unsure which one caused the regression.Cc: @taiki-e @tgross35
The text was updated successfully, but these errors were encountered: