Skip to content

Commit

Permalink
Rollup merge of #122962 - jieyouxu:stamp-rmake-support-lib, r=onur-ozkan
Browse files Browse the repository at this point in the history
Track run-make-support lib in common inputs stamp

So that when the support library gets modified, `run-make` tests are forced to re-run instead of being still ignored as if nothing changed.

Fixes #122961.
  • Loading branch information
matthiaskrgr authored Mar 24, 2024
2 parents 96a5348 + 894555f commit 5281fe2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/tools/compiletest/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -609,6 +609,8 @@ fn common_inputs_stamp(config: &Config) -> Stamp {
stamp.add_path(&rust_src_dir.join("src/etc/htmldocck.py"));
}

stamp.add_dir(&rust_src_dir.join("src/tools/run-make-support"));

// Compiletest itself.
stamp.add_dir(&rust_src_dir.join("src/tools/compiletest/"));

Expand Down

0 comments on commit 5281fe2

Please sign in to comment.