-
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
[bootstrap] Print the full relative path to failed tests #95352
Conversation
(rust-highfive has picked a reviewer for you, use r? to override) |
Before: ``` failures: [ui] rustdoc-ui/intra-doc/feature-gate-intra-doc-pointers.rs test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 163 filtered out; finished in 0.45s ``` After: ``` failures: [ui] src/test/rustdoc-ui/intra-doc/feature-gate-intra-doc-pointers.rs test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 163 filtered out; finished in 0.45s ``` This allows copy pasting the path or using Ctrl+Click in IDEs to go directly to the file, instead of having to edit the filename first.
2911bb6
to
d0a3260
Compare
@bors r+ rollup=iffy |
📌 Commit d0a3260 has been approved by |
⌛ Testing commit d0a3260 with merge 6a45608efd497b3890f5b77924e955b16bcfb2f1... |
💔 Test failed - checks-actions |
Failure looks spurious?
|
Error message from less than one day merged #95469, so maybe not spurious. |
The job Click to see the possible cause of the failure (guessed by this bot)
|
I don't see how. That only affects |
@bors retry |
Rollup of 5 pull requests Successful merges: - rust-lang#95352 ([bootstrap] Print the full relative path to failed tests) - rust-lang#95646 (Mention `std::env::var` in `env!`) - rust-lang#95708 (Update documentation for `trim*` and `is_whitespace` to include newlines) - rust-lang#95714 (Add test for issue rust-lang#83474) - rust-lang#95725 (Message: Chunks cannot have a size of zero.) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Before:
After:
This allows copy pasting the path or using Ctrl+Click in IDEs to go directly to the file, instead of having to edit the filename first.