Skip to content

Rollup of 5 pull requests - #160381

Closed
JonathanBrouwer wants to merge 57 commits into
rust-lang:mainfrom
JonathanBrouwer:rollup-L04tJKq
Closed

Rollup of 5 pull requests#160381
JonathanBrouwer wants to merge 57 commits into
rust-lang:mainfrom
JonathanBrouwer:rollup-L04tJKq

Conversation

@JonathanBrouwer

Copy link
Copy Markdown
Contributor

Successful merges:

r? @ghost

Create a similar rollup

moabo3li and others added 30 commits July 24, 2026 13:19
Add UI coverage for source-shaped local values before changing the renderer.

The new cases exercise structs, enum variants, tuples, arrays, slices, and
fallback leaf values so later commits can bless one behavior change at a time.
This updates the rust-version file to dfbea5b.
…e-buffer

skip weak memory buffer handling when there is only one thread
Route local value rendering through a source-shaped renderer helper.

At this step the helper still delegates leaves and unsupported shapes back to
the existing raw byte renderer, so the behavioral changes can land in focused
follow-up commits.
Render struct and struct-like ADT operands using their source field names.

Fields are projected from the operand and each leaf still uses the existing raw
renderer, producing output such as `Point { x: [..], y: [..] }` without relying
on user Debug or Display implementations.
Extend source-shaped ADT rendering to enum operands.

The renderer reads the runtime discriminant, downcasts to the active variant,
and then renders the payload fields with the same raw-leaf fallback used for
struct fields. Unit, tuple, and struct variants keep their Rust-like spelling.
Render tuple operands as positional source-shaped values.

Tuple elements are projected in source order and rendered through the existing
leaf renderer, including the trailing comma for one-element tuples.
Render array and slice operands as ordered source-shaped elements.

Fixed arrays use their layout count while slices use the runtime metadata length,
then `project_array_fields` supplies the element operands for raw-leaf rendering.
This updates the rust-version file to d3ea035.
…t-comment

fix `ptr_from_addr_cast` comment
…s-and-types-handling

[Priroda] Render projected locals with source-shaped values
Implement shims for vsha256hq_u32, vsha256h2q_u32, vsha256su0q_u32 and vsha256su1q_u32
Matches the naming already used in
the aarch64 SHA256 shims.
…ntrinsics

aarch64: implement SHA256 intrinsic shims
This updates the rust-version file to 701a651.
The Miri Cronjob Bot and others added 9 commits August 2, 2026 05:32
…ck, r=jhpratt,Urgau

Semantic check of `mut` restrictions

This PR implements semantic checks for `mut` restrictions proposed in [RFC 3323](https://rust-lang.github.io/rfcs/3323-restrictions.html), as part of the related [GSoC project](https://rust-lang.zulipchat.com/#narrow/channel/421156-gsoc/topic/Project.3A.20Implementing.20impl.20and.20mut.20restrictions/with/592352432).
It lowers field restriction information from HIR into `rustc_middle::ty::FieldDef` and adds a MIR-level lint that rejects restricted field mutations and struct expressions. As parsing (rust-lang#156824) and path resolution (rust-lang#159125) have already been implemented, this PR provides a working implementation of `mut` restrictions.

Tracking issue: rust-lang#105077
r? @Urgau
cc @jhpratt
…s, r=mejrs

borrowck: Simplify deps to build compiler 30s faster

`rustc_borrowck` uses two helpers from `rustc_traits`. One of them is re-exported from `rustc_trait_selection`, and the other can easily move to `rustc_trait_selection`.

Making `rustc_borrowck` use these helpers from `rustc_trait_selection` directly, and eliminating the `rustc_traits` dependency, allows starting to build `rustc_borrowck` earlier, which substantially speeds up building the compiler because `rustc_borrowck` is one of the last things to build.

On my system, this speeds up the rustc build by a little over 30s.
tests: prefer max-llvm-major-version over open LLVM ranges

Per review, take option 3: replace open `ignore-llvm-version` ranges with `max-llvm-major-version`. Left gdb `X - 99.0` ranges alone so CI's older gdb still runs those tests.

Fixes rust-lang#159338.
bootstrap: Don't pass `Kind` to some places that don't need it

The current CLI step's `Kind` was being passed deep into some selector-matching code that doesn't seem to actually need it. It seems that the kind associated with a step's `ShouldRun` paths/aliases always comes from that step, so proceeding to compare it against the step's kind later can never fail and doesn't achieve anything.

As far as I can tell, this is a relic of rust-lang#91965 that (due to subsequent changes) doesn't do anything useful and also doesn't make a lot of conceptual sense.

This PR therefore removes the `Kind` parameter from `PathSet::check`, and removes the `Kind` field from `TaskPath`.

Touching `TaskPath` causes a lot of churn in snapshot tests, but there don't seem to be any changes in actual behaviour.
@rust-bors rust-bors Bot added the rollup A PR which is a rollup label Aug 2, 2026
@rustbot rustbot added F-explicit_tail_calls `#![feature(explicit_tail_calls)]` S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. T-rustdoc-frontend Relevant to the rustdoc-frontend team, which will review and decide on the web UI/UX output. labels Aug 2, 2026
@JonathanBrouwer

Copy link
Copy Markdown
Contributor Author

@bors r+ rollup=never p=5

Trying commonly failed jobs
@bors try jobs=dist-various-1,test-various,x86_64-gnu-aux,x86_64-gnu-llvm-21-3,x86_64-msvc-1,aarch64-apple,x86_64-mingw-1,i686-msvc-*

@rust-bors

rust-bors Bot commented Aug 2, 2026

Copy link
Copy Markdown
Contributor

📌 Commit ed92378 has been approved by JonathanBrouwer

It is now in the queue for this repository.

@rust-bors rust-bors Bot added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Aug 2, 2026
@rust-bors

rust-bors Bot commented Aug 2, 2026

Copy link
Copy Markdown
Contributor

⌛ Trying commit ed92378 with merge a71e045

To cancel the try build, run the command @bors try cancel.

Workflow: https://github.com/rust-lang/rust/actions/runs/30744687653

rust-bors Bot pushed a commit that referenced this pull request Aug 2, 2026
Rollup of 5 pull requests


try-job: dist-various-1
try-job: test-various
try-job: x86_64-gnu-aux
try-job: x86_64-gnu-llvm-21-3
try-job: x86_64-msvc-1
try-job: aarch64-apple
try-job: x86_64-mingw-1
try-job: i686-msvc-*
@rust-log-analyzer

Copy link
Copy Markdown
Collaborator

The job i686-msvc-2 failed! Check out the build log: (web) (plain enhanced) (plain)

Click to see the possible cause of the failure (guessed by this bot)

---- core::builder::cli_paths::tests::x_build stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpa9NC1Z
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_build.snap
Snapshot: x_build
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: build
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
   12       │-    - Set({"library/std_detect"})
   13       │-    - Set({"library/sysroot"})
   14       │-    - Set({"library/test"})
   15       │-    - Set({"library/unwind"})
          4 │+    - Set({"library//alloc"})
          5 │+    - Set({"library//compiler-builtins//compiler-builtins"})
          6 │+    - Set({"library//core"})
          7 │+    - Set({"library//panic_abort"})
          8 │+    - Set({"library//panic_unwind"})
          9 │+    - Set({"library//proc_macro"})
         10 │+    - Set({"library//rustc-std-workspace-core"})
         11 │+    - Set({"library//std"})
         12 │+    - Set({"library//std_detect"})
         13 │+    - Set({"library//sysroot"})
         14 │+    - Set({"library//test"})
         15 │+    - Set({"library//unwind"})
   16    16 │ [Build] tool::Rustdoc
   17    17 │     targets: [x86_64-unknown-linux-gnu]
   18    18 │     - Set({"src/librustdoc", "src/tools/rustdoc"})
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_build' (1436) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_build' failed in line 66
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
---- core::builder::cli_paths::tests::x_build stdout end ----
---- core::builder::cli_paths::tests::x_build_compiler stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpkfLA9O
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_build_compiler.snap
Snapshot: x_build_compiler
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: build compiler
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
   78    78 │     - Set({"compiler/rustc"})
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_build_compiler' (9484) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_build_compiler' failed in line 66
---- core::builder::cli_paths::tests::x_build_compiler stdout end ----
---- core::builder::cli_paths::tests::x_bench stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpEmumQr
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_bench.snap
Snapshot: x_bench
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: bench
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
   13       │-    - Set({"library/std_detect"})
   14       │-    - Set({"library/sysroot"})
   15       │-    - Set({"library/test"})
   16       │-    - Set({"library/unwind"})
          3 │+    - Set({"library//alloc"})
          4 │+    - Set({"library//alloctests"})
          5 │+    - Set({"library//compiler-builtins//compiler-builtins"})
          6 │+    - Set({"library//core"})
          7 │+    - Set({"library//coretests"})
          8 │+    - Set({"library//panic_abort"})
          9 │+    - Set({"library//panic_unwind"})
         10 │+    - Set({"library//proc_macro"})
         11 │+    - Set({"library//rustc-std-workspace-core"})
         12 │+    - Set({"library//std"})
         13 │+    - Set({"library//std_detect"})
         14 │+    - Set({"library//sysroot"})
         15 │+    - Set({"library//test"})
         16 │+    - Set({"library//unwind"})
   17    17 │ [Bench] test::CrateLibrustc
   18    18 │     targets: [x86_64-unknown-linux-gnu]
   19    19 │     - Set({"compiler"})
   20       │-    - Set({"compiler/rustc"})
   21       │-    - Set({"compiler/rustc_abi"})
   22       │-    - Set({"compiler/rustc_arena"})
---
   95    95 │     - Set({"src/librustdoc", "src/tools/rustdoc"})
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_bench' (6792) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_bench' failed in line 66
---- core::builder::cli_paths::tests::x_bench stdout end ----
---- core::builder::cli_paths::tests::x_build_library stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpJenrya
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_build_library.snap
Snapshot: x_build_library
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: build library
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
   12       │-    - Set({"library/std_detect"})
   13       │-    - Set({"library/sysroot"})
   14       │-    - Set({"library/test"})
   15       │-    - Set({"library/unwind"})
          4 │+    - Set({"library//alloc"})
          5 │+    - Set({"library//compiler-builtins//compiler-builtins"})
          6 │+    - Set({"library//core"})
          7 │+    - Set({"library//panic_abort"})
          8 │+    - Set({"library//panic_unwind"})
          9 │+    - Set({"library//proc_macro"})
         10 │+    - Set({"library//rustc-std-workspace-core"})
         11 │+    - Set({"library//std"})
         12 │+    - Set({"library//std_detect"})
         13 │+    - Set({"library//sysroot"})
         14 │+    - Set({"library//test"})
         15 │+    - Set({"library//unwind"})
   16    16 │ [Build] compile::StartupObjects
   17    17 │     targets: [aarch64-unknown-linux-gnu]
   18    18 │     - Set({"library/rtstartup"})
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_build_library' (2764) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_build_library' failed in line 66
---- core::builder::cli_paths::tests::x_build_library stdout end ----
---- core::builder::cli_paths::tests::x_build_rustc_llvm stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpziqF7D
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_build_rustc_llvm.snap
Snapshot: x_build_rustc_llvm
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: build rustc_llvm
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
          3 │+    - Set({"compiler//rustc_llvm"})
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_build_rustc_llvm' (10188) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_build_rustc_llvm' failed in line 66
---- core::builder::cli_paths::tests::x_build_rustc_llvm stdout end ----
---- core::builder::cli_paths::tests::x_check stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpEh7KVI
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_check.snap
Snapshot: x_check
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: check
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
  125       │-    - Set({"library/std_detect"})
  126       │-    - Set({"library/sysroot"})
  127       │-    - Set({"library/test"})
  128       │-    - Set({"library/unwind"})
        115 │+    - Set({"library//alloc"})
        116 │+    - Set({"library//alloctests"})
        117 │+    - Set({"library//compiler-builtins//compiler-builtins"})
        118 │+    - Set({"library//core"})
        119 │+    - Set({"library//coretests"})
        120 │+    - Set({"library//panic_abort"})
        121 │+    - Set({"library//panic_unwind"})
        122 │+    - Set({"library//proc_macro"})
        123 │+    - Set({"library//rustc-std-workspace-core"})
        124 │+    - Set({"library//std"})
        125 │+    - Set({"library//std_detect"})
        126 │+    - Set({"library//sysroot"})
        127 │+    - Set({"library//test"})
        128 │+    - Set({"library//unwind"})
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_check' (8288) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_check' failed in line 66
---- core::builder::cli_paths::tests::x_check stdout end ----
---- core::builder::cli_paths::tests::x_build_sysroot stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmp6vBnVb
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_build_sysroot.snap
Snapshot: x_build_sysroot
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: build sysroot
───────────────────────────────────────────────────────────────────────────────
-old snapshot
+new results
────────────┬──────────────────────────────────────────────────────────────────
    1     1 │ [Build] compile::Std
    2     2 │     targets: [aarch64-unknown-linux-gnu]
    3       │-    - Set({"library/sysroot"})
          3 │+    - Set({"library//sysroot"})
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_build_sysroot' (1440) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_build_sysroot' failed in line 66
---- core::builder::cli_paths::tests::x_build_sysroot stdout end ----
---- core::builder::cli_paths::tests::x_check_compiler stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpSRzktd
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_check_compiler.snap
Snapshot: x_check_compiler
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: check compiler
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
         76 │+    - Set({"compiler//rustc_windows_rc"})
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_check_compiler' (2228) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_check_compiler' failed in line 66
---- core::builder::cli_paths::tests::x_check_compiler stdout end ----
---- core::builder::cli_paths::tests::x_check_library stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpDIkyT7
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_check_library.snap
Snapshot: x_check_library
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: check library
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
   14       │-    - Set({"library/std_detect"})
   15       │-    - Set({"library/sysroot"})
   16       │-    - Set({"library/test"})
   17       │-    - Set({"library/unwind"})
          4 │+    - Set({"library//alloc"})
          5 │+    - Set({"library//alloctests"})
          6 │+    - Set({"library//compiler-builtins//compiler-builtins"})
          7 │+    - Set({"library//core"})
          8 │+    - Set({"library//coretests"})
          9 │+    - Set({"library//panic_abort"})
         10 │+    - Set({"library//panic_unwind"})
         11 │+    - Set({"library//proc_macro"})
         12 │+    - Set({"library//rustc-std-workspace-core"})
         13 │+    - Set({"library//std"})
         14 │+    - Set({"library//std_detect"})
         15 │+    - Set({"library//sysroot"})
         16 │+    - Set({"library//test"})
         17 │+    - Set({"library//unwind"})
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_check_library' (1932) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_check_library' failed in line 66
error: test failed, to rerun pass `--lib`
---- core::builder::cli_paths::tests::x_check_library stdout end ----
---- core::builder::cli_paths::tests::x_check_compiletest_include_default_paths stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpbkirT2
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_check_compiletest_include_default_paths.snap
Snapshot: x_check_compiletest_include_default_paths
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: check compiletest --include-default-paths
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
  125       │-    - Set({"library/std_detect"})
  126       │-    - Set({"library/sysroot"})
  127       │-    - Set({"library/test"})
  128       │-    - Set({"library/unwind"})
        115 │+    - Set({"library//alloc"})
        116 │+    - Set({"library//alloctests"})
        117 │+    - Set({"library//compiler-builtins//compiler-builtins"})
        118 │+    - Set({"library//core"})
        119 │+    - Set({"library//coretests"})
        120 │+    - Set({"library//panic_abort"})
        121 │+    - Set({"library//panic_unwind"})
        122 │+    - Set({"library//proc_macro"})
        123 │+    - Set({"library//rustc-std-workspace-core"})
        124 │+    - Set({"library//std"})
        125 │+    - Set({"library//std_detect"})
        126 │+    - Set({"library//sysroot"})
        127 │+    - Set({"library//test"})
        128 │+    - Set({"library//unwind"})
  129   129 │ [Check] check::Compiletest
  130   130 │     targets: [x86_64-unknown-linux-gnu]
  131   131 │     - Set({"src/tools/compiletest"})
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_check_compiletest_include_default_paths' (7836) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_check_compiletest_include_default_paths' failed in line 66
---- core::builder::cli_paths::tests::x_check_compiletest_include_default_paths stdout end ----
---- core::builder::cli_paths::tests::x_check_rustc stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpWejKhS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_check_rustc.snap
Snapshot: x_check_rustc
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: check rustc
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
          3 │+    - Set({"compiler//rustc"})
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_check_rustc' (2508) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_check_rustc' failed in line 66
---- core::builder::cli_paths::tests::x_check_rustc stdout end ----
---- core::builder::cli_paths::tests::x_clippy stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmp0PO3o0
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_clippy.snap
Snapshot: x_clippy
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: clippy
───────────────────────────────────────────────────────────────────────────────
-old snapshot
+new results
────────────┬──────────────────────────────────────────────────────────────────
    1     1 │ [Clippy] clippy::Std
    2     2 │     targets: [aarch64-unknown-linux-gnu]
    3     3 │     - Set({"library"})
    4       │-    - Set({"library/alloc"})
    5       │-    - Set({"library/compiler-builtins/compiler-builtins"})
    6       │-    - Set({"library/core"})
    7       │-    - Set({"library/panic_abort"})
    8       │-    - Set({"library/panic_unwind"})
    9       │-    - Set({"library/proc_macro"})
   10       │-    - Set({"library/rustc-std-workspace-core"})
   11       │-    - Set({"library/std"})
   12       │-    - Set({"library/std_detect"})
   13       │-    - Set({"library/sysroot"})
   14       │-    - Set({"library/test"})
   15       │-    - Set({"library/unwind"})
          4 │+    - Set({"library//alloc"})
          5 │+    - Set({"library//compiler-builtins//compiler-builtins"})
          6 │+    - Set({"library//core"})
          7 │+    - Set({"library//panic_abort"})
          8 │+    - Set({"library//panic_unwind"})
          9 │+    - Set({"library//proc_macro"})
         10 │+    - Set({"library//rustc-std-workspace-core"})
         11 │+    - Set({"library//std"})
         12 │+    - Set({"library//std_detect"})
         13 │+    - Set({"library//sysroot"})
         14 │+    - Set({"library//test"})
         15 │+    - Set({"library//unwind"})
   16    16 │ [Clippy] clippy::Rustc
   17    17 │     targets: [x86_64-unknown-linux-gnu]
   18    18 │     - Set({"compiler"})
   19       │-    - Set({"compiler/rustc"})
   20       │-    - Set({"compiler/rustc_abi"})
   21       │-    - Set({"compiler/rustc_arena"})
---
         91 │+    - Set({"compiler//rustc_windows_rc"})
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_clippy' (7688) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_clippy' failed in line 66
---- core::builder::cli_paths::tests::x_clippy stdout end ----
---- core::builder::cli_paths::tests::x_doc stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpCLH2ow
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_doc.snap
Snapshot: x_doc
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: doc
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
   25       │-    - Set({"library/std_detect"})
   26       │-    - Set({"library/sysroot"})
   27       │-    - Set({"library/test"})
   28       │-    - Set({"library/unwind"})
         17 │+    - Set({"library//alloc"})
         18 │+    - Set({"library//compiler-builtins//compiler-builtins"})
         19 │+    - Set({"library//core"})
         20 │+    - Set({"library//panic_abort"})
         21 │+    - Set({"library//panic_unwind"})
         22 │+    - Set({"library//proc_macro"})
         23 │+    - Set({"library//rustc-std-workspace-core"})
         24 │+    - Set({"library//std"})
         25 │+    - Set({"library//std_detect"})
         26 │+    - Set({"library//sysroot"})
         27 │+    - Set({"library//test"})
         28 │+    - Set({"library//unwind"})
   29    29 │ [Doc] doc::ErrorIndex
   30    30 │     targets: [x86_64-unknown-linux-gnu]
   31    31 │     - Set({"src/tools/error_index_generator"})
   32    32 │ [Doc] doc::Nomicon
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_doc' (1200) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_doc' failed in line 66
---- core::builder::cli_paths::tests::x_doc stdout end ----
---- core::builder::cli_paths::tests::x_fix stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmp91tq1V
WARNING: `x fix` is provided on a best-effort basis and does not support all `cargo fix` options correctly.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_fix.snap
Snapshot: x_fix
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: fix
───────────────────────────────────────────────────────────────────────────────
-old snapshot
+new results
────────────┬──────────────────────────────────────────────────────────────────
    1     1 │ [Fix] check::Rustc
    2     2 │     targets: [x86_64-unknown-linux-gnu]
    3     3 │     - Set({"compiler"})
    4       │-    - Set({"compiler/rustc"})
    5       │-    - Set({"compiler/rustc_abi"})
    6       │-    - Set({"compiler/rustc_arena"})
---
   73       │-    - Set({"compiler/rustc_ty_utils"})
   74       │-    - Set({"compiler/rustc_type_ir"})
   75       │-    - Set({"compiler/rustc_type_ir_macros"})
   76       │-    - Set({"compiler/rustc_windows_rc"})
          4 │+    - Set({"compiler//rustc"})
          5 │+    - Set({"compiler//rustc_abi"})
          6 │+    - Set({"compiler//rustc_arena"})
          7 │+    - Set({"compiler//rustc_ast"})
          8 │+    - Set({"compiler//rustc_ast_ir"})
          9 │+    - Set({"compiler//rustc_ast_lowering"})
         10 │+    - Set({"compiler//rustc_ast_passes"})
         11 │+    - Set({"compiler//rustc_ast_pretty"})
         12 │+    - Set({"compiler//rustc_attr_parsing"})
         13 │+    - Set({"compiler//rustc_baked_icu_data"})
         14 │+    - Set({"compiler//rustc_borrowck"})
         15 │+    - Set({"compiler//rustc_builtin_macros"})
         16 │+    - Set({"compiler//rustc_codegen_llvm"})
         17 │+    - Set({"compiler//rustc_codegen_ssa"})
         18 │+    - Set({"compiler//rustc_const_eval"})
         19 │+    - Set({"compiler//rustc_data_structures"})
         20 │+    - Set({"compiler//rustc_driver"})
         21 │+    - Set({"compiler//rustc_driver_impl"})
         22 │+    - Set({"compiler//rustc_error_codes"})
         23 │+    - Set({"compiler//rustc_error_messages"})
         24 │+    - Set({"compiler//rustc_errors"})
         25 │+    - Set({"compiler//rustc_expand"})
         26 │+    - Set({"compiler//rustc_feature"})
         27 │+    - Set({"compiler//rustc_fs_util"})
         28 │+    - Set({"compiler//rustc_graphviz"})
         29 │+    - Set({"compiler//rustc_hashes"})
         30 │+    - Set({"compiler//rustc_hir"})
         31 │+    - Set({"compiler//rustc_hir_analysis"})
         32 │+    - Set({"compiler//rustc_hir_id"})
         33 │+    - Set({"compiler//rustc_hir_pretty"})
         34 │+    - Set({"compiler//rustc_hir_typeck"})
         35 │+    - Set({"compiler//rustc_incremental"})
         36 │+    - Set({"compiler//rustc_index"})
         37 │+    - Set({"compiler//rustc_index_macros"})
         38 │+    - Set({"compiler//rustc_infer"})
         39 │+    - Set({"compiler//rustc_interface"})
         40 │+    - Set({"compiler//rustc_lexer"})
         41 │+    - Set({"compiler//rustc_lint"})
         42 │+    - Set({"compiler//rustc_lint_defs"})
         43 │+    - Set({"compiler//rustc_llvm"})
         44 │+    - Set({"compiler//rustc_log"})
         45 │+    - Set({"compiler//rustc_macros"})
         46 │+    - Set({"compiler//rustc_metadata"})
         47 │+    - Set({"compiler//rustc_middle"})
         48 │+    - Set({"compiler//rustc_mir_build"})
         49 │+    - Set({"compiler//rustc_mir_dataflow"})
         50 │+    - Set({"compiler//rustc_mir_transform"})
         51 │+    - Set({"compiler//rustc_monomorphize"})
         52 │+    - Set({"compiler//rustc_next_trait_solver"})
         53 │+    - Set({"compiler//rustc_parse"})
         54 │+    - Set({"compiler//rustc_parse_format"})
         55 │+    - Set({"compiler//rustc_passes"})
         56 │+    - Set({"compiler//rustc_pattern_analysis"})
         57 │+    - Set({"compiler//rustc_privacy"})
         58 │+    - Set({"compiler//rustc_proc_macro"})
         59 │+    - Set({"compiler//rustc_public"})
         60 │+    - Set({"compiler//rustc_public_bridge"})
         61 │+    - Set({"compiler//rustc_query_impl"})
         62 │+    - Set({"compiler//rustc_resolve"})
         63 │+    - Set({"compiler//rustc_sanitizers"})
         64 │+    - Set({"compiler//rustc_serialize"})
         65 │+    - Set({"compiler//rustc_session"})
         66 │+    - Set({"compiler//rustc_span"})
         67 │+    - Set({"compiler//rustc_symbol_mangling"})
         68 │+    - Set({"compiler//rustc_target"})
         69 │+    - Set({"compiler//rustc_thread_pool"})
         70 │+    - Set({"compiler//rustc_trait_selection"})
         71 │+    - Set({"compiler//rustc_traits"})
         72 │+    - Set({"compiler//rustc_transmute"})
         73 │+    - Set({"compiler//rustc_ty_utils"})
         74 │+    - Set({"compiler//rustc_type_ir"})
         75 │+    - Set({"compiler//rustc_type_ir_macros"})
         76 │+    - Set({"compiler//rustc_windows_rc"})
   77    77 │ [Fix] check::Rustdoc
   78    78 │     targets: [x86_64-unknown-linux-gnu]
   79    79 │     - Set({"src/librustdoc", "src/tools/rustdoc"})
   80    80 │ [Fix] check::CraneliftCodegenBackend
┈┈┈┈┈┈┈┈┈┈┈┈┼┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈
  111   111 │     - Set({"src/tools/features-status-dump"})
  112   112 │ [Fix] check::Std
  113   113 │     targets: [aarch64-unknown-linux-gnu]
  114   114 │     - Set({"library"})
  115       │-    - Set({"library/alloc"})
  116       │-    - Set({"library/alloctests"})
  117       │-    - Set({"library/compiler-builtins/compiler-builtins"})
  118       │-    - Set({"library/core"})
  119       │-    - Set({"library/coretests"})
---
  125       │-    - Set({"library/std_detect"})
  126       │-    - Set({"library/sysroot"})
  127       │-    - Set({"library/test"})
  128       │-    - Set({"library/unwind"})
        115 │+    - Set({"library//alloc"})
        116 │+    - Set({"library//alloctests"})
        117 │+    - Set({"library//compiler-builtins//compiler-builtins"})
        118 │+    - Set({"library//core"})
        119 │+    - Set({"library//coretests"})
        120 │+    - Set({"library//panic_abort"})
        121 │+    - Set({"library//panic_unwind"})
        122 │+    - Set({"library//proc_macro"})
        123 │+    - Set({"library//rustc-std-workspace-core"})
        124 │+    - Set({"library//std"})
        125 │+    - Set({"library//std_detect"})
        126 │+    - Set({"library//sysroot"})
        127 │+    - Set({"library//test"})
        128 │+    - Set({"library//unwind"})
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_fix' (7560) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_fix' failed in line 66
---- core::builder::cli_paths::tests::x_fix stdout end ----
---- core::builder::cli_paths::tests::x_miri stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmp8Wu5Cz
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_miri.snap
Snapshot: x_miri
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: miri
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
   13       │-    - Set({"library/std_detect"})
   14       │-    - Set({"library/sysroot"})
   15       │-    - Set({"library/test"})
   16       │-    - Set({"library/unwind"})
          3 │+    - Set({"library//alloc"})
          4 │+    - Set({"library//alloctests"})
          5 │+    - Set({"library//compiler-builtins//compiler-builtins"})
          6 │+    - Set({"library//core"})
          7 │+    - Set({"library//coretests"})
          8 │+    - Set({"library//panic_abort"})
          9 │+    - Set({"library//panic_unwind"})
         10 │+    - Set({"library//proc_macro"})
         11 │+    - Set({"library//rustc-std-workspace-core"})
         12 │+    - Set({"library//std"})
         13 │+    - Set({"library//std_detect"})
         14 │+    - Set({"library//sysroot"})
         15 │+    - Set({"library//test"})
         16 │+    - Set({"library//unwind"})
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_miri' (9252) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_miri' failed in line 66
---- core::builder::cli_paths::tests::x_miri stdout end ----
---- core::builder::cli_paths::tests::x_test stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpbDcKfm
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_test.snap
Snapshot: x_test
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: test
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
   61       │-    - Set({"library/std_detect"})
   62       │-    - Set({"library/sysroot"})
   63       │-    - Set({"library/test"})
   64       │-    - Set({"library/unwind"})
         51 │+    - Set({"library//alloc"})
         52 │+    - Set({"library//alloctests"})
         53 │+    - Set({"library//compiler-builtins//compiler-builtins"})
         54 │+    - Set({"library//core"})
         55 │+    - Set({"library//coretests"})
         56 │+    - Set({"library//panic_abort"})
         57 │+    - Set({"library//panic_unwind"})
         58 │+    - Set({"library//proc_macro"})
         59 │+    - Set({"library//rustc-std-workspace-core"})
         60 │+    - Set({"library//std"})
         61 │+    - Set({"library//std_detect"})
         62 │+    - Set({"library//sysroot"})
         63 │+    - Set({"library//test"})
         64 │+    - Set({"library//unwind"})
   65    65 │ [Test] test::CrateLibrustc
   66    66 │     targets: [x86_64-unknown-linux-gnu]
   67    67 │     - Set({"compiler"})
   68       │-    - Set({"compiler/rustc"})
   69       │-    - Set({"compiler/rustc_abi"})
   70       │-    - Set({"compiler/rustc_arena"})
---
  144   144 │ [Test] test::CrateRustdocJsonTypes
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_test' (7920) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_test' failed in line 66
---- core::builder::cli_paths::tests::x_test stdout end ----
---- core::builder::cli_paths::tests::x_test_library stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpAk2v9M
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_test_library.snap
Snapshot: x_test_library
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: test library
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
   13       │-    - Set({"library/std_detect"})
   14       │-    - Set({"library/sysroot"})
   15       │-    - Set({"library/test"})
   16       │-    - Set({"library/unwind"})
          3 │+    - Set({"library//alloc"})
          4 │+    - Set({"library//alloctests"})
          5 │+    - Set({"library//compiler-builtins//compiler-builtins"})
          6 │+    - Set({"library//core"})
          7 │+    - Set({"library//coretests"})
          8 │+    - Set({"library//panic_abort"})
          9 │+    - Set({"library//panic_unwind"})
         10 │+    - Set({"library//proc_macro"})
         11 │+    - Set({"library//rustc-std-workspace-core"})
         12 │+    - Set({"library//std"})
         13 │+    - Set({"library//std_detect"})
         14 │+    - Set({"library//sysroot"})
         15 │+    - Set({"library//test"})
         16 │+    - Set({"library//unwind"})
   17    17 │ [Test] test::StdarchVerify
   18    18 │     targets: [x86_64-unknown-linux-gnu]
   19    19 │     - Set({"library/stdarch/crates/stdarch-verify"})
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_test_library' (9984) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_test_library' failed in line 66
---- core::builder::cli_paths::tests::x_test_library stdout end ----
---- core::builder::cli_paths::tests::x_test_skip_coverage stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmp7ij4nr
Skipping Suite("tests/coverage") because it is excluded
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_test_skip_coverage.snap
Snapshot: x_test_skip_coverage
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: test --skip=coverage
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
   58       │-    - Set({"library/std_detect"})
   59       │-    - Set({"library/sysroot"})
   60       │-    - Set({"library/test"})
   61       │-    - Set({"library/unwind"})
         48 │+    - Set({"library//alloc"})
         49 │+    - Set({"library//alloctests"})
         50 │+    - Set({"library//compiler-builtins//compiler-builtins"})
         51 │+    - Set({"library//core"})
         52 │+    - Set({"library//coretests"})
         53 │+    - Set({"library//panic_abort"})
         54 │+    - Set({"library//panic_unwind"})
         55 │+    - Set({"library//proc_macro"})
         56 │+    - Set({"library//rustc-std-workspace-core"})
         57 │+    - Set({"library//std"})
         58 │+    - Set({"library//std_detect"})
         59 │+    - Set({"library//sysroot"})
         60 │+    - Set({"library//test"})
         61 │+    - Set({"library//unwind"})
   62    62 │ [Test] test::CrateLibrustc
   63    63 │     targets: [x86_64-unknown-linux-gnu]
   64    64 │     - Set({"compiler"})
   65       │-    - Set({"compiler/rustc"})
   66       │-    - Set({"compiler/rustc_abi"})
   67       │-    - Set({"compiler/rustc_arena"})
---
  141   141 │ [Test] test::CrateRustdocJsonTypes
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_test_skip_coverage' (9740) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_test_skip_coverage' failed in line 66
---- core::builder::cli_paths::tests::x_test_skip_coverage stdout end ----
---- core::builder::cli_paths::tests::x_test_skip_coverage_map stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpAFIBKI
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_test_skip_coverage_map.snap
Snapshot: x_test_skip_coverage_map
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: test --skip=coverage-map
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
   61       │-    - Set({"library/std_detect"})
   62       │-    - Set({"library/sysroot"})
   63       │-    - Set({"library/test"})
   64       │-    - Set({"library/unwind"})
         51 │+    - Set({"library//alloc"})
         52 │+    - Set({"library//alloctests"})
         53 │+    - Set({"library//compiler-builtins//compiler-builtins"})
         54 │+    - Set({"library//core"})
         55 │+    - Set({"library//coretests"})
         56 │+    - Set({"library//panic_abort"})
         57 │+    - Set({"library//panic_unwind"})
         58 │+    - Set({"library//proc_macro"})
         59 │+    - Set({"library//rustc-std-workspace-core"})
         60 │+    - Set({"library//std"})
         61 │+    - Set({"library//std_detect"})
         62 │+    - Set({"library//sysroot"})
         63 │+    - Set({"library//test"})
         64 │+    - Set({"library//unwind"})
   65    65 │ [Test] test::CrateLibrustc
   66    66 │     targets: [x86_64-unknown-linux-gnu]
   67    67 │     - Set({"compiler"})
   68       │-    - Set({"compiler/rustc"})
   69       │-    - Set({"compiler/rustc_abi"})
   70       │-    - Set({"compiler/rustc_arena"})
---
  144   144 │ [Test] test::CrateRustdocJsonTypes
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_test_skip_coverage_map' (4696) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_test_skip_coverage_map' failed in line 66
---- core::builder::cli_paths::tests::x_test_skip_coverage_map stdout end ----
---- core::builder::cli_paths::tests::x_test_skip_coverage_run stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpMEMHsM
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_test_skip_coverage_run.snap
Snapshot: x_test_skip_coverage_run
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: test --skip=coverage-run
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
   61       │-    - Set({"library/std_detect"})
   62       │-    - Set({"library/sysroot"})
   63       │-    - Set({"library/test"})
   64       │-    - Set({"library/unwind"})
         51 │+    - Set({"library//alloc"})
         52 │+    - Set({"library//alloctests"})
         53 │+    - Set({"library//compiler-builtins//compiler-builtins"})
         54 │+    - Set({"library//core"})
         55 │+    - Set({"library//coretests"})
         56 │+    - Set({"library//panic_abort"})
         57 │+    - Set({"library//panic_unwind"})
         58 │+    - Set({"library//proc_macro"})
         59 │+    - Set({"library//rustc-std-workspace-core"})
         60 │+    - Set({"library//std"})
         61 │+    - Set({"library//std_detect"})
         62 │+    - Set({"library//sysroot"})
         63 │+    - Set({"library//test"})
         64 │+    - Set({"library//unwind"})
   65    65 │ [Test] test::CrateLibrustc
   66    66 │     targets: [x86_64-unknown-linux-gnu]
   67    67 │     - Set({"compiler"})
   68       │-    - Set({"compiler/rustc"})
   69       │-    - Set({"compiler/rustc_abi"})
   70       │-    - Set({"compiler/rustc_arena"})
---
  144   144 │ [Test] test::CrateRustdocJsonTypes
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_test_skip_coverage_run' (9700) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_test_skip_coverage_run' failed in line 66
---- core::builder::cli_paths::tests::x_test_skip_coverage_run stdout end ----
---- core::builder::cli_paths::tests::x_test_skip_tests stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpVpaLpu
Skipping Suite("tests/ui") because it is excluded
Skipping Suite("tests/crashes") because it is excluded
Skipping Suite("tests/coverage") because it is excluded
---
Skipping Suite("tests/rustdoc-json") because it is excluded
Skipping Suite("tests/run-make") because it is excluded
Skipping Suite("tests/run-make-cargo") because it is excluded
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_test_skip_tests.snap
Snapshot: x_test_skip_tests
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: test --skip=tests
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
   22       │-    - Set({"library/std_detect"})
   23       │-    - Set({"library/sysroot"})
   24       │-    - Set({"library/test"})
   25       │-    - Set({"library/unwind"})
         12 │+    - Set({"library//alloc"})
         13 │+    - Set({"library//alloctests"})
         14 │+    - Set({"library//compiler-builtins//compiler-builtins"})
         15 │+    - Set({"library//core"})
         16 │+    - Set({"library//coretests"})
         17 │+    - Set({"library//panic_abort"})
         18 │+    - Set({"library//panic_unwind"})
         19 │+    - Set({"library//proc_macro"})
         20 │+    - Set({"library//rustc-std-workspace-core"})
         21 │+    - Set({"library//std"})
         22 │+    - Set({"library//std_detect"})
         23 │+    - Set({"library//sysroot"})
         24 │+    - Set({"library//test"})
         25 │+    - Set({"library//unwind"})
   26    26 │ [Test] test::CrateLibrustc
   27    27 │     targets: [x86_64-unknown-linux-gnu]
   28    28 │     - Set({"compiler"})
   29       │-    - Set({"compiler/rustc"})
   30       │-    - Set({"compiler/rustc_abi"})
   31       │-    - Set({"compiler/rustc_arena"})
---
  105   105 │ [Test] test::CrateRustdocJsonTypes
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_test_skip_tests' (2472) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_test_skip_tests' failed in line 66
---- core::builder::cli_paths::tests::x_test_skip_tests stdout end ----
---- core::builder::cli_paths::tests::x_test_skip_tests_coverage stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpKqv6bd
Skipping Suite("tests/coverage") because it is excluded
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_test_skip_tests_coverage.snap
Snapshot: x_test_skip_tests_coverage
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: test --skip=tests/coverage
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
   58       │-    - Set({"library/std_detect"})
   59       │-    - Set({"library/sysroot"})
   60       │-    - Set({"library/test"})
   61       │-    - Set({"library/unwind"})
         48 │+    - Set({"library//alloc"})
         49 │+    - Set({"library//alloctests"})
         50 │+    - Set({"library//compiler-builtins//compiler-builtins"})
         51 │+    - Set({"library//core"})
         52 │+    - Set({"library//coretests"})
         53 │+    - Set({"library//panic_abort"})
         54 │+    - Set({"library//panic_unwind"})
         55 │+    - Set({"library//proc_macro"})
         56 │+    - Set({"library//rustc-std-workspace-core"})
         57 │+    - Set({"library//std"})
         58 │+    - Set({"library//std_detect"})
         59 │+    - Set({"library//sysroot"})
         60 │+    - Set({"library//test"})
         61 │+    - Set({"library//unwind"})
   62    62 │ [Test] test::CrateLibrustc
   63    63 │     targets: [x86_64-unknown-linux-gnu]
   64    64 │     - Set({"compiler"})
   65       │-    - Set({"compiler/rustc"})
   66       │-    - Set({"compiler/rustc_abi"})
   67       │-    - Set({"compiler/rustc_arena"})
---
  141   141 │ [Test] test::CrateRustdocJsonTypes
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_test_skip_tests_coverage' (6120) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_test_skip_tests_coverage' failed in line 66
---- core::builder::cli_paths::tests::x_test_skip_tests_coverage stdout end ----
---- core::builder::cli_paths::tests::x_test_skip_tests_etc stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpqGelNW
Skipping Suite("tests/ui") because it is excluded
Skipping Suite("tests/crashes") because it is excluded
Skipping Suite("tests/coverage") because it is excluded
---
Skipping Suite("tests/rustdoc-json") because it is excluded
Skipping Suite("tests/run-make") because it is excluded
Skipping Suite("tests/run-make-cargo") because it is excluded
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_test_skip_tests_etc.snap
Snapshot: x_test_skip_tests_etc
Source: D:\a\rust\rust:66
───────────────────────────────────────────────────────────────────────────────
Expression: test --skip=tests --skip=library --skip=tidyselftest
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
   89    89 │ [Test] test::CrateRustdocJsonTypes
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_test_skip_tests_etc' (9980) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.47.2\src\runtime.rs:719:13:
snapshot assertion for 'x_test_skip_tests_etc' failed in line 66
---- core::builder::cli_paths::tests::x_test_skip_tests_etc stdout end ----

failures:
    core::builder::cli_paths::tests::x_build
    core::builder::cli_paths::tests::x_build_compiler
    core::builder::cli_paths::tests::x_bench
---
Bootstrap failed while executing `test --stage 2 --skip=tests --skip=library --skip=tidyselftest --skip=src/tools/linkchecker`
Currently active steps:
test::Bootstrap {  } at src\bootstrap\src\core\build_steps\test.rs:3954
Build completed unsuccessfully in 0:07:06
make: *** [Makefile:117: ci-msvc-ps1] Error 1
  local time: Sun Aug  2 11:10:39 CUT 2026
  network time: Sun, 02 Aug 2026 11:10:39 GMT
##[error]Process completed with exit code 2.
##[group]Run echo "disk usage:"
echo "disk usage:"

@JonathanBrouwer

Copy link
Copy Markdown
Contributor Author

@bors try cancel

@rust-bors rust-bors Bot added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Aug 2, 2026
@rust-bors

rust-bors Bot commented Aug 2, 2026

Copy link
Copy Markdown
Contributor

This pull request was unapproved due to being closed.

@rust-bors

rust-bors Bot commented Aug 2, 2026

Copy link
Copy Markdown
Contributor

Try build cancelled. Cancelled workflows:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

F-explicit_tail_calls `#![feature(explicit_tail_calls)]` rollup A PR which is a rollup S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. T-rustdoc-frontend Relevant to the rustdoc-frontend team, which will review and decide on the web UI/UX output.

Projects

None yet

Development

Successfully merging this pull request may close these issues.