diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-03-24 17:08:17 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-24 17:08:17 +0100 |
| commit | 5281fe29cccba84a3bedf7e90fdb14b208de9704 (patch) | |
| tree | 6d5902dd1f06f3f195e2bf5342505d2c86873e4d | |
| parent | 96a5348c058c7f5f6365d8230b193dafa8590fe6 (diff) | |
| parent | 894555ff8ed077a7bf3d9738888a456c6c763163 (diff) | |
| download | rust-5281fe29cccba84a3bedf7e90fdb14b208de9704.tar.gz rust-5281fe29cccba84a3bedf7e90fdb14b208de9704.zip | |
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.
| -rw-r--r-- | src/tools/compiletest/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/compiletest/src/lib.rs b/src/tools/compiletest/src/lib.rs index ef02e7fcb4a..b791b38379f 100644 --- a/src/tools/compiletest/src/lib.rs +++ b/src/tools/compiletest/src/lib.rs @@ -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/")); |
