Skip to content

Conversation

@Zalathar
Copy link
Member

@Zalathar Zalathar commented Nov 11, 2025

Successful merges:

r? @ghost
@rustbot modify labels: rollup

Create a similar rollup

JohnTitor and others added 30 commits October 22, 2025 21:11
async functions are disallowed (because `-> impl Trait` is not supported). `const` entry functions are allowed, nonsecure-call functions must be function pointers, which cannot be evaluated during constant evaluation.
epoll: unblock threads when new interest is registered
This updates the rust-version file to 8401398.
Pull recent changes from https://github.com/rust-lang/rust via Josh.

Upstream ref: 8401398
Filtered ref: 9c097c092eaa8dd786fa7c138a3ecd67b4568d00
Upstream diff: rust-lang/rust@ceb7df7...8401398

This merge was created using https://github.com/rust-lang/josh-sync.
epoll: do proper edge detection inside the epoll system
It has been removed 9 months ago, which is more than a few months.
bootstrap: Add snapshot tests for path-to-step handling

This PR adds a suite of snapshot tests for how bootstrap translates command-line “paths” (which are not necessarily actual paths) into a set of top-level steps to execute.

Unlike the existing suite of snapshot tests (for transitive step logging), I decided to use `.snap` files over inline snapshots, because I find that inline snapshots quickly make test files impossible to navigate. Instead, I set up a macro that makes it relatively easy to add or modify test cases.

Using `.snap` files also means that the tests can be blessed by setting `INSTA_UPDATE=always`, without necessarily needing the `cargo insta` tool installed, though the tool can still be used instead if desired.

These snapshot tests capture _current_ behavior, to prevent unintended changes or regressions. If the current behavior is wrong or undersirable, then any fix will necessarily have to re-bless the affected tests!

r? Kobzol
Update git index before running diff-index

Discussed in https://rust-lang.zulipchat.com/#narrow/channel/326414-t-infra.2Fbootstrap/topic/tidy.3A.20strange.20number.20of.20modified.20files/with/553714742.

This is apparently the cause of `x test tidy` printing weird number of formatted files, and also of sometimes quirky behavior of finding the files modified from a base commit.
…davidtwco

cmse: add test for `async` and `const` functions

tracking issue: rust-lang#81391
tracking issue: rust-lang#75835

Some additional tests that seemed useful while working on the RFC text.

`async` functions are disallowed (because `-> impl Trait` is not supported).

`const` entry functions are allowed, `nonsecure-call` does not make sense, because this abi can only be used on function pointers, which cannot be evaluated during constant evaluation.

The async test is in the `c-variadic.rs` file because it has the minicore-compatible machinery for defining an async function. Splitting that logic out (like `minisimd.rs`) turns out to be complicated because the async stuff relies on types defined by minicore.

r? ```@davidtwco```
…kingjubilee

implement `feature(c_variadic_naked_functions)`

tracking issue: rust-lang#148767

[#t-lang > C-variadic naked functions](https://rust-lang.zulipchat.com/#narrow/channel/213817-t-lang/topic/C-variadic.20naked.20functions/with/554593886)

This feature allows naked c-variadic function definitions with any ABI that is supported for foreign c-variadic functions.

```rust
#![feature(c_variadic, c_variadic_naked_functions)]

#[unsafe(naked)]
unsafe extern "win64" fn variadic_win64(_: u32, _: ...) -> u32 {
    core::arch::naked_asm!(
        r#"
        push    rax
        mov     qword ptr [rsp + 40], r9
        mov     qword ptr [rsp + 24], rdx
        mov     qword ptr [rsp + 32], r8
        lea     rax, [rsp + 40]
        mov     qword ptr [rsp], rax
        lea     eax, [rdx + rcx]
        add     eax, r8d
        pop     rcx
        ret
    "#,
    )
}
```

r? ``@workingjubilee``
Remove specialized warning for removed target

It has been removed 9 months ago, which is more than a few months.
miri subtree update

Lands the new avx512 support for zlib-rs, and the epoll fixes for Tokio.

Subtree update of `miri` to rust-lang/miri@667796b.

Created using https://github.com/rust-lang/josh-sync.

r? ``@ghost``
Remove more `#[must_use]` from portable-simd

These lines were missed in <https://github.com/rust-lang/rust/commit/f3515fb127ae07f1b13340dde0c61a20291eb304>/rust-lang/rust#136923 because core_simd/src/masks/bitmask.rs is only conditionally compiled.

https://github.com/rust-lang/rust/blob/25d319a0f656ee8faa7a534da299e76e96068a40/library/portable-simd/crates/core_simd/src/masks.rs#L9-L13

Removing them unblocks bootstrapping rustc in an environment where avx512f is enabled. Without this change:

```console
error: `#[must_use]` attribute cannot be used on trait methods in impl blocks
   --> library/core/src/../../portable-simd/crates/core_simd/src/masks/bitmask.rs:173:5
    |
173 |     #[must_use = "method returns a new mask and does not mutate the original value"]
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = help: `#[must_use]` can be applied to data types, functions, unions, required trait methods, provided trait methods, inherent methods, foreign functions, and traits
    = note: `-D unused-attributes` implied by `-D warnings`
    = help: to override `-D warnings` add `#[allow(unused_attributes)]`
```

To reproduce:

`RUSTC_BOOTSTRAP=1 RUSTFLAGS=-Ctarget-feature=+avx512f cargo +nightly check --manifest-path=library/portable-simd/crates/core_simd/Cargo.toml --target=x86_64-unknown-linux-gnu --no-default-features`
@rustbot rustbot added A-testsuite Area: The testsuite used to check the correctness of rustc 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-clippy Relevant to the Clippy team. 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. rollup A PR which is a rollup labels Nov 11, 2025
@Zalathar
Copy link
Member Author

Rollup of everything.

@bors r+ rollup=never p=5

@bors
Copy link
Collaborator

bors commented Nov 11, 2025

📌 Commit da6f7ce has been approved by Zalathar

It is now in the queue for this repository.

@bors bors 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 Nov 11, 2025
@bors
Copy link
Collaborator

bors commented Nov 12, 2025

⌛ Testing commit da6f7ce with merge a5bd88a...

bors added a commit that referenced this pull request Nov 12, 2025
Rollup of 12 pull requests

Successful merges:

 - #146627 (Simplify `jemalloc` setup)
 - #147753 (Suggest add bounding value for RangeTo)
 - #147974 (Improve diagnostics for buffer reuse with borrowed references)
 - #148080 ([rustdoc] Fix invalid jump to def macro link generation)
 - #148424 (bootstrap: Add snapshot tests for path-to-step handling)
 - #148500 (Update git index before running diff-index)
 - #148536 (cmse: add test for `async` and `const` functions)
 - #148770 (implement `feature(c_variadic_naked_functions)`)
 - #148819 (Remove specialized warning for removed target)
 - #148830 (miri subtree update)
 - #148833 (Update rustbook dependencies)
 - #148841 (Remove more `#[must_use]` from portable-simd)

r? `@ghost`
`@rustbot` modify labels: rollup
@rust-log-analyzer
Copy link
Collaborator

The job x86_64-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)
     Running unittests src\lib.rs (build\x86_64-pc-windows-msvc\bootstrap-tools\x86_64-pc-windows-msvc\debug\deps\bootstrap-01fe045bf96eb6f9.exe)

running 233 tests
test core::build_steps::setup::tests::check_matching_settings_hash ... ok
test core::builder::cli_paths::tests::no_unused_snapshots ... ok
test core::builder::cli_paths::tests::x_build_llvm ... ok
test core::builder::cli_paths::tests::x_build_compiletest ... ok
test core::builder::cli_paths::tests::x_build ... FAILED
test core::builder::cli_paths::tests::x_build_compiler ... FAILED
test core::builder::cli_paths::tests::x_build_rustc_llvm ... FAILED
test core::builder::cli_paths::tests::x_build_rustc ... ok
test core::builder::cli_paths::tests::x_check ... FAILED
test core::builder::cli_paths::tests::x_build_rustdoc ... ok
test core::builder::cli_paths::tests::x_check_compiler ... FAILED
test core::builder::cli_paths::tests::x_check_bootstrap ... ok
test core::builder::cli_paths::tests::x_check_compiletest ... ok
test core::builder::cli_paths::tests::x_check_compiletest_include_default_paths ... FAILED
test core::builder::cli_paths::tests::x_check_rustc ... FAILED
test core::builder::cli_paths::tests::x_check_library ... FAILED
test core::builder::cli_paths::tests::x_check_rustdoc ... ok
test core::builder::cli_paths::tests::x_dist ... ok
test core::builder::cli_paths::tests::x_test ... FAILED
test core::builder::cli_paths::tests::x_test_coverage ... ok
test core::builder::cli_paths::tests::x_test_coverage_map ... ok
test core::builder::cli_paths::tests::x_test_coverage_run ... ok
test core::builder::cli_paths::tests::x_test_coverage_skip_coverage_run ... ok
test core::builder::cli_paths::tests::x_test_debuginfo ... ok
test core::builder::cli_paths::tests::x_test_librustdoc ... ok
test core::builder::cli_paths::tests::x_test_librustdoc_rustdoc ... ok
test core::builder::cli_paths::tests::x_test_rustdoc ... ok
test core::builder::cli_paths::tests::x_test_skip_coverage ... FAILED
test core::builder::cli_paths::tests::x_test_skip_tests ... FAILED
test core::builder::cli_paths::tests::x_test_skip_tests_etc ... FAILED
test core::builder::cli_paths::tests::x_test_tests_skip_coverage ... ok
test core::builder::cli_paths::tests::x_test_tests ... ok
test core::builder::cli_paths::tests::x_test_tests_ui ... ok
test core::builder::tests::any_debug ... ok
test core::builder::cli_paths::tests::x_test_tidy ... ok
test core::builder::tests::check_missing_paths_for_x_test_tests ... ok
test core::builder::cli_paths::tests::x_test_tidyselftest ... ok
test core::builder::cli_paths::tests::x_test_ui ... ok
---

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

thread 'core::builder::cli_paths::tests::x_build' (700) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679:13:
snapshot assertion for 'x_build' failed in line 64
stack backtrace:
   0: std::panicking::panic_handler
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\std\src\panicking.rs:698
   1: core::panicking::panic_fmt
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\panicking.rs:80
   2: insta::runtime::SnapshotAssertionContext::finalize
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679
   3: insta::runtime::assert_snapshot
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:848
   4: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure$0
             at .\src\core\builder\cli_paths\tests.rs:64
   5: insta::settings::Settings::bind<bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure_env$0,tuple$<> >
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\settings.rs:509
   6: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner
             at .\src\core\builder\cli_paths\tests.rs:63
   7: bootstrap::core::builder::cli_paths::tests::x_build
             at .\src\core\builder\cli_paths\tests.rs:106
   8: bootstrap::core::builder::cli_paths::tests::x_build::closure$0
             at .\src\core\builder\cli_paths\tests.rs:105
   9: core::ops::function::FnOnce::call_once<bootstrap::core::builder::cli_paths::tests::x_build::closure_env$0,tuple$<> >
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f\library\core\src\ops\function.rs:250
  10: core::ops::function::FnOnce::call_once
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\ops\function.rs:250
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose 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\.tmpqGf6i2
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 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:64
───────────────────────────────────────────────────────────────────────────────
Expression: build compiler
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
   79    79 │     - Set({build::compiler/rustc})
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_build_compiler' (3588) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679:13:
snapshot assertion for 'x_build_compiler' failed in line 64
stack backtrace:
   0: std::panicking::panic_handler
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\std\src\panicking.rs:698
   1: core::panicking::panic_fmt
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\panicking.rs:80
   2: insta::runtime::SnapshotAssertionContext::finalize
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679
   3: insta::runtime::assert_snapshot
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:848
   4: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure$0
             at .\src\core\builder\cli_paths\tests.rs:64
   5: insta::settings::Settings::bind<bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure_env$0,tuple$<> >
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\settings.rs:509
   6: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner
             at .\src\core\builder\cli_paths\tests.rs:63
   7: bootstrap::core::builder::cli_paths::tests::x_build_compiler
             at .\src\core\builder\cli_paths\tests.rs:106
   8: bootstrap::core::builder::cli_paths::tests::x_build_compiler::closure$0
             at .\src\core\builder\cli_paths\tests.rs:105
   9: core::ops::function::FnOnce::call_once<bootstrap::core::builder::cli_paths::tests::x_build_compiler::closure_env$0,tuple$<> >
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f\library\core\src\ops\function.rs:250
  10: core::ops::function::FnOnce::call_once
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\ops\function.rs:250
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
---- core::builder::cli_paths::tests::x_build_compiler stdout end ----
---- core::builder::cli_paths::tests::x_build_rustc_llvm stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpexxbGd
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 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:64
───────────────────────────────────────────────────────────────────────────────
Expression: build rustc_llvm
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
          2 │+    - Set({build::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' (868) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679:13:
snapshot assertion for 'x_build_rustc_llvm' failed in line 64
stack backtrace:
   0: std::panicking::panic_handler
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\std\src\panicking.rs:698
   1: core::panicking::panic_fmt
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\panicking.rs:80
   2: insta::runtime::SnapshotAssertionContext::finalize
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679
   3: insta::runtime::assert_snapshot
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:848
   4: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure$0
             at .\src\core\builder\cli_paths\tests.rs:64
   5: insta::settings::Settings::bind<bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure_env$0,tuple$<> >
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\settings.rs:509
   6: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner
             at .\src\core\builder\cli_paths\tests.rs:63
   7: bootstrap::core::builder::cli_paths::tests::x_build_rustc_llvm
             at .\src\core\builder\cli_paths\tests.rs:106
   8: bootstrap::core::builder::cli_paths::tests::x_build_rustc_llvm::closure$0
             at .\src\core\builder\cli_paths\tests.rs:105
   9: core::ops::function::FnOnce::call_once<bootstrap::core::builder::cli_paths::tests::x_build_rustc_llvm::closure_env$0,tuple$<> >
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f\library\core\src\ops\function.rs:250
  10: core::ops::function::FnOnce::call_once
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\ops\function.rs:250
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
---- 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\.tmp9sBgm1
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_check.snap
Snapshot: x_check
Source: D:\a\rust\rust:64
───────────────────────────────────────────────────────────────────────────────
Expression: check
───────────────────────────────────────────────────────────────────────────────
-old snapshot
+new results
────────────┬──────────────────────────────────────────────────────────────────
    0     0 │ [Check] check::Rustc
    1     1 │     targets: [x86_64-unknown-linux-gnu]
    2     2 │     - Set({check::compiler})
    3       │-    - Set({check::compiler/rustc})
    4       │-    - Set({check::compiler/rustc_abi})
    5       │-    - Set({check::compiler/rustc_arena})
    6       │-    - Set({check::compiler/rustc_ast})
    7       │-    - Set({check::compiler/rustc_ast_ir})
    8       │-    - Set({check::compiler/rustc_ast_lowering})
    9       │-    - Set({check::compiler/rustc_ast_passes})
   10       │-    - Set({check::compiler/rustc_ast_pretty})
   11       │-    - Set({check::compiler/rustc_attr_parsing})
   12       │-    - Set({check::compiler/rustc_baked_icu_data})
   13       │-    - Set({check::compiler/rustc_borrowck})
   14       │-    - Set({check::compiler/rustc_builtin_macros})
   15       │-    - Set({check::compiler/rustc_codegen_llvm})
   16       │-    - Set({check::compiler/rustc_codegen_ssa})
   17       │-    - Set({check::compiler/rustc_const_eval})
   18       │-    - Set({check::compiler/rustc_data_structures})
   19       │-    - Set({check::compiler/rustc_driver})
   20       │-    - Set({check::compiler/rustc_driver_impl})
   21       │-    - Set({check::compiler/rustc_error_codes})
   22       │-    - Set({check::compiler/rustc_error_messages})
   23       │-    - Set({check::compiler/rustc_errors})
   24       │-    - Set({check::compiler/rustc_expand})
   25       │-    - Set({check::compiler/rustc_feature})
   26       │-    - Set({check::compiler/rustc_fluent_macro})
   27       │-    - Set({check::compiler/rustc_fs_util})
   28       │-    - Set({check::compiler/rustc_graphviz})
   29       │-    - Set({check::compiler/rustc_hashes})
   30       │-    - Set({check::compiler/rustc_hir})
   31       │-    - Set({check::compiler/rustc_hir_analysis})
   32       │-    - Set({check::compiler/rustc_hir_id})
   33       │-    - Set({check::compiler/rustc_hir_pretty})
   34       │-    - Set({check::compiler/rustc_hir_typeck})
   35       │-    - Set({check::compiler/rustc_incremental})
   36       │-    - Set({check::compiler/rustc_index})
   37       │-    - Set({check::compiler/rustc_index_macros})
   38       │-    - Set({check::compiler/rustc_infer})
   39       │-    - Set({check::compiler/rustc_interface})
   40       │-    - Set({check::compiler/rustc_lexer})
   41       │-    - Set({check::compiler/rustc_lint})
   42       │-    - Set({check::compiler/rustc_lint_defs})
   43       │-    - Set({check::compiler/rustc_llvm})
   44       │-    - Set({check::compiler/rustc_log})
   45       │-    - Set({check::compiler/rustc_macros})
   46       │-    - Set({check::compiler/rustc_metadata})
   47       │-    - Set({check::compiler/rustc_middle})
   48       │-    - Set({check::compiler/rustc_mir_build})
   49       │-    - Set({check::compiler/rustc_mir_dataflow})
   50       │-    - Set({check::compiler/rustc_mir_transform})
   51       │-    - Set({check::compiler/rustc_monomorphize})
   52       │-    - Set({check::compiler/rustc_next_trait_solver})
   53       │-    - Set({check::compiler/rustc_parse})
   54       │-    - Set({check::compiler/rustc_parse_format})
   55       │-    - Set({check::compiler/rustc_passes})
   56       │-    - Set({check::compiler/rustc_pattern_analysis})
   57       │-    - Set({check::compiler/rustc_privacy})
   58       │-    - Set({check::compiler/rustc_proc_macro})
   59       │-    - Set({check::compiler/rustc_public})
   60       │-    - Set({check::compiler/rustc_public_bridge})
   61       │-    - Set({check::compiler/rustc_query_impl})
   62       │-    - Set({check::compiler/rustc_query_system})
   63       │-    - Set({check::compiler/rustc_resolve})
   64       │-    - Set({check::compiler/rustc_sanitizers})
   65       │-    - Set({check::compiler/rustc_serialize})
   66       │-    - Set({check::compiler/rustc_session})
   67       │-    - Set({check::compiler/rustc_span})
   68       │-    - Set({check::compiler/rustc_symbol_mangling})
   69       │-    - Set({check::compiler/rustc_target})
   70       │-    - Set({check::compiler/rustc_thread_pool})
   71       │-    - Set({check::compiler/rustc_trait_selection})
   72       │-    - Set({check::compiler/rustc_traits})
   73       │-    - Set({check::compiler/rustc_transmute})
   74       │-    - Set({check::compiler/rustc_ty_utils})
   75       │-    - Set({check::compiler/rustc_type_ir})
   76       │-    - Set({check::compiler/rustc_type_ir_macros})
   77       │-    - Set({check::compiler/rustc_windows_rc})
          3 │+    - Set({check::compiler\rustc})
          4 │+    - Set({check::compiler\rustc_abi})
          5 │+    - Set({check::compiler\rustc_arena})
          6 │+    - Set({check::compiler\rustc_ast})
          7 │+    - Set({check::compiler\rustc_ast_ir})
          8 │+    - Set({check::compiler\rustc_ast_lowering})
          9 │+    - Set({check::compiler\rustc_ast_passes})
         10 │+    - Set({check::compiler\rustc_ast_pretty})
         11 │+    - Set({check::compiler\rustc_attr_parsing})
         12 │+    - Set({check::compiler\rustc_baked_icu_data})
         13 │+    - Set({check::compiler\rustc_borrowck})
         14 │+    - Set({check::compiler\rustc_builtin_macros})
         15 │+    - Set({check::compiler\rustc_codegen_llvm})
         16 │+    - Set({check::compiler\rustc_codegen_ssa})
         17 │+    - Set({check::compiler\rustc_const_eval})
         18 │+    - Set({check::compiler\rustc_data_structures})
         19 │+    - Set({check::compiler\rustc_driver})
         20 │+    - Set({check::compiler\rustc_driver_impl})
         21 │+    - Set({check::compiler\rustc_error_codes})
         22 │+    - Set({check::compiler\rustc_error_messages})
         23 │+    - Set({check::compiler\rustc_errors})
         24 │+    - Set({check::compiler\rustc_expand})
         25 │+    - Set({check::compiler\rustc_feature})
         26 │+    - Set({check::compiler\rustc_fluent_macro})
         27 │+    - Set({check::compiler\rustc_fs_util})
         28 │+    - Set({check::compiler\rustc_graphviz})
         29 │+    - Set({check::compiler\rustc_hashes})
         30 │+    - Set({check::compiler\rustc_hir})
         31 │+    - Set({check::compiler\rustc_hir_analysis})
         32 │+    - Set({check::compiler\rustc_hir_id})
         33 │+    - Set({check::compiler\rustc_hir_pretty})
         34 │+    - Set({check::compiler\rustc_hir_typeck})
         35 │+    - Set({check::compiler\rustc_incremental})
         36 │+    - Set({check::compiler\rustc_index})
         37 │+    - Set({check::compiler\rustc_index_macros})
         38 │+    - Set({check::compiler\rustc_infer})
         39 │+    - Set({check::compiler\rustc_interface})
         40 │+    - Set({check::compiler\rustc_lexer})
         41 │+    - Set({check::compiler\rustc_lint})
         42 │+    - Set({check::compiler\rustc_lint_defs})
         43 │+    - Set({check::compiler\rustc_llvm})
         44 │+    - Set({check::compiler\rustc_log})
         45 │+    - Set({check::compiler\rustc_macros})
         46 │+    - Set({check::compiler\rustc_metadata})
         47 │+    - Set({check::compiler\rustc_middle})
         48 │+    - Set({check::compiler\rustc_mir_build})
         49 │+    - Set({check::compiler\rustc_mir_dataflow})
         50 │+    - Set({check::compiler\rustc_mir_transform})
         51 │+    - Set({check::compiler\rustc_monomorphize})
         52 │+    - Set({check::compiler\rustc_next_trait_solver})
         53 │+    - Set({check::compiler\rustc_parse})
         54 │+    - Set({check::compiler\rustc_parse_format})
         55 │+    - Set({check::compiler\rustc_passes})
         56 │+    - Set({check::compiler\rustc_pattern_analysis})
         57 │+    - Set({check::compiler\rustc_privacy})
         58 │+    - Set({check::compiler\rustc_proc_macro})
         59 │+    - Set({check::compiler\rustc_public})
         60 │+    - Set({check::compiler\rustc_public_bridge})
         61 │+    - Set({check::compiler\rustc_query_impl})
         62 │+    - Set({check::compiler\rustc_query_system})
         63 │+    - Set({check::compiler\rustc_resolve})
         64 │+    - Set({check::compiler\rustc_sanitizers})
         65 │+    - Set({check::compiler\rustc_serialize})
         66 │+    - Set({check::compiler\rustc_session})
         67 │+    - Set({check::compiler\rustc_span})
         68 │+    - Set({check::compiler\rustc_symbol_mangling})
         69 │+    - Set({check::compiler\rustc_target})
         70 │+    - Set({check::compiler\rustc_thread_pool})
         71 │+    - Set({check::compiler\rustc_trait_selection})
         72 │+    - Set({check::compiler\rustc_traits})
         73 │+    - Set({check::compiler\rustc_transmute})
         74 │+    - Set({check::compiler\rustc_ty_utils})
         75 │+    - Set({check::compiler\rustc_type_ir})
         76 │+    - Set({check::compiler\rustc_type_ir_macros})
         77 │+    - Set({check::compiler\rustc_windows_rc})
   78    78 │ [Check] check::Rustdoc
   79    79 │     targets: [x86_64-unknown-linux-gnu]
   80    80 │     - Set({check::src/librustdoc, check::src/tools/rustdoc})
   81    81 │ [Check] check::CraneliftCodegenBackend
┈┈┈┈┈┈┈┈┈┈┈┈┼┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈
  112   112 │     - Set({check::src/tools/features-status-dump})
  113   113 │ [Check] check::Std
  114   114 │     targets: [aarch64-unknown-linux-gnu]
  115   115 │     - Set({check::library})
  116       │-    - Set({check::library/alloc})
  117       │-    - Set({check::library/alloctests})
  118       │-    - Set({check::library/compiler-builtins/compiler-builtins})
  119       │-    - Set({check::library/core})
  120       │-    - Set({check::library/coretests})
  121       │-    - Set({check::library/panic_abort})
  122       │-    - Set({check::library/panic_unwind})
  123       │-    - Set({check::library/proc_macro})
  124       │-    - Set({check::library/rustc-std-workspace-core})
  125       │-    - Set({check::library/std})
  126       │-    - Set({check::library/std_detect})
  127       │-    - Set({check::library/sysroot})
  128       │-    - Set({check::library/test})
  129       │-    - Set({check::library/unwind})
        116 │+    - Set({check::library\alloc})
        117 │+    - Set({check::library\alloctests})
        118 │+    - Set({check::library\compiler-builtins\compiler-builtins})
        119 │+    - Set({check::library\core})
        120 │+    - Set({check::library\coretests})
        121 │+    - Set({check::library\panic_abort})
        122 │+    - Set({check::library\panic_unwind})
        123 │+    - Set({check::library\proc_macro})
        124 │+    - Set({check::library\rustc-std-workspace-core})
        125 │+    - Set({check::library\std})
        126 │+    - Set({check::library\std_detect})
        127 │+    - Set({check::library\sysroot})
        128 │+    - Set({check::library\test})
        129 │+    - Set({check::library\unwind})
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_check' (3668) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679:13:
snapshot assertion for 'x_check' failed in line 64
stack backtrace:
   0: std::panicking::panic_handler
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\std\src\panicking.rs:698
   1: core::panicking::panic_fmt
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\panicking.rs:80
   2: insta::runtime::SnapshotAssertionContext::finalize
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679
   3: insta::runtime::assert_snapshot
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:848
   4: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure$0
             at .\src\core\builder\cli_paths\tests.rs:64
   5: insta::settings::Settings::bind<bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure_env$0,tuple$<> >
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\settings.rs:509
   6: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner
             at .\src\core\builder\cli_paths\tests.rs:63
   7: bootstrap::core::builder::cli_paths::tests::x_check
             at .\src\core\builder\cli_paths\tests.rs:106
   8: bootstrap::core::builder::cli_paths::tests::x_check::closure$0
             at .\src\core\builder\cli_paths\tests.rs:105
   9: core::ops::function::FnOnce::call_once<bootstrap::core::builder::cli_paths::tests::x_check::closure_env$0,tuple$<> >
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f\library\core\src\ops\function.rs:250
  10: core::ops::function::FnOnce::call_once
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\ops\function.rs:250
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
---- core::builder::cli_paths::tests::x_check stdout end ----
---- core::builder::cli_paths::tests::x_check_compiler stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpOkYfsH
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 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:64
───────────────────────────────────────────────────────────────────────────────
Expression: check compiler
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
         77 │+    - Set({check::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' (6072) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679:13:
snapshot assertion for 'x_check_compiler' failed in line 64
stack backtrace:
   0: std::panicking::panic_handler
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\std\src\panicking.rs:698
   1: core::panicking::panic_fmt
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\panicking.rs:80
   2: insta::runtime::SnapshotAssertionContext::finalize
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679
   3: insta::runtime::assert_snapshot
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:848
   4: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure$0
             at .\src\core\builder\cli_paths\tests.rs:64
   5: insta::settings::Settings::bind<bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure_env$0,tuple$<> >
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\settings.rs:509
   6: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner
             at .\src\core\builder\cli_paths\tests.rs:63
   7: bootstrap::core::builder::cli_paths::tests::x_check_compiler
             at .\src\core\builder\cli_paths\tests.rs:106
   8: bootstrap::core::builder::cli_paths::tests::x_check_compiler::closure$0
             at .\src\core\builder\cli_paths\tests.rs:105
   9: core::ops::function::FnOnce::call_once<bootstrap::core::builder::cli_paths::tests::x_check_compiler::closure_env$0,tuple$<> >
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f\library\core\src\ops\function.rs:250
  10: core::ops::function::FnOnce::call_once
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\ops\function.rs:250
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
---- core::builder::cli_paths::tests::x_check_compiler stdout end ----
---- core::builder::cli_paths::tests::x_check_compiletest_include_default_paths stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpD5X60V
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 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:64
───────────────────────────────────────────────────────────────────────────────
Expression: check compiletest --include-default-paths
───────────────────────────────────────────────────────────────────────────────
-old snapshot
+new results
────────────┬──────────────────────────────────────────────────────────────────
    0     0 │ [Check] check::Rustc
    1     1 │     targets: [x86_64-unknown-linux-gnu]
    2     2 │     - Set({check::compiler})
    3       │-    - Set({check::compiler/rustc})
    4       │-    - Set({check::compiler/rustc_abi})
    5       │-    - Set({check::compiler/rustc_arena})
    6       │-    - Set({check::compiler/rustc_ast})
    7       │-    - Set({check::compiler/rustc_ast_ir})
    8       │-    - Set({check::compiler/rustc_ast_lowering})
    9       │-    - Set({check::compiler/rustc_ast_passes})
   10       │-    - Set({check::compiler/rustc_ast_pretty})
   11       │-    - Set({check::compiler/rustc_attr_parsing})
   12       │-    - Set({check::compiler/rustc_baked_icu_data})
   13       │-    - Set({check::compiler/rustc_borrowck})
   14       │-    - Set({check::compiler/rustc_builtin_macros})
   15       │-    - Set({check::compiler/rustc_codegen_llvm})
   16       │-    - Set({check::compiler/rustc_codegen_ssa})
   17       │-    - Set({check::compiler/rustc_const_eval})
   18       │-    - Set({check::compiler/rustc_data_structures})
   19       │-    - Set({check::compiler/rustc_driver})
   20       │-    - Set({check::compiler/rustc_driver_impl})
   21       │-    - Set({check::compiler/rustc_error_codes})
   22       │-    - Set({check::compiler/rustc_error_messages})
   23       │-    - Set({check::compiler/rustc_errors})
   24       │-    - Set({check::compiler/rustc_expand})
   25       │-    - Set({check::compiler/rustc_feature})
   26       │-    - Set({check::compiler/rustc_fluent_macro})
   27       │-    - Set({check::compiler/rustc_fs_util})
   28       │-    - Set({check::compiler/rustc_graphviz})
   29       │-    - Set({check::compiler/rustc_hashes})
   30       │-    - Set({check::compiler/rustc_hir})
   31       │-    - Set({check::compiler/rustc_hir_analysis})
   32       │-    - Set({check::compiler/rustc_hir_id})
   33       │-    - Set({check::compiler/rustc_hir_pretty})
   34       │-    - Set({check::compiler/rustc_hir_typeck})
   35       │-    - Set({check::compiler/rustc_incremental})
   36       │-    - Set({check::compiler/rustc_index})
   37       │-    - Set({check::compiler/rustc_index_macros})
   38       │-    - Set({check::compiler/rustc_infer})
   39       │-    - Set({check::compiler/rustc_interface})
   40       │-    - Set({check::compiler/rustc_lexer})
   41       │-    - Set({check::compiler/rustc_lint})
   42       │-    - Set({check::compiler/rustc_lint_defs})
   43       │-    - Set({check::compiler/rustc_llvm})
   44       │-    - Set({check::compiler/rustc_log})
   45       │-    - Set({check::compiler/rustc_macros})
   46       │-    - Set({check::compiler/rustc_metadata})
   47       │-    - Set({check::compiler/rustc_middle})
   48       │-    - Set({check::compiler/rustc_mir_build})
   49       │-    - Set({check::compiler/rustc_mir_dataflow})
   50       │-    - Set({check::compiler/rustc_mir_transform})
   51       │-    - Set({check::compiler/rustc_monomorphize})
   52       │-    - Set({check::compiler/rustc_next_trait_solver})
   53       │-    - Set({check::compiler/rustc_parse})
   54       │-    - Set({check::compiler/rustc_parse_format})
   55       │-    - Set({check::compiler/rustc_passes})
   56       │-    - Set({check::compiler/rustc_pattern_analysis})
   57       │-    - Set({check::compiler/rustc_privacy})
   58       │-    - Set({check::compiler/rustc_proc_macro})
   59       │-    - Set({check::compiler/rustc_public})
   60       │-    - Set({check::compiler/rustc_public_bridge})
   61       │-    - Set({check::compiler/rustc_query_impl})
   62       │-    - Set({check::compiler/rustc_query_system})
   63       │-    - Set({check::compiler/rustc_resolve})
   64       │-    - Set({check::compiler/rustc_sanitizers})
   65       │-    - Set({check::compiler/rustc_serialize})
   66       │-    - Set({check::compiler/rustc_session})
   67       │-    - Set({check::compiler/rustc_span})
   68       │-    - Set({check::compiler/rustc_symbol_mangling})
   69       │-    - Set({check::compiler/rustc_target})
   70       │-    - Set({check::compiler/rustc_thread_pool})
   71       │-    - Set({check::compiler/rustc_trait_selection})
   72       │-    - Set({check::compiler/rustc_traits})
   73       │-    - Set({check::compiler/rustc_transmute})
   74       │-    - Set({check::compiler/rustc_ty_utils})
   75       │-    - Set({check::compiler/rustc_type_ir})
   76       │-    - Set({check::compiler/rustc_type_ir_macros})
   77       │-    - Set({check::compiler/rustc_windows_rc})
          3 │+    - Set({check::compiler\rustc})
          4 │+    - Set({check::compiler\rustc_abi})
          5 │+    - Set({check::compiler\rustc_arena})
          6 │+    - Set({check::compiler\rustc_ast})
          7 │+    - Set({check::compiler\rustc_ast_ir})
          8 │+    - Set({check::compiler\rustc_ast_lowering})
          9 │+    - Set({check::compiler\rustc_ast_passes})
         10 │+    - Set({check::compiler\rustc_ast_pretty})
         11 │+    - Set({check::compiler\rustc_attr_parsing})
         12 │+    - Set({check::compiler\rustc_baked_icu_data})
         13 │+    - Set({check::compiler\rustc_borrowck})
         14 │+    - Set({check::compiler\rustc_builtin_macros})
         15 │+    - Set({check::compiler\rustc_codegen_llvm})
         16 │+    - Set({check::compiler\rustc_codegen_ssa})
         17 │+    - Set({check::compiler\rustc_const_eval})
         18 │+    - Set({check::compiler\rustc_data_structures})
         19 │+    - Set({check::compiler\rustc_driver})
         20 │+    - Set({check::compiler\rustc_driver_impl})
         21 │+    - Set({check::compiler\rustc_error_codes})
         22 │+    - Set({check::compiler\rustc_error_messages})
         23 │+    - Set({check::compiler\rustc_errors})
         24 │+    - Set({check::compiler\rustc_expand})
         25 │+    - Set({check::compiler\rustc_feature})
         26 │+    - Set({check::compiler\rustc_fluent_macro})
         27 │+    - Set({check::compiler\rustc_fs_util})
         28 │+    - Set({check::compiler\rustc_graphviz})
         29 │+    - Set({check::compiler\rustc_hashes})
         30 │+    - Set({check::compiler\rustc_hir})
         31 │+    - Set({check::compiler\rustc_hir_analysis})
         32 │+    - Set({check::compiler\rustc_hir_id})
         33 │+    - Set({check::compiler\rustc_hir_pretty})
         34 │+    - Set({check::compiler\rustc_hir_typeck})
         35 │+    - Set({check::compiler\rustc_incremental})
         36 │+    - Set({check::compiler\rustc_index})
         37 │+    - Set({check::compiler\rustc_index_macros})
         38 │+    - Set({check::compiler\rustc_infer})
         39 │+    - Set({check::compiler\rustc_interface})
         40 │+    - Set({check::compiler\rustc_lexer})
         41 │+    - Set({check::compiler\rustc_lint})
         42 │+    - Set({check::compiler\rustc_lint_defs})
         43 │+    - Set({check::compiler\rustc_llvm})
         44 │+    - Set({check::compiler\rustc_log})
         45 │+    - Set({check::compiler\rustc_macros})
         46 │+    - Set({check::compiler\rustc_metadata})
         47 │+    - Set({check::compiler\rustc_middle})
         48 │+    - Set({check::compiler\rustc_mir_build})
         49 │+    - Set({check::compiler\rustc_mir_dataflow})
         50 │+    - Set({check::compiler\rustc_mir_transform})
         51 │+    - Set({check::compiler\rustc_monomorphize})
         52 │+    - Set({check::compiler\rustc_next_trait_solver})
         53 │+    - Set({check::compiler\rustc_parse})
         54 │+    - Set({check::compiler\rustc_parse_format})
         55 │+    - Set({check::compiler\rustc_passes})
         56 │+    - Set({check::compiler\rustc_pattern_analysis})
         57 │+    - Set({check::compiler\rustc_privacy})
         58 │+    - Set({check::compiler\rustc_proc_macro})
         59 │+    - Set({check::compiler\rustc_public})
         60 │+    - Set({check::compiler\rustc_public_bridge})
         61 │+    - Set({check::compiler\rustc_query_impl})
         62 │+    - Set({check::compiler\rustc_query_system})
         63 │+    - Set({check::compiler\rustc_resolve})
         64 │+    - Set({check::compiler\rustc_sanitizers})
         65 │+    - Set({check::compiler\rustc_serialize})
         66 │+    - Set({check::compiler\rustc_session})
         67 │+    - Set({check::compiler\rustc_span})
         68 │+    - Set({check::compiler\rustc_symbol_mangling})
         69 │+    - Set({check::compiler\rustc_target})
         70 │+    - Set({check::compiler\rustc_thread_pool})
         71 │+    - Set({check::compiler\rustc_trait_selection})
         72 │+    - Set({check::compiler\rustc_traits})
         73 │+    - Set({check::compiler\rustc_transmute})
         74 │+    - Set({check::compiler\rustc_ty_utils})
         75 │+    - Set({check::compiler\rustc_type_ir})
         76 │+    - Set({check::compiler\rustc_type_ir_macros})
         77 │+    - Set({check::compiler\rustc_windows_rc})
   78    78 │ [Check] check::Rustdoc
   79    79 │     targets: [x86_64-unknown-linux-gnu]
   80    80 │     - Set({check::src/librustdoc, check::src/tools/rustdoc})
   81    81 │ [Check] check::CraneliftCodegenBackend
┈┈┈┈┈┈┈┈┈┈┈┈┼┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈
  112   112 │     - Set({check::src/tools/features-status-dump})
  113   113 │ [Check] check::Std
  114   114 │     targets: [aarch64-unknown-linux-gnu]
  115   115 │     - Set({check::library})
  116       │-    - Set({check::library/alloc})
  117       │-    - Set({check::library/alloctests})
  118       │-    - Set({check::library/compiler-builtins/compiler-builtins})
  119       │-    - Set({check::library/core})
  120       │-    - Set({check::library/coretests})
  121       │-    - Set({check::library/panic_abort})
  122       │-    - Set({check::library/panic_unwind})
  123       │-    - Set({check::library/proc_macro})
  124       │-    - Set({check::library/rustc-std-workspace-core})
  125       │-    - Set({check::library/std})
  126       │-    - Set({check::library/std_detect})
  127       │-    - Set({check::library/sysroot})
  128       │-    - Set({check::library/test})
  129       │-    - Set({check::library/unwind})
        116 │+    - Set({check::library\alloc})
        117 │+    - Set({check::library\alloctests})
        118 │+    - Set({check::library\compiler-builtins\compiler-builtins})
        119 │+    - Set({check::library\core})
        120 │+    - Set({check::library\coretests})
        121 │+    - Set({check::library\panic_abort})
        122 │+    - Set({check::library\panic_unwind})
        123 │+    - Set({check::library\proc_macro})
        124 │+    - Set({check::library\rustc-std-workspace-core})
        125 │+    - Set({check::library\std})
        126 │+    - Set({check::library\std_detect})
        127 │+    - Set({check::library\sysroot})
        128 │+    - Set({check::library\test})
        129 │+    - Set({check::library\unwind})
  130   130 │ [Check] check::Compiletest
  131   131 │     targets: [x86_64-unknown-linux-gnu]
  132   132 │     - Set({check::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' (4656) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679:13:
snapshot assertion for 'x_check_compiletest_include_default_paths' failed in line 64
stack backtrace:
   0: std::panicking::panic_handler
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\std\src\panicking.rs:698
   1: core::panicking::panic_fmt
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\panicking.rs:80
   2: insta::runtime::SnapshotAssertionContext::finalize
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679
   3: insta::runtime::assert_snapshot
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:848
   4: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure$0
             at .\src\core\builder\cli_paths\tests.rs:64
   5: insta::settings::Settings::bind<bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure_env$0,tuple$<> >
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\settings.rs:509
   6: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner
             at .\src\core\builder\cli_paths\tests.rs:63
   7: bootstrap::core::builder::cli_paths::tests::x_check_compiletest_include_default_paths
             at .\src\core\builder\cli_paths\tests.rs:106
   8: bootstrap::core::builder::cli_paths::tests::x_check_compiletest_include_default_paths::closure$0
             at .\src\core\builder\cli_paths\tests.rs:105
   9: core::ops::function::FnOnce::call_once<bootstrap::core::builder::cli_paths::tests::x_check_compiletest_include_default_paths::closure_env$0,tuple$<> >
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f\library\core\src\ops\function.rs:250
  10: core::ops::function::FnOnce::call_once
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\ops\function.rs:250
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
---- 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\.tmpdv9KG8
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 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:64
───────────────────────────────────────────────────────────────────────────────
Expression: check rustc
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
          2 │+    - Set({check::compiler\rustc})
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_check_rustc' (9592) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679:13:
snapshot assertion for 'x_check_rustc' failed in line 64
stack backtrace:
   0: std::panicking::panic_handler
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\std\src\panicking.rs:698
   1: core::panicking::panic_fmt
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\panicking.rs:80
   2: insta::runtime::SnapshotAssertionContext::finalize
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679
   3: insta::runtime::assert_snapshot
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:848
   4: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure$0
             at .\src\core\builder\cli_paths\tests.rs:64
   5: insta::settings::Settings::bind<bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure_env$0,tuple$<> >
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\settings.rs:509
   6: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner
             at .\src\core\builder\cli_paths\tests.rs:63
   7: bootstrap::core::builder::cli_paths::tests::x_check_rustc
             at .\src\core\builder\cli_paths\tests.rs:106
   8: bootstrap::core::builder::cli_paths::tests::x_check_rustc::closure$0
             at .\src\core\builder\cli_paths\tests.rs:105
   9: core::ops::function::FnOnce::call_once<bootstrap::core::builder::cli_paths::tests::x_check_rustc::closure_env$0,tuple$<> >
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f\library\core\src\ops\function.rs:250
  10: core::ops::function::FnOnce::call_once
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\ops\function.rs:250
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
---- core::builder::cli_paths::tests::x_check_rustc stdout end ----
---- core::builder::cli_paths::tests::x_check_library stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpawIxgA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 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:64
───────────────────────────────────────────────────────────────────────────────
Expression: check library
───────────────────────────────────────────────────────────────────────────────
-old snapshot
+new results
────────────┬──────────────────────────────────────────────────────────────────
    0     0 │ [Check] check::Std
    1     1 │     targets: [aarch64-unknown-linux-gnu]
    2     2 │     - Set({check::library})
    3       │-    - Set({check::library/alloc})
    4       │-    - Set({check::library/alloctests})
    5       │-    - Set({check::library/compiler-builtins/compiler-builtins})
    6       │-    - Set({check::library/core})
    7       │-    - Set({check::library/coretests})
    8       │-    - Set({check::library/panic_abort})
    9       │-    - Set({check::library/panic_unwind})
   10       │-    - Set({check::library/proc_macro})
   11       │-    - Set({check::library/rustc-std-workspace-core})
   12       │-    - Set({check::library/std})
   13       │-    - Set({check::library/std_detect})
   14       │-    - Set({check::library/sysroot})
   15       │-    - Set({check::library/test})
   16       │-    - Set({check::library/unwind})
          3 │+    - Set({check::library\alloc})
          4 │+    - Set({check::library\alloctests})
          5 │+    - Set({check::library\compiler-builtins\compiler-builtins})
          6 │+    - Set({check::library\core})
          7 │+    - Set({check::library\coretests})
          8 │+    - Set({check::library\panic_abort})
          9 │+    - Set({check::library\panic_unwind})
         10 │+    - Set({check::library\proc_macro})
         11 │+    - Set({check::library\rustc-std-workspace-core})
         12 │+    - Set({check::library\std})
         13 │+    - Set({check::library\std_detect})
         14 │+    - Set({check::library\sysroot})
         15 │+    - Set({check::library\test})
         16 │+    - Set({check::library\unwind})
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_check_library' (10080) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679:13:
snapshot assertion for 'x_check_library' failed in line 64
stack backtrace:
   0: std::panicking::panic_handler
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\std\src\panicking.rs:698
   1: core::panicking::panic_fmt
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\panicking.rs:80
   2: insta::runtime::SnapshotAssertionContext::finalize
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679
   3: insta::runtime::assert_snapshot
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:848
   4: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure$0
             at .\src\core\builder\cli_paths\tests.rs:64
   5: insta::settings::Settings::bind<bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure_env$0,tuple$<> >
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\settings.rs:509
   6: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner
             at .\src\core\builder\cli_paths\tests.rs:63
   7: bootstrap::core::builder::cli_paths::tests::x_check_library
             at .\src\core\builder\cli_paths\tests.rs:106
   8: bootstrap::core::builder::cli_paths::tests::x_check_library::closure$0
             at .\src\core\builder\cli_paths\tests.rs:105
   9: core::ops::function::FnOnce::call_once<bootstrap::core::builder::cli_paths::tests::x_check_library::closure_env$0,tuple$<> >
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f\library\core\src\ops\function.rs:250
  10: core::ops::function::FnOnce::call_once
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\ops\function.rs:250
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
---- core::builder::cli_paths::tests::x_check_library stdout end ----
---- core::builder::cli_paths::tests::x_test stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpNUdEXe
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: src\bootstrap\src\core\builder\cli_paths\snapshots\x_test.snap
Snapshot: x_test
Source: D:\a\rust\rust:64
───────────────────────────────────────────────────────────────────────────────
Expression: test
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
  147   147 │ [Test] test::CrateRustdocJsonTypes
────────────┴──────────────────────────────────────────────────────────────────
Stopped on the first failure. Run `cargo insta test` to run all snapshots.

thread 'core::builder::cli_paths::tests::x_test' (2944) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679:13:
snapshot assertion for 'x_test' failed in line 64
stack backtrace:
   0: std::panicking::panic_handler
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\std\src\panicking.rs:698
   1: core::panicking::panic_fmt
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\panicking.rs:80
   2: insta::runtime::SnapshotAssertionContext::finalize
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679
   3: insta::runtime::assert_snapshot
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:848
   4: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure$0
             at .\src\core\builder\cli_paths\tests.rs:64
   5: insta::settings::Settings::bind<bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure_env$0,tuple$<> >
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\settings.rs:509
   6: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner
             at .\src\core\builder\cli_paths\tests.rs:63
   7: bootstrap::core::builder::cli_paths::tests::x_test
             at .\src\core\builder\cli_paths\tests.rs:106
   8: bootstrap::core::builder::cli_paths::tests::x_test::closure$0
             at .\src\core\builder\cli_paths\tests.rs:105
   9: core::ops::function::FnOnce::call_once<bootstrap::core::builder::cli_paths::tests::x_test::closure_env$0,tuple$<> >
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f\library\core\src\ops\function.rs:250
  10: core::ops::function::FnOnce::call_once
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\ops\function.rs:250
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
---- core::builder::cli_paths::tests::x_test stdout end ----
---- core::builder::cli_paths::tests::x_test_skip_coverage stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpcABN4W
Skipping Suite(test::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:64
───────────────────────────────────────────────────────────────────────────────
Expression: test --skip=coverage
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
  146   146 │ [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' (3720) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679:13:
snapshot assertion for 'x_test_skip_coverage' failed in line 64
stack backtrace:
   0: std::panicking::panic_handler
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\std\src\panicking.rs:698
   1: core::panicking::panic_fmt
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\panicking.rs:80
   2: insta::runtime::SnapshotAssertionContext::finalize
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679
   3: insta::runtime::assert_snapshot
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:848
   4: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure$0
             at .\src\core\builder\cli_paths\tests.rs:64
   5: insta::settings::Settings::bind<bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure_env$0,tuple$<> >
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\settings.rs:509
   6: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner
             at .\src\core\builder\cli_paths\tests.rs:63
   7: bootstrap::core::builder::cli_paths::tests::x_test_skip_coverage
             at .\src\core\builder\cli_paths\tests.rs:106
   8: bootstrap::core::builder::cli_paths::tests::x_test_skip_coverage::closure$0
             at .\src\core\builder\cli_paths\tests.rs:105
   9: core::ops::function::FnOnce::call_once<bootstrap::core::builder::cli_paths::tests::x_test_skip_coverage::closure_env$0,tuple$<> >
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f\library\core\src\ops\function.rs:250
  10: core::ops::function::FnOnce::call_once
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\ops\function.rs:250
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
---- core::builder::cli_paths::tests::x_test_skip_coverage stdout end ----
---- core::builder::cli_paths::tests::x_test_skip_tests stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpQM27dA
Skipping Suite(test::tests/ui) because it is excluded
Skipping Suite(test::tests/crashes) because it is excluded
Skipping Suite(test::tests/coverage) because it is excluded
Skipping Suite(test::tests/mir-opt) because it is excluded
---
Skipping Suite(test::tests/rustdoc-json) because it is excluded
Skipping Suite(test::tests/run-make) because it is excluded
Skipping Suite(test::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:64
───────────────────────────────────────────────────────────────────────────────
Expression: test --skip=tests
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
  110   110 │ [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' (8820) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679:13:
snapshot assertion for 'x_test_skip_tests' failed in line 64
stack backtrace:
   0: std::panicking::panic_handler
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\std\src\panicking.rs:698
   1: core::panicking::panic_fmt
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\panicking.rs:80
   2: insta::runtime::SnapshotAssertionContext::finalize
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679
   3: insta::runtime::assert_snapshot
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:848
   4: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure$0
             at .\src\core\builder\cli_paths\tests.rs:64
   5: insta::settings::Settings::bind<bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure_env$0,tuple$<> >
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\settings.rs:509
   6: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner
             at .\src\core\builder\cli_paths\tests.rs:63
   7: bootstrap::core::builder::cli_paths::tests::x_test_skip_tests
             at .\src\core\builder\cli_paths\tests.rs:106
   8: bootstrap::core::builder::cli_paths::tests::x_test_skip_tests::closure$0
             at .\src\core\builder\cli_paths\tests.rs:105
   9: core::ops::function::FnOnce::call_once<bootstrap::core::builder::cli_paths::tests::x_test_skip_tests::closure_env$0,tuple$<> >
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f\library\core\src\ops\function.rs:250
  10: core::ops::function::FnOnce::call_once
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\ops\function.rs:250
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
---- core::builder::cli_paths::tests::x_test_skip_tests stdout end ----
---- core::builder::cli_paths::tests::x_test_skip_tests_etc stdout ----
Running test in C:\Users\RUNNER~1\AppData\Local\Temp\.tmpVz7ONi
Skipping Suite(test::tests/ui) because it is excluded
Skipping Suite(test::tests/crashes) because it is excluded
Skipping Set({test::coverage-map}) because it is excluded
Skipping Set({test::coverage-run}) because it is excluded
---
Skipping Suite(test::tests/rustdoc-json) because it is excluded
Skipping Suite(test::tests/run-make) because it is excluded
Skipping Suite(test::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:64
───────────────────────────────────────────────────────────────────────────────
Expression: test --skip=tests --skip=coverage-map --skip=coverage-run --skip=library --skip=tidyselftest
───────────────────────────────────────────────────────────────────────────────
-old snapshot
---
   90    90 │ [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' (832) panicked at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679:13:
snapshot assertion for 'x_test_skip_tests_etc' failed in line 64
stack backtrace:
   0: std::panicking::panic_handler
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\std\src\panicking.rs:698
   1: core::panicking::panic_fmt
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\panicking.rs:80
   2: insta::runtime::SnapshotAssertionContext::finalize
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:679
   3: insta::runtime::assert_snapshot
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\runtime.rs:848
   4: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure$0
             at .\src\core\builder\cli_paths\tests.rs:64
   5: insta::settings::Settings::bind<bootstrap::core::builder::cli_paths::tests::snapshot_test_inner::closure_env$0,tuple$<> >
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\insta-1.43.1\src\settings.rs:509
   6: bootstrap::core::builder::cli_paths::tests::snapshot_test_inner
             at .\src\core\builder\cli_paths\tests.rs:63
   7: bootstrap::core::builder::cli_paths::tests::x_test_skip_tests_etc
             at .\src\core\builder\cli_paths\tests.rs:106
   8: bootstrap::core::builder::cli_paths::tests::x_test_skip_tests_etc::closure$0
             at .\src\core\builder\cli_paths\tests.rs:105
   9: core::ops::function::FnOnce::call_once<bootstrap::core::builder::cli_paths::tests::x_test_skip_tests_etc::closure_env$0,tuple$<> >
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f\library\core\src\ops\function.rs:250
  10: core::ops::function::FnOnce::call_once
             at /rustc/3b4dd9bf1410f8da6329baa36ce5e37673cbbd1f/library\core\src\ops\function.rs:250
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
---- 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_build_rustc_llvm
---

error: test failed, to rerun pass `--lib`
Bootstrap failed while executing `test --stage 2 --skip=tests --skip=coverage-map --skip=coverage-run --skip=library --skip=tidyselftest`
Build completed unsuccessfully in 0:06:49
make: *** [Makefile:114: ci-msvc-ps1] Error 1
  local time: Wed Nov 12 01:23:02 CUT 2025
  network time: Wed, 12 Nov 2025 01:23:02 GMT
##[error]Process completed with exit code 2.
##[group]Run echo "disk usage:"
echo "disk usage:"

@bors
Copy link
Collaborator

bors commented Nov 12, 2025

💔 Test failed - checks-actions

@bors bors added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Nov 12, 2025
@Zalathar Zalathar closed this Nov 12, 2025
@rustbot rustbot removed the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Nov 12, 2025
@Zalathar Zalathar deleted the rollup-zl2un76 branch November 12, 2025 01:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

A-testsuite Area: The testsuite used to check the correctness of rustc rollup A PR which is a rollup T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-clippy Relevant to the Clippy team. 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.