Skip to content

Commit 4203c68

Browse files
committed
Auto merge of rust-lang#131434 - onur-ozkan:fix-if-unchanged-test, r=onur-ozkan
fix `ci_rustc_if_unchanged_logic` test Kind a typo from rust-lang#122709, which makes `ci_rustc_if_unchanged_logic` test to fail in any PR that has a change in "library" tree (e.g., rust-lang#131418 (comment)). This fixes that. r? ghost
2 parents 883f9a2 + 4474018 commit 4203c68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/src/core/builder/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ fn ci_rustc_if_unchanged_logic() {
239239
builder.run_step_descriptions(&Builder::get_step_descriptions(config.cmd.kind()), &[]);
240240

241241
let compiler_path = build.src.join("compiler");
242-
let library_path = build.src.join("compiler");
242+
let library_path = build.src.join("library");
243243

244244
let commit =
245245
get_closest_merge_commit(Some(&builder.config.src), &builder.config.git_config(), &[

0 commit comments

Comments
 (0)