Skip to content

Commit

Permalink
Auto merge of #131434 - onur-ozkan:fix-if-unchanged-test, r=onur-ozkan
Browse files Browse the repository at this point in the history
fix `ci_rustc_if_unchanged_logic` test

Kind a typo from #122709, which makes `ci_rustc_if_unchanged_logic` test to fail in any PR that has a change in "library" tree (e.g., #131418 (comment)). This fixes that.

r? ghost
  • Loading branch information
bors committed Oct 9, 2024
2 parents 883f9a2 + 4474018 commit 4203c68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/src/core/builder/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ fn ci_rustc_if_unchanged_logic() {
builder.run_step_descriptions(&Builder::get_step_descriptions(config.cmd.kind()), &[]);

let compiler_path = build.src.join("compiler");
let library_path = build.src.join("compiler");
let library_path = build.src.join("library");

let commit =
get_closest_merge_commit(Some(&builder.config.src), &builder.config.git_config(), &[
Expand Down

0 comments on commit 4203c68

Please sign in to comment.