Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 8 pull requests #130265

Closed
wants to merge 17 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
5396124
Update compiler-builtins to 0.1.125
alexcrichton Sep 5, 2024
7ed9f94
Don't leave debug locations for constants sitting on the builder inde…
khuey Sep 6, 2024
97df8fb
Fix default/minimum deployment target for Aarch64 simulator targets
madsmtm Aug 21, 2024
99cad12
Fix slice::first_mut docs
Scripter17 Sep 9, 2024
713828d
Add test for S_OBJNAME and update test for LF_BUILDINFO cl and cmd for
nebulark Sep 6, 2024
6d06429
clippy::useless_conversion
compiler-errors Sep 11, 2024
594de02
Properly deny const gen/async gen fns
compiler-errors Sep 11, 2024
8dc2278
Remove unused functions from ast CoroutineKind
compiler-errors Sep 11, 2024
ed9b2ba
Re-run coverage tests if `coverage-dump` was modified
Zalathar Sep 12, 2024
956c18c
Rollup merge of #129367 - madsmtm:fix-apple-aarch64-deployment-target…
Zalathar Sep 12, 2024
0e06c1d
Rollup merge of #129992 - alexcrichton:update-compiler-builtins, r=tg…
Zalathar Sep 12, 2024
aa83aac
Rollup merge of #130052 - khuey:clear-dilocation-after-const-emission…
Zalathar Sep 12, 2024
05f9ded
Rollup merge of #130156 - nebulark:test_buildinfo, r=jieyouxu
Zalathar Sep 12, 2024
d62fc5a
Rollup merge of #130160 - Scripter17:fix-slice-first_mut-doc, r=Amanieu
Zalathar Sep 12, 2024
d0f8865
Rollup merge of #130250 - compiler-errors:useless-conversion, r=jieyouxu
Zalathar Sep 12, 2024
88fd5b7
Rollup merge of #130252 - compiler-errors:const-gen, r=chenyukang
Zalathar Sep 12, 2024
81cba5e
Rollup merge of #130256 - Zalathar:dump-stamp, r=jieyouxu
Zalathar Sep 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/tools/compiletest/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -647,6 +647,12 @@ fn common_inputs_stamp(config: &Config) -> Stamp {
stamp.add_path(&rust_src_dir.join("src/etc/htmldocck.py"));
}

// Re-run coverage tests if the `coverage-dump` tool was modified,
// because its output format might have changed.
if let Some(coverage_dump_path) = &config.coverage_dump_path {
stamp.add_path(coverage_dump_path)
}

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

// Compiletest itself.
Expand Down
Loading