- Notifications
You must be signed in to change notification settings - Fork13.6k
Add newignore-backends
andneeds-backends
tests annotations#144125
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:master
Are you sure you want to change the base?
Conversation
Some changes occurred in src/tools/compiletest The rustc-dev-guide subtree was changed. If this PRonly touches the dev guide consider submitting a PR directly torust-lang/rustc-dev-guide otherwise thank you for updating the dev guide with your changes. |
For asm tests I think adding |
I didn't look how many tests were there but you're right, would make more sense to just ignore these tests completely if it's not llvm backend. I think I'll rename the folder to better express it ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
{ | ||
returnIgnoreDecision::Ignore{ | ||
reason:format!( | ||
"{} backend is not part of backends", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
"{} backend is not part of backends", | |
"{} backend is not part ofrequiredbackends", |
Yeah, I think this is for the best. |
e93ac26
to83786e7
CompareApplied suggestion. |
Part ofrust-lang/compiler-team#891.
Next step will be to add these annotations in the files where either the output is different based on the codegen (like
asm
tests) or that are known to fail in the GCC backend.cc@oli-obk@antoyo
r?@Kobzol