We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d919c9 commit 26353eaCopy full SHA for 26353ea
src/bootstrap/test.rs
@@ -1562,7 +1562,7 @@ impl Step for CrateLibrustc {
1562
let compiler = builder.compiler(builder.top_stage, run.host);
1563
1564
for krate in builder.in_tree_crates("rustc-main") {
1565
- if run.path.ends_with(&krate.path) {
+ if krate.path.ends_with(&run.path) {
1566
let test_kind = builder.kind.into();
1567
1568
builder.ensure(CrateLibrustc {
@@ -1669,7 +1669,7 @@ impl Step for Crate {
1669
};
1670
1671
for krate in builder.in_tree_crates("test") {
1672
- if run.path.ends_with(&krate.local_path(&builder)) {
1673
make(Mode::Std, krate);
1674
}
1675
0 commit comments