]> git.lizzy.rs Git - rust.git/commit - src/tools/miri
Rollup merge of #95352 - jyn514:full-relative-path, r=Mark-Simulacrum
authorDylan DPC <99973273+Dylan-DPC@users.noreply.github.com>
Thu, 7 Apr 2022 04:04:51 +0000 (06:04 +0200)
committerGitHub <noreply@github.com>
Thu, 7 Apr 2022 04:04:51 +0000 (06:04 +0200)
commitf7499a892ea5dde8057fce3f92d4398adf57255d
tree54501a1e96727f24bb449ae66102962a462bcf88
parent2310da432ca1c3e87f1d17e069f2336f2d4939e5
parentd0a326044ec21fa22828beaedeb9b23b856ea592
Rollup merge of #95352 - jyn514:full-relative-path, r=Mark-Simulacrum

[bootstrap] 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.