-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
compiletest: Remove empty 'expected' files when blessing #134808
base: master
Are you sure you want to change the base?
Conversation
r? @onur-ozkan rustbot has assigned @onur-ozkan. Use |
Some changes occurred in src/tools/compiletest cc @jieyouxu |
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.
Thanks, I have some nits and a question, but otherwise LGTM.
7b35a2c
to
d04e480
Compare
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.
Tiny nits, I'll do some local testing
d04e480
to
b03d3ed
Compare
Updated; some stuff got borked in rebasing |
b03d3ed
to
5bb727a
Compare
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.
Based on local testing:
- Added a new ui test w/ error anno.
- Initial no bless, failed as expected due to comparison w/ non-existent stderr failed.
- Blessed, pass as expected.
- Observed
.stderr
is present.
- Changed test to
//@ check-pass
and removed error annotation.- Observed empty
.stderr
is removed.
- Observed empty
Seems like it's working as intended. Feel free to r=me after PR CI is green, thanks!
@bors r=jieyouxu |
Fixes #134793
Fixes #134196
This also refactors
compare_output
to return an enum; returning a usize was done for convenience but is misleading