-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Fix #27567: remove --crate-type=lib from pretty test #27571
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @alexcrichton (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. The way Github handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
@bors r+ Nice cleanup. |
📌 Commit 9fd0845 has been approved by |
⌛ Testing commit 9fd0845 with merge 516a1a3... |
💔 Test failed - auto-linux-32-opt |
So, travis passed and homu failed with an |
@bors: retry |
⌛ Testing commit 9fd0845 with merge 3b232d6... |
Travis only runs |
@nrc Since some time ago, travis actually runs |
oh, neat! |
💔 Test failed - auto-linux-32-opt |
Looks like #27619 |
@bors retry |
9fd0845
to
f0ea2b6
Compare
Seeing as travis passed again, this should be fine now after the fail as part of the rollup (#27658 (comment)) |
⌛ Testing commit f0ea2b6 with merge dcdcc6f... |
⛄ The build was interrupted to prioritize another pull request. |
⚡ Previous build results for auto-mac-32-opt, auto-mac-64-nopt-t, auto-mac-64-opt are reusable. Rebuilding only auto-linux-32-nopt-t, auto-linux-32-opt, auto-linux-64-nopt-t, auto-linux-64-opt, auto-linux-64-x-android-t, auto-win-gnu-32-nopt-t, auto-win-gnu-32-opt, auto-win-gnu-64-nopt-t, auto-win-gnu-64-opt, auto-win-msvc-32-opt, auto-win-msvc-64-opt... |
Because I wanted to change the pretty test as little as possible I added
// compiler-flags: --crate-type=lib
to those test that failed because of a missingmain
. Passesmake check-stage1-pretty
locally.cc @nrc
cc #27567