Skip to content

Rustc pull update #2526

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

Merged
merged 26 commits into from
Aug 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
49fda75
Auto merge of #144469 - Kivooeo:chains-cleanup, r=SparrowLii
bors Jul 28, 2025
80ca648
Rollup merge of #144236 - yoshuawuyts:drop-guard, r=Mark-Simulacrum
Zalathar Jul 29, 2025
a463922
Rollup merge of #144367 - shepmaster:reduce-x86-macos-runner-usage, r…
Zalathar Jul 29, 2025
4c6da38
Rollup merge of #144569 - tshepang:rdg-sync, r=Kobzol
Zalathar Jul 29, 2025
b132ea7
Rollup merge of #144573 - BoxyUwU:patkind_constant_ptr_docs, r=lcnr
Zalathar Jul 29, 2025
b3900ad
Rollup merge of #144575 - xonx4l:patch-6, r=scottmcm
Zalathar Jul 29, 2025
63cb439
Rollup merge of #144578 - FractalFir:m68k_fix, r=compiler-errors
Zalathar Jul 29, 2025
c0c8bb0
Rollup merge of #144582 - usamoi:docs, r=RalfJung
Zalathar Jul 29, 2025
b8e0693
Rollup merge of #144616 - Zalathar:try-in-macro, r=jieyouxu
Zalathar Jul 29, 2025
c6e19e4
Auto merge of #144624 - Zalathar:rollup-w803jmq, r=Zalathar
bors Jul 29, 2025
973d30a
Auto merge of #144557 - cjgillot:lower-more-span, r=compiler-errors
bors Jul 29, 2025
7954fa0
Verify llvm-needs-components are not empty and match the --target value
dpaoliello Jul 16, 2025
ad9a310
Auto merge of #144393 - heiher:str-contains-lsx, r=tgross35
bors Jul 29, 2025
39bf8e8
Auto merge of #144577 - oli-obk:wrapping-niche, r=scottmcm
bors Jul 30, 2025
a39cfcc
Auto merge of #144305 - ChrisDenton:win-free-disk-space, r=marcoieni
bors Jul 30, 2025
c016f8b
Rollup merge of #144042 - dpaoliello:verifyllvmcomp, r=jieyouxu
Zalathar Jul 30, 2025
7acfeee
Rollup merge of #144268 - xizheyin:find-oldest-ancestor, r=jieyouxu
Zalathar Jul 30, 2025
b34bf96
Rollup merge of #144411 - Kivooeo:remove-world, r=jieyouxu
Zalathar Jul 30, 2025
8295858
Rollup merge of #144662 - Zalathar:directive-names, r=fmease
Zalathar Jul 30, 2025
3fb0be6
Rollup merge of #144666 - compiler-errors:correct-late, r=lqd
Zalathar Jul 30, 2025
420077d
Rollup merge of #144668 - daltenty:daltenty/runmake-llvm-components, …
Zalathar Jul 30, 2025
0fabf33
Auto merge of #144673 - Zalathar:rollup-0kpeq3n, r=Zalathar
bors Jul 30, 2025
bede818
Auto merge of #116316 - cjgillot:incr-privacy, r=petrochenkov
bors Jul 30, 2025
d39f347
Auto merge of #144405 - lcnr:hir-typeck-uniquify, r=BoxyUwU
bors Jul 31, 2025
5816881
Prepare for merging from rust-lang/rust
invalid-email-address Jul 31, 2025
e027c98
Merge ref '32e7a4b92b10' from rust-lang/rust
invalid-email-address Jul 31, 2025
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
2 changes: 1 addition & 1 deletion rust-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2b5e239c6b86cde974b0ef0f8e23754fb08ff3c5
32e7a4b92b109c24e9822c862a7c74436b50e564
13 changes: 11 additions & 2 deletions src/tests/directives.md
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,6 @@ See [Pretty-printer](compiletest.md#pretty-printer-tests).

- `no-auto-check-cfg` — disable auto check-cfg (only for `--check-cfg` tests)
- [`revisions`](compiletest.md#revisions) — compile multiple times
- [`unused-revision-names`](compiletest.md#ignoring-unused-revision-names) -
suppress tidy checks for mentioning unknown revision names
-[`forbid-output`](compiletest.md#incremental-tests) — incremental cfail rejects
output pattern
- [`should-ice`](compiletest.md#incremental-tests) — incremental cfail should
Expand All @@ -315,6 +313,17 @@ test suites that use those tools:
- `llvm-cov-flags` adds extra flags when running LLVM's `llvm-cov` tool.
- Used by [coverage tests](compiletest.md#coverage-tests) in `coverage-run` mode.

### Tidy specific directives

The following directives control how the [tidy script](../conventions.md#formatting)
verifies tests.

- `ignore-tidy-target-specific-tests` disables checking that the appropriate
LLVM component is required (via a `needs-llvm-components` directive) when a
test is compiled for a specific target (via the `--target` flag in a
`compile-flag` directive).
- [`unused-revision-names`](compiletest.md#ignoring-unused-revision-names) -
suppress tidy checks for mentioning unknown revision names.

## Substitutions

Expand Down