Skip to content
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

Merged
merged 1 commit into from
Apr 7, 2022

Commits on Mar 27, 2022

  1. Print the full relative path to failed tests

    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.
    jyn514 committed Mar 27, 2022
    Configuration menu
    Copy the full SHA
    d0a3260 View commit details
    Browse the repository at this point in the history