We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Tests with Mode::Pretty aren't currently working because:
Mode::Pretty
error: pretty-printing failed in round 0 revision None status: exit code: 101 command: "rustc" "-" "-Zunstable-options" "--unpretty" "expanded" "--target" "x86_64-unknown-linux-gnu" "-L" "/tmp/target-attr.stage-id.pretty.aux" "-L" "crate=../target/debug/" "-L" "dependency=../target/debug/deps/" stdout: ------------------------------------------ ------------------------------------------ stderr: ------------------------------------------ error: Unrecognized option: 'unpretty' ------------------------------------------
It caused by changes in Rust #47440. Instead of -Zunstable-options --unpretty TYPE we need to use -Z unpretty=TYPE.
-Zunstable-options --unpretty TYPE
-Z unpretty=TYPE
Should it be enough just to propagate the changes here?
The text was updated successfully, but these errors were encountered:
Hi! Thanks for reporting this. Yeah, usually just propagating the changes should work.
In this case, it might make sense to also extend the test-project with a pretty mode test, so ensure it keeps working.
Sorry, something went wrong.
No branches or pull requests
Tests with
Mode::Pretty
aren't currently working because:It caused by changes in Rust #47440.
Instead of
-Zunstable-options --unpretty TYPE
we need to use-Z unpretty=TYPE
.Should it be enough just to propagate the changes here?
The text was updated successfully, but these errors were encountered: