Rollup merge of #122962 - jieyouxu:stamp-rmake-support-lib, r=onur-ozkan

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.
This commit is contained in:
Matthias Krüger 2024-03-24 17:08:17 +01:00 committed by GitHub
commit 5281fe29cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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/"));