-
Notifications
You must be signed in to change notification settings - Fork 13k
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
get rid of outdated logging functions in util::common #2553
Comments
A |
@catamorphism I'm not sure how widely used it would be, considering how little-used these were, but you could always open an issue for |
make a sync test more reliable CI still failed in /~https://github.com/rust-lang/miri/actions/runs/3088146532/jobs/4994285794, with a 2 second timeout?!??
This PR fixes a few flaky tests that started to fail in the ongoing toolchain update (rust-lang#2551) - The object bits test itself doesn't create that many objects since an array is represented as the same allocated object. Use LinkedList instead. - Do not rely on property number. - Do not rely on the order that failed checks is printed.
The
log_*
functions in util::common predate the logging macros and are used in only a handful of places in the compiler. Some aren't being used at all. We should get rid of them and replace the few places they're being used with#debug
and#error
.The text was updated successfully, but these errors were encountered: