diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca7210006fcaa..8f918e3883d6a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,7 @@ jobs: run_type: ${{ steps.jobs.outputs.run_type }} steps: - name: Checkout the source code - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Test citool # Only test citool on the auto branch, to reduce latency of the calculate matrix job # on PR/try builds. @@ -117,7 +117,7 @@ jobs: run: git config --global core.autocrlf false - name: checkout the source code - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: fetch-depth: 2 @@ -254,7 +254,7 @@ jobs: df -h - name: upload artifacts to github - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: # name is set in previous step name: ${{ env.DOC_ARTIFACT_NAME }} @@ -315,7 +315,7 @@ jobs: environment: ${{ (github.repository == 'rust-lang/rust' && 'bors') || '' }} steps: - name: checkout the source code - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: fetch-depth: 2 # Publish the toolstate if an auto build succeeds (just before push to the default branch) diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index 94b8aa1b599d1..77f94f2f12ba9 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -51,7 +51,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: checkout the source code - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: submodules: recursive - name: install the bootstrap toolchain @@ -66,7 +66,7 @@ jobs: run: ./src/tools/update-lockfile.sh - name: upload Cargo.lock artifact for use in PR - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: Cargo-lock path: | @@ -75,7 +75,7 @@ jobs: src/tools/rustbook/Cargo.lock retention-days: 1 - name: upload cargo-update log artifact for use in PR - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: cargo-updates path: cargo_update.log @@ -91,7 +91,7 @@ jobs: pull-requests: write steps: - name: checkout the source code - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: download Cargo.lock from update job uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 diff --git a/.github/workflows/ghcr.yml b/.github/workflows/ghcr.yml index 9abb5f1929281..2cc67b822ccfc 100644 --- a/.github/workflows/ghcr.yml +++ b/.github/workflows/ghcr.yml @@ -29,7 +29,7 @@ jobs: # Needed to write to the ghcr.io registry packages: write steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false diff --git a/.github/workflows/post-merge.yml b/.github/workflows/post-merge.yml index ac90e1a2b3da5..23167756f1657 100644 --- a/.github/workflows/post-merge.yml +++ b/.github/workflows/post-merge.yml @@ -15,7 +15,7 @@ jobs: permissions: pull-requests: write steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: # Make sure that we have enough commits to find the parent merge commit. # Since all merges should be through merge commits, fetching two commits diff --git a/compiler/rustc_data_structures/src/jobserver.rs b/compiler/rustc_data_structures/src/jobserver.rs index 81c3134e8da39..478fc0632658c 100644 --- a/compiler/rustc_data_structures/src/jobserver.rs +++ b/compiler/rustc_data_structures/src/jobserver.rs @@ -4,65 +4,50 @@ pub use jobserver_crate::Acquired; use jobserver_crate::{Client, FromEnv, FromEnvErrorKind, HelperThread}; use parking_lot::{Condvar, Mutex}; -fn create_client(limit: usize) -> Result { - // Safety: the checked client construction ensures that the jobserver file descriptors - // (if any) are open and valid. We also try to initialize the jobserver as early as possible - // to avoid unrelated file descriptors with matching values becoming open and valid between - // the process start and the jobserver initialization. - let FromEnv { client, var } = unsafe { Client::from_env_ext(true) }; - - let error = match client { - Ok(client) => return Ok(client), - Err(e) => e, - }; - - if matches!( - error.kind(), - FromEnvErrorKind::NoEnvVar - | FromEnvErrorKind::NoJobserver - | FromEnvErrorKind::NegativeFd - | FromEnvErrorKind::Unsupported - ) { - return Ok(default_client(limit)); - } - - // Environment specifies jobserver, but it looks incorrect. - // Safety: `error.kind()` should be `NoEnvVar` if `var == None`. - let (name, value) = var.unwrap(); - Err(format!( - "failed to connect to jobserver from environment variable `{name}={:?}`: {error}", - value - )) -} - -// Creates a new jobserver if there's no inherited one. -fn default_client(limit: usize) -> Client { - let client = Client::new(limit).expect("failed to create jobserver"); - - // Acquire the single token that is always held by the rustc process. - // This is an equivalent of the single token held by a higher level build tool while running - // this instance of rustc. This token is never released - if we are here, then rustc owns the - // jobserver, it is teared down when rustc exits, and there's no one to return the token to. - client.acquire_raw().ok(); - - client -} - // We stick the jobserver client into a global and initialize it once, because there could be // multiple compiler instances in this process, and the jobserver is per-process. -static GLOBAL_CLIENT_CHECKED: OnceLock = OnceLock::new(); +static CLIENT: OnceLock = OnceLock::new(); /// Initializes a jobserver client for the current rustc process. /// If inheriting jobserver from the environment fails for some reason, an new jobserver owned by /// the current rustc process will be created. If the inheritance failure reason is non-benign, /// the passed callback will be used to report the error. -pub fn initialize_checked(limit: usize, report: impl FnOnce(String)) { - GLOBAL_CLIENT_CHECKED.get_or_init(|| match create_client(limit) { - Ok(client) => client, - Err(e) => { - report(e); - default_client(limit) +pub fn initialize(limit: usize, report: impl FnOnce(String)) { + CLIENT.get_or_init(|| { + // Safety: the checked client construction ensures that the jobserver file descriptors + // (if any) are open and valid. We also try to initialize the jobserver as early as possible + // to avoid unrelated file descriptors with matching values becoming open and valid between + // the process start and the jobserver initialization. + let FromEnv { client, var } = unsafe { Client::from_env_ext(true) }; + + let error = match client { + Ok(client) => return client, + Err(error) => error, + }; + + if !matches!( + error.kind(), + FromEnvErrorKind::NoEnvVar + | FromEnvErrorKind::NoJobserver + | FromEnvErrorKind::NegativeFd + | FromEnvErrorKind::Unsupported + ) { + // Environment specifies jobserver, but it looks incorrect. + // Can unwrap because `var` is `None` only when the error kind is `NoEnvVar`. + let (name, value) = var.unwrap(); + let msg = "failed to connect to jobserver from environment variable"; + report(format!("{msg} `{name}={value:?}`: {error}")); } + + // Create a new jobserver if there's no inherited one. + let client = Client::new(limit).expect("failed to create jobserver"); + // Acquire the single token that is always held by the rustc process. + // This is an equivalent of the single token held by a higher level build tool while + // running this instance of rustc. This token is never released - if we are here, then + // rustc owns the jobserver, it is teared down when rustc exits, and there's no one to + // return the token to. + client.acquire_raw().ok(); + client }); } @@ -82,7 +67,7 @@ pub fn initialize_checked(limit: usize, report: impl FnOnce(String)) { /// To avoid situations like this use the `jobserver::Proxy` wrapper instead, /// it will ensure that the last token is never released. pub fn client() -> Client { - GLOBAL_CLIENT_CHECKED.get().expect("uninitialized jobserver client").clone() + CLIENT.get().expect("uninitialized jobserver client").clone() } struct ProxyData { diff --git a/compiler/rustc_interface/src/interface.rs b/compiler/rustc_interface/src/interface.rs index 8701221ae4707..2ad6fb6450a16 100644 --- a/compiler/rustc_interface/src/interface.rs +++ b/compiler/rustc_interface/src/interface.rs @@ -378,11 +378,9 @@ pub fn run_compiler(config: Config, f: impl FnOnce(&Compiler) -> R + Se if let Some(limit) = config.opts.jobs.frontend.max(config.opts.jobs.backend.map(BackendJobs::value)) { - jobserver::initialize_checked(limit.get(), |err| { - early_dcx - .early_struct_warn(err) - .with_note("the build environment is likely misconfigured") - .emit() + jobserver::initialize(limit.get(), |err| { + let note = "the build environment is likely misconfigured"; + early_dcx.early_struct_warn(err).with_note(note).emit() }); } diff --git a/compiler/rustc_passes/src/check_attr.rs b/compiler/rustc_passes/src/check_attr.rs index a55d38251c843..6489167afcdac 100644 --- a/compiler/rustc_passes/src/check_attr.rs +++ b/compiler/rustc_passes/src/check_attr.rs @@ -211,7 +211,7 @@ impl<'tcx> CheckAttrVisitor<'tcx> { self.check_rustc_legacy_const_generics(item, *attr_span, fn_indexes) } AttributeKind::Doc(attr) => self.check_doc_attrs(attr, hir_id, target), - AttributeKind::EiiImpls(impls) => self.check_eii_impl(impls, target), + AttributeKind::EiiImpls(impls) => self.check_eii_impl(impls), AttributeKind::RustcMustImplementOneOf { attr_span, fn_names } => { self.check_rustc_must_implement_one_of(*attr_span, fn_names, hir_id, target) } @@ -472,15 +472,10 @@ impl<'tcx> CheckAttrVisitor<'tcx> { } } - fn check_eii_impl(&self, impls: &[EiiImpl], target: Target) { + /// Checks that each externally implementable item (EII) implementation uses `unsafe` + /// exactly when its declaration requires it. + fn check_eii_impl(&self, impls: &[EiiImpl]) { for EiiImpl { span, inner_span, resolution, impl_unsafe_span, is_default: _ } in impls { - match target { - Target::Fn | Target::Static => {} - _ => { - self.dcx().emit_err(diagnostics::EiiImplTarget { span: *span }); - } - } - let impl_unsafe = match resolution { EiiImplResolution::Macro(eii_macro) => find_attr!( self.tcx, diff --git a/compiler/rustc_passes/src/diagnostics.rs b/compiler/rustc_passes/src/diagnostics.rs index 61a32c97b3cc6..e1650eecb8f4d 100644 --- a/compiler/rustc_passes/src/diagnostics.rs +++ b/compiler/rustc_passes/src/diagnostics.rs @@ -1027,13 +1027,6 @@ pub(crate) enum UnexportableItem<'a> { }, } -#[derive(Diagnostic)] -#[diag("`eii_macro_for` is only valid on functions and statics")] -pub(crate) struct EiiImplTarget { - #[primary_span] - pub span: Span, -} - #[derive(Diagnostic)] #[diag("`#[{$name}]` is unsafe to implement")] pub(crate) struct EiiImplRequiresUnsafe { diff --git a/library/core/src/slice/ascii.rs b/library/core/src/slice/ascii.rs index 9db07d8abbbef..0dc336125c8cd 100644 --- a/library/core/src/slice/ascii.rs +++ b/library/core/src/slice/ascii.rs @@ -62,7 +62,10 @@ impl [u8] { return false; } - #[cfg(all(target_arch = "x86_64", target_feature = "sse2"))] + #[cfg(any( + all(target_arch = "x86_64", target_feature = "sse2"), + all(target_arch = "aarch64", target_feature = "neon") + ))] { const CHUNK_SIZE: usize = 16; // The following function has two invariants: @@ -108,7 +111,10 @@ impl [u8] { /// /// The caller must guarantee that the slices are equal in length, and the /// slice lengths are greater than or equal to `N` bytes. - #[cfg(all(target_arch = "x86_64", target_feature = "sse2"))] + #[cfg(any( + all(target_arch = "x86_64", target_feature = "sse2"), + all(target_arch = "aarch64", target_feature = "neon") + ))] #[inline] const fn eq_ignore_ascii_case_chunks(&self, other: &[u8]) -> bool { // FIXME(const-hack): The while-loops that follow should be replaced by @@ -451,7 +457,8 @@ pub const fn is_ascii_simple(mut bytes: &[u8]) -> bool { /// (above) returns true, then we know the answer is false. #[cfg(not(any( all(target_arch = "x86_64", target_feature = "sse2"), - all(target_arch = "loongarch64", target_feature = "lsx") + all(target_arch = "loongarch64", target_feature = "lsx"), + all(target_arch = "aarch64", target_feature = "neon") )))] #[inline] #[rustc_allow_const_fn_unstable(const_eval_select)] // fallback impl has same behavior @@ -584,24 +591,81 @@ fn is_ascii_sse2(bytes: &[u8]) -> bool { rest.iter().all(|b| b.is_ascii()) } -/// ASCII test optimized to use the `pmovmskb` instruction on `x86-64`. -/// -/// Uses explicit SSE2 intrinsics to prevent LLVM from auto-vectorizing with -/// broken AVX-512 code that extracts mask bits one-by-one. -#[cfg(all(target_arch = "x86_64", target_feature = "sse2"))] +/// Chunk size for NEON vectorized ASCII checking (4x 16-byte loads). +#[cfg(all(target_arch = "aarch64", target_feature = "neon"))] +const NEON_CHUNK_SIZE: usize = 64; + +/// Width of a single NEON vector, used to vectorize the tail left over by the +/// unrolled `NEON_CHUNK_SIZE` loop. +#[cfg(all(target_arch = "aarch64", target_feature = "neon"))] +const NEON_VECTOR_SIZE: usize = 16; + +#[cfg(all(target_arch = "aarch64", target_feature = "neon"))] +#[inline] +fn is_ascii_neon(bytes: &[u8]) -> bool { + use crate::arch::aarch64::{vld1q_u8, vmaxvq_u8, vorrq_u8}; + + let (chunks, rest) = bytes.as_chunks::(); + + for chunk in chunks { + let ptr = chunk.as_ptr(); + // SAFETY: chunk is 64 bytes, and `vld1q_u8` has no alignment requirement. + let max = unsafe { + let a1 = vld1q_u8(ptr); + let a2 = vld1q_u8(ptr.add(16)); + let b1 = vld1q_u8(ptr.add(32)); + let b2 = vld1q_u8(ptr.add(48)); + // OR all chunks - if any byte has high bit set, combined will too. + let combined = vorrq_u8(vorrq_u8(a1, a2), vorrq_u8(b1, b2)); + // `vmaxvq_u8` is a horizontal reduction with a longer latency than + // `vorrq_u8`, so it runs once per 64 bytes rather than once per load. + vmaxvq_u8(combined) + }; + if max >= 128 { + return false; + } + } + + // The unrolled loop above leaves up to 63 bytes, so sweep those a vector at + // a time before falling back to a byte-at-a-time check. + let (vectors, rest) = rest.as_chunks::(); + + for vector in vectors { + // SAFETY: vector is 16 bytes, and `vld1q_u8` has no alignment requirement. + let max = unsafe { vmaxvq_u8(vld1q_u8(vector.as_ptr())) }; + if max >= 128 { + return false; + } + } + + // Handle remaining bytes + rest.iter().all(|b| b.is_ascii()) +} + +/// Uses explicit SIMD intrinsics to prevent LLVM from auto-vectorizing with +/// broken code (e.g., AVX-512 on x86-64 that extracts mask bits one-by-one). +#[cfg(any( + all(target_arch = "x86_64", target_feature = "sse2"), + all(target_arch = "aarch64", target_feature = "neon") +))] #[inline] #[rustc_allow_const_fn_unstable(const_eval_select)] const fn is_ascii(bytes: &[u8]) -> bool { const USIZE_SIZE: usize = size_of::(); const NONASCII_MASK: usize = usize::MAX / 255 * 0x80; + #[cfg(all(target_arch = "x86_64", target_feature = "sse2"))] + const SIMD_MIN_LEN: usize = SSE2_CHUNK_SIZE; + #[cfg(all(target_arch = "aarch64", target_feature = "neon"))] + const SIMD_MIN_LEN: usize = NEON_CHUNK_SIZE; + const_eval_select!( @capture { bytes: &[u8] } -> bool: if const { is_ascii_simple(bytes) } else { // For small inputs, use usize-at-a-time processing to avoid SSE2 call overhead. - if bytes.len() < SSE2_CHUNK_SIZE { + if bytes.len() < SIMD_MIN_LEN { let chunks = bytes.chunks_exact(USIZE_SIZE); let remainder = chunks.remainder(); for chunk in chunks { @@ -613,7 +677,10 @@ const fn is_ascii(bytes: &[u8]) -> bool { return remainder.iter().all(|b| b.is_ascii()); } - is_ascii_sse2(bytes) + #[cfg(all(target_arch = "x86_64", target_feature = "sse2"))] + { is_ascii_sse2(bytes) } + #[cfg(all(target_arch = "aarch64", target_feature = "neon"))] + { is_ascii_neon(bytes) } } ) } diff --git a/library/coretests/benches/str/eq_ignore_ascii_case.rs b/library/coretests/benches/str/eq_ignore_ascii_case.rs index 29129b933bc46..db75960664106 100644 --- a/library/coretests/benches/str/eq_ignore_ascii_case.rs +++ b/library/coretests/benches/str/eq_ignore_ascii_case.rs @@ -43,3 +43,23 @@ fn bench_large_str_eq(b: &mut Bencher) { let other = black_box(en::LARGE); b.iter(|| assert!(s.eq_ignore_ascii_case(other))) } + +#[bench] +fn bench_medium_str_early_mismatch(b: &mut Bencher) { + // Differs in the first byte, exercising the early-return path of the + // chunked comparison. + let other_owned = ["_", &en::MEDIUM[1..]].concat(); + let s = black_box(en::MEDIUM); + let other = black_box(&*other_owned); + b.iter(|| assert!(!s.eq_ignore_ascii_case(other))) +} + +#[bench] +fn bench_medium_str_tail_mismatch(b: &mut Bencher) { + // Differs in the last byte, exercising the `last_chunk` tail handling of + // the chunked comparison. + let other_owned = [&en::MEDIUM[..en::MEDIUM.len() - 1], "_"].concat(); + let s = black_box(en::MEDIUM); + let other = black_box(&*other_owned); + b.iter(|| assert!(!s.eq_ignore_ascii_case(other))) +} diff --git a/src/bootstrap/src/core/builder/cli_paths.rs b/src/bootstrap/src/core/builder/cli_paths.rs index 4ad76b29e5246..33bddabda0c70 100644 --- a/src/bootstrap/src/core/builder/cli_paths.rs +++ b/src/bootstrap/src/core/builder/cli_paths.rs @@ -203,7 +203,7 @@ pub(crate) fn match_paths_to_steps_and_run( let mut steps_to_run = vec![]; for StepExtra { desc, should_run } in &steps { - let pathsets = should_run.pathset_for_paths_removing_matches(&mut paths, desc.kind); + let pathsets = should_run.pathset_for_paths_removing_matches(&mut paths); // This value is used for sorting the step execution order. // By default, `usize::MAX` is used as the index for steps to assign them the lowest priority. diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_bench.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_bench.snap index 3ae8d3de6b55c..369bdb4e519e1 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_bench.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_bench.snap @@ -4,96 +4,96 @@ expression: bench --- [Bench] test::Crate targets: [aarch64-unknown-linux-gnu] - - Set({bench::library/alloc}) - - Set({bench::library/alloctests}) - - Set({bench::library/compiler-builtins/compiler-builtins}) - - Set({bench::library/core}) - - Set({bench::library/coretests}) - - Set({bench::library/panic_abort}) - - Set({bench::library/panic_unwind}) - - Set({bench::library/proc_macro}) - - Set({bench::library/rustc-std-workspace-core}) - - Set({bench::library/std}) - - Set({bench::library/std_detect}) - - Set({bench::library/sysroot}) - - Set({bench::library/test}) - - Set({bench::library/unwind}) + - Set({library/alloc}) + - Set({library/alloctests}) + - Set({library/compiler-builtins/compiler-builtins}) + - Set({library/core}) + - Set({library/coretests}) + - Set({library/panic_abort}) + - Set({library/panic_unwind}) + - Set({library/proc_macro}) + - Set({library/rustc-std-workspace-core}) + - Set({library/std}) + - Set({library/std_detect}) + - Set({library/sysroot}) + - Set({library/test}) + - Set({library/unwind}) [Bench] test::CrateLibrustc targets: [x86_64-unknown-linux-gnu] - - Set({bench::compiler}) - - Set({bench::compiler/rustc}) - - Set({bench::compiler/rustc_abi}) - - Set({bench::compiler/rustc_arena}) - - Set({bench::compiler/rustc_ast}) - - Set({bench::compiler/rustc_ast_ir}) - - Set({bench::compiler/rustc_ast_lowering}) - - Set({bench::compiler/rustc_ast_passes}) - - Set({bench::compiler/rustc_ast_pretty}) - - Set({bench::compiler/rustc_attr_parsing}) - - Set({bench::compiler/rustc_baked_icu_data}) - - Set({bench::compiler/rustc_borrowck}) - - Set({bench::compiler/rustc_builtin_macros}) - - Set({bench::compiler/rustc_codegen_llvm}) - - Set({bench::compiler/rustc_codegen_ssa}) - - Set({bench::compiler/rustc_const_eval}) - - Set({bench::compiler/rustc_data_structures}) - - Set({bench::compiler/rustc_driver}) - - Set({bench::compiler/rustc_driver_impl}) - - Set({bench::compiler/rustc_error_codes}) - - Set({bench::compiler/rustc_error_messages}) - - Set({bench::compiler/rustc_errors}) - - Set({bench::compiler/rustc_expand}) - - Set({bench::compiler/rustc_feature}) - - Set({bench::compiler/rustc_fs_util}) - - Set({bench::compiler/rustc_graphviz}) - - Set({bench::compiler/rustc_hashes}) - - Set({bench::compiler/rustc_hir}) - - Set({bench::compiler/rustc_hir_analysis}) - - Set({bench::compiler/rustc_hir_id}) - - Set({bench::compiler/rustc_hir_pretty}) - - Set({bench::compiler/rustc_hir_typeck}) - - Set({bench::compiler/rustc_incremental}) - - Set({bench::compiler/rustc_index}) - - Set({bench::compiler/rustc_index_macros}) - - Set({bench::compiler/rustc_infer}) - - Set({bench::compiler/rustc_interface}) - - Set({bench::compiler/rustc_lexer}) - - Set({bench::compiler/rustc_lint}) - - Set({bench::compiler/rustc_lint_defs}) - - Set({bench::compiler/rustc_llvm}) - - Set({bench::compiler/rustc_log}) - - Set({bench::compiler/rustc_macros}) - - Set({bench::compiler/rustc_metadata}) - - Set({bench::compiler/rustc_middle}) - - Set({bench::compiler/rustc_mir_build}) - - Set({bench::compiler/rustc_mir_dataflow}) - - Set({bench::compiler/rustc_mir_transform}) - - Set({bench::compiler/rustc_monomorphize}) - - Set({bench::compiler/rustc_next_trait_solver}) - - Set({bench::compiler/rustc_parse}) - - Set({bench::compiler/rustc_parse_format}) - - Set({bench::compiler/rustc_passes}) - - Set({bench::compiler/rustc_pattern_analysis}) - - Set({bench::compiler/rustc_privacy}) - - Set({bench::compiler/rustc_proc_macro}) - - Set({bench::compiler/rustc_public}) - - Set({bench::compiler/rustc_public_bridge}) - - Set({bench::compiler/rustc_query_impl}) - - Set({bench::compiler/rustc_resolve}) - - Set({bench::compiler/rustc_sanitizers}) - - Set({bench::compiler/rustc_serialize}) - - Set({bench::compiler/rustc_session}) - - Set({bench::compiler/rustc_span}) - - Set({bench::compiler/rustc_symbol_mangling}) - - Set({bench::compiler/rustc_target}) - - Set({bench::compiler/rustc_thread_pool}) - - Set({bench::compiler/rustc_trait_selection}) - - Set({bench::compiler/rustc_traits}) - - Set({bench::compiler/rustc_transmute}) - - Set({bench::compiler/rustc_ty_utils}) - - Set({bench::compiler/rustc_type_ir}) - - Set({bench::compiler/rustc_type_ir_macros}) - - Set({bench::compiler/rustc_windows_rc}) + - Set({compiler}) + - Set({compiler/rustc}) + - Set({compiler/rustc_abi}) + - Set({compiler/rustc_arena}) + - Set({compiler/rustc_ast}) + - Set({compiler/rustc_ast_ir}) + - Set({compiler/rustc_ast_lowering}) + - Set({compiler/rustc_ast_passes}) + - Set({compiler/rustc_ast_pretty}) + - Set({compiler/rustc_attr_parsing}) + - Set({compiler/rustc_baked_icu_data}) + - Set({compiler/rustc_borrowck}) + - Set({compiler/rustc_builtin_macros}) + - Set({compiler/rustc_codegen_llvm}) + - Set({compiler/rustc_codegen_ssa}) + - Set({compiler/rustc_const_eval}) + - Set({compiler/rustc_data_structures}) + - Set({compiler/rustc_driver}) + - Set({compiler/rustc_driver_impl}) + - Set({compiler/rustc_error_codes}) + - Set({compiler/rustc_error_messages}) + - Set({compiler/rustc_errors}) + - Set({compiler/rustc_expand}) + - Set({compiler/rustc_feature}) + - Set({compiler/rustc_fs_util}) + - Set({compiler/rustc_graphviz}) + - Set({compiler/rustc_hashes}) + - Set({compiler/rustc_hir}) + - Set({compiler/rustc_hir_analysis}) + - Set({compiler/rustc_hir_id}) + - Set({compiler/rustc_hir_pretty}) + - Set({compiler/rustc_hir_typeck}) + - Set({compiler/rustc_incremental}) + - Set({compiler/rustc_index}) + - Set({compiler/rustc_index_macros}) + - Set({compiler/rustc_infer}) + - Set({compiler/rustc_interface}) + - Set({compiler/rustc_lexer}) + - Set({compiler/rustc_lint}) + - Set({compiler/rustc_lint_defs}) + - Set({compiler/rustc_llvm}) + - Set({compiler/rustc_log}) + - Set({compiler/rustc_macros}) + - Set({compiler/rustc_metadata}) + - Set({compiler/rustc_middle}) + - Set({compiler/rustc_mir_build}) + - Set({compiler/rustc_mir_dataflow}) + - Set({compiler/rustc_mir_transform}) + - Set({compiler/rustc_monomorphize}) + - Set({compiler/rustc_next_trait_solver}) + - Set({compiler/rustc_parse}) + - Set({compiler/rustc_parse_format}) + - Set({compiler/rustc_passes}) + - Set({compiler/rustc_pattern_analysis}) + - Set({compiler/rustc_privacy}) + - Set({compiler/rustc_proc_macro}) + - Set({compiler/rustc_public}) + - Set({compiler/rustc_public_bridge}) + - Set({compiler/rustc_query_impl}) + - Set({compiler/rustc_resolve}) + - Set({compiler/rustc_sanitizers}) + - Set({compiler/rustc_serialize}) + - Set({compiler/rustc_session}) + - Set({compiler/rustc_span}) + - Set({compiler/rustc_symbol_mangling}) + - Set({compiler/rustc_target}) + - Set({compiler/rustc_thread_pool}) + - Set({compiler/rustc_trait_selection}) + - Set({compiler/rustc_traits}) + - Set({compiler/rustc_transmute}) + - Set({compiler/rustc_ty_utils}) + - Set({compiler/rustc_type_ir}) + - Set({compiler/rustc_type_ir_macros}) + - Set({compiler/rustc_windows_rc}) [Bench] test::CrateRustdoc targets: [x86_64-unknown-linux-gnu] - - Set({bench::src/librustdoc, bench::src/tools/rustdoc}) + - Set({src/librustdoc, src/tools/rustdoc}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build.snap index 7180c337df99d..73db849bcaeac 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build.snap @@ -4,19 +4,19 @@ expression: build --- [Build] compile::Std targets: [aarch64-unknown-linux-gnu] - - Set({build::library}) - - Set({build::library/alloc}) - - Set({build::library/compiler-builtins/compiler-builtins}) - - Set({build::library/core}) - - Set({build::library/panic_abort}) - - Set({build::library/panic_unwind}) - - Set({build::library/proc_macro}) - - Set({build::library/rustc-std-workspace-core}) - - Set({build::library/std}) - - Set({build::library/std_detect}) - - Set({build::library/sysroot}) - - Set({build::library/test}) - - Set({build::library/unwind}) + - Set({library}) + - Set({library/alloc}) + - Set({library/compiler-builtins/compiler-builtins}) + - Set({library/core}) + - Set({library/panic_abort}) + - Set({library/panic_unwind}) + - Set({library/proc_macro}) + - Set({library/rustc-std-workspace-core}) + - Set({library/std}) + - Set({library/std_detect}) + - Set({library/sysroot}) + - Set({library/test}) + - Set({library/unwind}) [Build] tool::Rustdoc targets: [x86_64-unknown-linux-gnu] - - Set({build::src/librustdoc, build::src/tools/rustdoc}) + - Set({src/librustdoc, src/tools/rustdoc}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_compiler.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_compiler.snap index d5da908c8a443..3d9354b912698 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_compiler.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_compiler.snap @@ -4,79 +4,79 @@ expression: build compiler --- [Build] compile::Rustc targets: [x86_64-unknown-linux-gnu] - - Set({build::compiler/rustc_abi}) - - Set({build::compiler/rustc_arena}) - - Set({build::compiler/rustc_ast}) - - Set({build::compiler/rustc_ast_ir}) - - Set({build::compiler/rustc_ast_lowering}) - - Set({build::compiler/rustc_ast_passes}) - - Set({build::compiler/rustc_ast_pretty}) - - Set({build::compiler/rustc_attr_parsing}) - - Set({build::compiler/rustc_baked_icu_data}) - - Set({build::compiler/rustc_borrowck}) - - Set({build::compiler/rustc_builtin_macros}) - - Set({build::compiler/rustc_codegen_llvm}) - - Set({build::compiler/rustc_codegen_ssa}) - - Set({build::compiler/rustc_const_eval}) - - Set({build::compiler/rustc_data_structures}) - - Set({build::compiler/rustc_driver}) - - Set({build::compiler/rustc_driver_impl}) - - Set({build::compiler/rustc_error_codes}) - - Set({build::compiler/rustc_error_messages}) - - Set({build::compiler/rustc_errors}) - - Set({build::compiler/rustc_expand}) - - Set({build::compiler/rustc_feature}) - - Set({build::compiler/rustc_fs_util}) - - Set({build::compiler/rustc_graphviz}) - - Set({build::compiler/rustc_hashes}) - - Set({build::compiler/rustc_hir}) - - Set({build::compiler/rustc_hir_analysis}) - - Set({build::compiler/rustc_hir_id}) - - Set({build::compiler/rustc_hir_pretty}) - - Set({build::compiler/rustc_hir_typeck}) - - Set({build::compiler/rustc_incremental}) - - Set({build::compiler/rustc_index}) - - Set({build::compiler/rustc_index_macros}) - - Set({build::compiler/rustc_infer}) - - Set({build::compiler/rustc_interface}) - - Set({build::compiler/rustc_lexer}) - - Set({build::compiler/rustc_lint}) - - Set({build::compiler/rustc_lint_defs}) - - Set({build::compiler/rustc_llvm}) - - Set({build::compiler/rustc_log}) - - Set({build::compiler/rustc_macros}) - - Set({build::compiler/rustc_metadata}) - - Set({build::compiler/rustc_middle}) - - Set({build::compiler/rustc_mir_build}) - - Set({build::compiler/rustc_mir_dataflow}) - - Set({build::compiler/rustc_mir_transform}) - - Set({build::compiler/rustc_monomorphize}) - - Set({build::compiler/rustc_next_trait_solver}) - - Set({build::compiler/rustc_parse}) - - Set({build::compiler/rustc_parse_format}) - - Set({build::compiler/rustc_passes}) - - Set({build::compiler/rustc_pattern_analysis}) - - Set({build::compiler/rustc_privacy}) - - Set({build::compiler/rustc_proc_macro}) - - Set({build::compiler/rustc_public}) - - Set({build::compiler/rustc_public_bridge}) - - Set({build::compiler/rustc_query_impl}) - - Set({build::compiler/rustc_resolve}) - - Set({build::compiler/rustc_sanitizers}) - - Set({build::compiler/rustc_serialize}) - - Set({build::compiler/rustc_session}) - - Set({build::compiler/rustc_span}) - - Set({build::compiler/rustc_symbol_mangling}) - - Set({build::compiler/rustc_target}) - - Set({build::compiler/rustc_thread_pool}) - - Set({build::compiler/rustc_trait_selection}) - - Set({build::compiler/rustc_traits}) - - Set({build::compiler/rustc_transmute}) - - Set({build::compiler/rustc_ty_utils}) - - Set({build::compiler/rustc_type_ir}) - - Set({build::compiler/rustc_type_ir_macros}) - - Set({build::compiler/rustc_windows_rc}) + - Set({compiler/rustc_abi}) + - Set({compiler/rustc_arena}) + - Set({compiler/rustc_ast}) + - Set({compiler/rustc_ast_ir}) + - Set({compiler/rustc_ast_lowering}) + - Set({compiler/rustc_ast_passes}) + - Set({compiler/rustc_ast_pretty}) + - Set({compiler/rustc_attr_parsing}) + - Set({compiler/rustc_baked_icu_data}) + - Set({compiler/rustc_borrowck}) + - Set({compiler/rustc_builtin_macros}) + - Set({compiler/rustc_codegen_llvm}) + - Set({compiler/rustc_codegen_ssa}) + - Set({compiler/rustc_const_eval}) + - Set({compiler/rustc_data_structures}) + - Set({compiler/rustc_driver}) + - Set({compiler/rustc_driver_impl}) + - Set({compiler/rustc_error_codes}) + - Set({compiler/rustc_error_messages}) + - Set({compiler/rustc_errors}) + - Set({compiler/rustc_expand}) + - Set({compiler/rustc_feature}) + - Set({compiler/rustc_fs_util}) + - Set({compiler/rustc_graphviz}) + - Set({compiler/rustc_hashes}) + - Set({compiler/rustc_hir}) + - Set({compiler/rustc_hir_analysis}) + - Set({compiler/rustc_hir_id}) + - Set({compiler/rustc_hir_pretty}) + - Set({compiler/rustc_hir_typeck}) + - Set({compiler/rustc_incremental}) + - Set({compiler/rustc_index}) + - Set({compiler/rustc_index_macros}) + - Set({compiler/rustc_infer}) + - Set({compiler/rustc_interface}) + - Set({compiler/rustc_lexer}) + - Set({compiler/rustc_lint}) + - Set({compiler/rustc_lint_defs}) + - Set({compiler/rustc_llvm}) + - Set({compiler/rustc_log}) + - Set({compiler/rustc_macros}) + - Set({compiler/rustc_metadata}) + - Set({compiler/rustc_middle}) + - Set({compiler/rustc_mir_build}) + - Set({compiler/rustc_mir_dataflow}) + - Set({compiler/rustc_mir_transform}) + - Set({compiler/rustc_monomorphize}) + - Set({compiler/rustc_next_trait_solver}) + - Set({compiler/rustc_parse}) + - Set({compiler/rustc_parse_format}) + - Set({compiler/rustc_passes}) + - Set({compiler/rustc_pattern_analysis}) + - Set({compiler/rustc_privacy}) + - Set({compiler/rustc_proc_macro}) + - Set({compiler/rustc_public}) + - Set({compiler/rustc_public_bridge}) + - Set({compiler/rustc_query_impl}) + - Set({compiler/rustc_resolve}) + - Set({compiler/rustc_sanitizers}) + - Set({compiler/rustc_serialize}) + - Set({compiler/rustc_session}) + - Set({compiler/rustc_span}) + - Set({compiler/rustc_symbol_mangling}) + - Set({compiler/rustc_target}) + - Set({compiler/rustc_thread_pool}) + - Set({compiler/rustc_trait_selection}) + - Set({compiler/rustc_traits}) + - Set({compiler/rustc_transmute}) + - Set({compiler/rustc_ty_utils}) + - Set({compiler/rustc_type_ir}) + - Set({compiler/rustc_type_ir_macros}) + - Set({compiler/rustc_windows_rc}) [Build] compile::Assemble targets: [x86_64-unknown-linux-gnu] - - Set({build::compiler}) - - Set({build::compiler/rustc}) + - Set({compiler}) + - Set({compiler/rustc}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_compiletest.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_compiletest.snap index 97f60bfa0370b..f55daf927048f 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_compiletest.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_compiletest.snap @@ -4,4 +4,4 @@ expression: build compiletest --- [Build] tool::Compiletest targets: [aarch64-unknown-linux-gnu] - - Set({build::src/tools/compiletest}) + - Set({src/tools/compiletest}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_library.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_library.snap index 3fccd99850b8e..708cfc283739f 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_library.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_library.snap @@ -4,19 +4,19 @@ expression: build library --- [Build] compile::Std targets: [aarch64-unknown-linux-gnu] - - Set({build::library}) - - Set({build::library/alloc}) - - Set({build::library/compiler-builtins/compiler-builtins}) - - Set({build::library/core}) - - Set({build::library/panic_abort}) - - Set({build::library/panic_unwind}) - - Set({build::library/proc_macro}) - - Set({build::library/rustc-std-workspace-core}) - - Set({build::library/std}) - - Set({build::library/std_detect}) - - Set({build::library/sysroot}) - - Set({build::library/test}) - - Set({build::library/unwind}) + - Set({library}) + - Set({library/alloc}) + - Set({library/compiler-builtins/compiler-builtins}) + - Set({library/core}) + - Set({library/panic_abort}) + - Set({library/panic_unwind}) + - Set({library/proc_macro}) + - Set({library/rustc-std-workspace-core}) + - Set({library/std}) + - Set({library/std_detect}) + - Set({library/sysroot}) + - Set({library/test}) + - Set({library/unwind}) [Build] compile::StartupObjects targets: [aarch64-unknown-linux-gnu] - - Set({build::library/rtstartup}) + - Set({library/rtstartup}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_llvm.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_llvm.snap index f4764a5279a71..10d2804dacac0 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_llvm.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_llvm.snap @@ -4,4 +4,4 @@ expression: build llvm --- [Build] llvm::Llvm targets: [x86_64-unknown-linux-gnu] - - Set({build::src/llvm-project/llvm}) + - Set({src/llvm-project/llvm}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_rustc.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_rustc.snap index a6d3d13154ed4..8b9c54bcdd60c 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_rustc.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_rustc.snap @@ -4,4 +4,4 @@ expression: build rustc --- [Build] compile::Assemble targets: [x86_64-unknown-linux-gnu] - - Set({build::compiler/rustc}) + - Set({compiler/rustc}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_rustc_llvm.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_rustc_llvm.snap index 30f598ddb7816..1ea2168282d04 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_rustc_llvm.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_rustc_llvm.snap @@ -4,4 +4,4 @@ expression: build rustc_llvm --- [Build] compile::Rustc targets: [x86_64-unknown-linux-gnu] - - Set({build::compiler/rustc_llvm}) + - Set({compiler/rustc_llvm}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_rustdoc.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_rustdoc.snap index 9a98092d714f4..b20902dceda9f 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_rustdoc.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_rustdoc.snap @@ -4,4 +4,4 @@ expression: build rustdoc --- [Build] tool::Rustdoc targets: [x86_64-unknown-linux-gnu] - - Set({build::src/tools/rustdoc}) + - Set({src/tools/rustdoc}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_sysroot.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_sysroot.snap index a397095800a78..a06457726d926 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_sysroot.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_build_sysroot.snap @@ -4,4 +4,4 @@ expression: build sysroot --- [Build] compile::Std targets: [aarch64-unknown-linux-gnu] - - Set({build::library/sysroot}) + - Set({library/sysroot}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check.snap index 89ec347d41696..b47af601cdaf8 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check.snap @@ -4,129 +4,129 @@ expression: check --- [Check] check::Rustc targets: [x86_64-unknown-linux-gnu] - - Set({check::compiler}) - - Set({check::compiler/rustc}) - - Set({check::compiler/rustc_abi}) - - Set({check::compiler/rustc_arena}) - - Set({check::compiler/rustc_ast}) - - Set({check::compiler/rustc_ast_ir}) - - Set({check::compiler/rustc_ast_lowering}) - - Set({check::compiler/rustc_ast_passes}) - - Set({check::compiler/rustc_ast_pretty}) - - Set({check::compiler/rustc_attr_parsing}) - - Set({check::compiler/rustc_baked_icu_data}) - - Set({check::compiler/rustc_borrowck}) - - Set({check::compiler/rustc_builtin_macros}) - - Set({check::compiler/rustc_codegen_llvm}) - - Set({check::compiler/rustc_codegen_ssa}) - - Set({check::compiler/rustc_const_eval}) - - Set({check::compiler/rustc_data_structures}) - - Set({check::compiler/rustc_driver}) - - Set({check::compiler/rustc_driver_impl}) - - Set({check::compiler/rustc_error_codes}) - - Set({check::compiler/rustc_error_messages}) - - Set({check::compiler/rustc_errors}) - - Set({check::compiler/rustc_expand}) - - Set({check::compiler/rustc_feature}) - - Set({check::compiler/rustc_fs_util}) - - Set({check::compiler/rustc_graphviz}) - - Set({check::compiler/rustc_hashes}) - - Set({check::compiler/rustc_hir}) - - Set({check::compiler/rustc_hir_analysis}) - - Set({check::compiler/rustc_hir_id}) - - Set({check::compiler/rustc_hir_pretty}) - - Set({check::compiler/rustc_hir_typeck}) - - Set({check::compiler/rustc_incremental}) - - Set({check::compiler/rustc_index}) - - Set({check::compiler/rustc_index_macros}) - - Set({check::compiler/rustc_infer}) - - Set({check::compiler/rustc_interface}) - - Set({check::compiler/rustc_lexer}) - - Set({check::compiler/rustc_lint}) - - Set({check::compiler/rustc_lint_defs}) - - Set({check::compiler/rustc_llvm}) - - Set({check::compiler/rustc_log}) - - Set({check::compiler/rustc_macros}) - - Set({check::compiler/rustc_metadata}) - - Set({check::compiler/rustc_middle}) - - Set({check::compiler/rustc_mir_build}) - - Set({check::compiler/rustc_mir_dataflow}) - - Set({check::compiler/rustc_mir_transform}) - - Set({check::compiler/rustc_monomorphize}) - - Set({check::compiler/rustc_next_trait_solver}) - - Set({check::compiler/rustc_parse}) - - Set({check::compiler/rustc_parse_format}) - - Set({check::compiler/rustc_passes}) - - Set({check::compiler/rustc_pattern_analysis}) - - Set({check::compiler/rustc_privacy}) - - Set({check::compiler/rustc_proc_macro}) - - Set({check::compiler/rustc_public}) - - Set({check::compiler/rustc_public_bridge}) - - Set({check::compiler/rustc_query_impl}) - - Set({check::compiler/rustc_resolve}) - - Set({check::compiler/rustc_sanitizers}) - - Set({check::compiler/rustc_serialize}) - - Set({check::compiler/rustc_session}) - - Set({check::compiler/rustc_span}) - - Set({check::compiler/rustc_symbol_mangling}) - - Set({check::compiler/rustc_target}) - - Set({check::compiler/rustc_thread_pool}) - - Set({check::compiler/rustc_trait_selection}) - - Set({check::compiler/rustc_traits}) - - Set({check::compiler/rustc_transmute}) - - Set({check::compiler/rustc_ty_utils}) - - Set({check::compiler/rustc_type_ir}) - - Set({check::compiler/rustc_type_ir_macros}) - - Set({check::compiler/rustc_windows_rc}) + - Set({compiler}) + - Set({compiler/rustc}) + - Set({compiler/rustc_abi}) + - Set({compiler/rustc_arena}) + - Set({compiler/rustc_ast}) + - Set({compiler/rustc_ast_ir}) + - Set({compiler/rustc_ast_lowering}) + - Set({compiler/rustc_ast_passes}) + - Set({compiler/rustc_ast_pretty}) + - Set({compiler/rustc_attr_parsing}) + - Set({compiler/rustc_baked_icu_data}) + - Set({compiler/rustc_borrowck}) + - Set({compiler/rustc_builtin_macros}) + - Set({compiler/rustc_codegen_llvm}) + - Set({compiler/rustc_codegen_ssa}) + - Set({compiler/rustc_const_eval}) + - Set({compiler/rustc_data_structures}) + - Set({compiler/rustc_driver}) + - Set({compiler/rustc_driver_impl}) + - Set({compiler/rustc_error_codes}) + - Set({compiler/rustc_error_messages}) + - Set({compiler/rustc_errors}) + - Set({compiler/rustc_expand}) + - Set({compiler/rustc_feature}) + - Set({compiler/rustc_fs_util}) + - Set({compiler/rustc_graphviz}) + - Set({compiler/rustc_hashes}) + - Set({compiler/rustc_hir}) + - Set({compiler/rustc_hir_analysis}) + - Set({compiler/rustc_hir_id}) + - Set({compiler/rustc_hir_pretty}) + - Set({compiler/rustc_hir_typeck}) + - Set({compiler/rustc_incremental}) + - Set({compiler/rustc_index}) + - Set({compiler/rustc_index_macros}) + - Set({compiler/rustc_infer}) + - Set({compiler/rustc_interface}) + - Set({compiler/rustc_lexer}) + - Set({compiler/rustc_lint}) + - Set({compiler/rustc_lint_defs}) + - Set({compiler/rustc_llvm}) + - Set({compiler/rustc_log}) + - Set({compiler/rustc_macros}) + - Set({compiler/rustc_metadata}) + - Set({compiler/rustc_middle}) + - Set({compiler/rustc_mir_build}) + - Set({compiler/rustc_mir_dataflow}) + - Set({compiler/rustc_mir_transform}) + - Set({compiler/rustc_monomorphize}) + - Set({compiler/rustc_next_trait_solver}) + - Set({compiler/rustc_parse}) + - Set({compiler/rustc_parse_format}) + - Set({compiler/rustc_passes}) + - Set({compiler/rustc_pattern_analysis}) + - Set({compiler/rustc_privacy}) + - Set({compiler/rustc_proc_macro}) + - Set({compiler/rustc_public}) + - Set({compiler/rustc_public_bridge}) + - Set({compiler/rustc_query_impl}) + - Set({compiler/rustc_resolve}) + - Set({compiler/rustc_sanitizers}) + - Set({compiler/rustc_serialize}) + - Set({compiler/rustc_session}) + - Set({compiler/rustc_span}) + - Set({compiler/rustc_symbol_mangling}) + - Set({compiler/rustc_target}) + - Set({compiler/rustc_thread_pool}) + - Set({compiler/rustc_trait_selection}) + - Set({compiler/rustc_traits}) + - Set({compiler/rustc_transmute}) + - Set({compiler/rustc_ty_utils}) + - Set({compiler/rustc_type_ir}) + - Set({compiler/rustc_type_ir_macros}) + - Set({compiler/rustc_windows_rc}) [Check] check::Rustdoc targets: [x86_64-unknown-linux-gnu] - - Set({check::src/librustdoc, check::src/tools/rustdoc}) + - Set({src/librustdoc, src/tools/rustdoc}) [Check] check::CraneliftCodegenBackend targets: [x86_64-unknown-linux-gnu] - - Set({check::cg_clif}) - - Set({check::rustc_codegen_cranelift}) + - Set({cg_clif}) + - Set({rustc_codegen_cranelift}) [Check] check::GccCodegenBackend targets: [x86_64-unknown-linux-gnu] - - Set({check::cg_gcc}) - - Set({check::rustc_codegen_gcc}) + - Set({cg_gcc}) + - Set({rustc_codegen_gcc}) [Check] check::Clippy targets: [x86_64-unknown-linux-gnu] - - Set({check::src/tools/clippy}) + - Set({src/tools/clippy}) [Check] check::Miri targets: [x86_64-unknown-linux-gnu] - - Set({check::src/tools/miri}) + - Set({src/tools/miri}) [Check] check::CargoMiri targets: [x86_64-unknown-linux-gnu] - - Set({check::src/tools/miri/cargo-miri}) + - Set({src/tools/miri/cargo-miri}) [Check] check::MiroptTestTools targets: [x86_64-unknown-linux-gnu] - - Set({check::src/tools/miropt-test-tools}) + - Set({src/tools/miropt-test-tools}) [Check] check::Rustfmt targets: [x86_64-unknown-linux-gnu] - - Set({check::src/tools/rustfmt}) + - Set({src/tools/rustfmt}) [Check] check::RustAnalyzer targets: [x86_64-unknown-linux-gnu] - - Set({check::src/tools/rust-analyzer}) + - Set({src/tools/rust-analyzer}) [Check] check::TestFloatParse targets: [x86_64-unknown-linux-gnu] - - Set({check::src/tools/test-float-parse}) + - Set({src/tools/test-float-parse}) [Check] check::FeaturesStatusDump targets: [x86_64-unknown-linux-gnu] - - Set({check::src/tools/features-status-dump}) + - Set({src/tools/features-status-dump}) [Check] check::Std targets: [aarch64-unknown-linux-gnu] - - Set({check::library}) - - Set({check::library/alloc}) - - Set({check::library/alloctests}) - - Set({check::library/compiler-builtins/compiler-builtins}) - - Set({check::library/core}) - - Set({check::library/coretests}) - - Set({check::library/panic_abort}) - - Set({check::library/panic_unwind}) - - Set({check::library/proc_macro}) - - Set({check::library/rustc-std-workspace-core}) - - Set({check::library/std}) - - Set({check::library/std_detect}) - - Set({check::library/sysroot}) - - Set({check::library/test}) - - Set({check::library/unwind}) + - Set({library}) + - Set({library/alloc}) + - Set({library/alloctests}) + - Set({library/compiler-builtins/compiler-builtins}) + - Set({library/core}) + - Set({library/coretests}) + - Set({library/panic_abort}) + - Set({library/panic_unwind}) + - Set({library/proc_macro}) + - Set({library/rustc-std-workspace-core}) + - Set({library/std}) + - Set({library/std_detect}) + - Set({library/sysroot}) + - Set({library/test}) + - Set({library/unwind}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_bootstrap.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_bootstrap.snap index a746783b3909c..f50e113ce6cfb 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_bootstrap.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_bootstrap.snap @@ -4,4 +4,4 @@ expression: check bootstrap --- [Check] check::Bootstrap targets: [x86_64-unknown-linux-gnu] - - Set({check::src/bootstrap}) + - Set({src/bootstrap}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_compiler.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_compiler.snap index dab86b792127f..e8eea8e143227 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_compiler.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_compiler.snap @@ -4,77 +4,77 @@ expression: check compiler --- [Check] check::Rustc targets: [x86_64-unknown-linux-gnu] - - Set({check::compiler}) - - Set({check::compiler/rustc}) - - Set({check::compiler/rustc_abi}) - - Set({check::compiler/rustc_arena}) - - Set({check::compiler/rustc_ast}) - - Set({check::compiler/rustc_ast_ir}) - - Set({check::compiler/rustc_ast_lowering}) - - Set({check::compiler/rustc_ast_passes}) - - Set({check::compiler/rustc_ast_pretty}) - - Set({check::compiler/rustc_attr_parsing}) - - Set({check::compiler/rustc_baked_icu_data}) - - Set({check::compiler/rustc_borrowck}) - - Set({check::compiler/rustc_builtin_macros}) - - Set({check::compiler/rustc_codegen_llvm}) - - Set({check::compiler/rustc_codegen_ssa}) - - Set({check::compiler/rustc_const_eval}) - - Set({check::compiler/rustc_data_structures}) - - Set({check::compiler/rustc_driver}) - - Set({check::compiler/rustc_driver_impl}) - - Set({check::compiler/rustc_error_codes}) - - Set({check::compiler/rustc_error_messages}) - - Set({check::compiler/rustc_errors}) - - Set({check::compiler/rustc_expand}) - - Set({check::compiler/rustc_feature}) - - Set({check::compiler/rustc_fs_util}) - - Set({check::compiler/rustc_graphviz}) - - Set({check::compiler/rustc_hashes}) - - Set({check::compiler/rustc_hir}) - - Set({check::compiler/rustc_hir_analysis}) - - Set({check::compiler/rustc_hir_id}) - - Set({check::compiler/rustc_hir_pretty}) - - Set({check::compiler/rustc_hir_typeck}) - - Set({check::compiler/rustc_incremental}) - - Set({check::compiler/rustc_index}) - - Set({check::compiler/rustc_index_macros}) - - Set({check::compiler/rustc_infer}) - - Set({check::compiler/rustc_interface}) - - Set({check::compiler/rustc_lexer}) - - Set({check::compiler/rustc_lint}) - - Set({check::compiler/rustc_lint_defs}) - - Set({check::compiler/rustc_llvm}) - - Set({check::compiler/rustc_log}) - - Set({check::compiler/rustc_macros}) - - Set({check::compiler/rustc_metadata}) - - Set({check::compiler/rustc_middle}) - - Set({check::compiler/rustc_mir_build}) - - Set({check::compiler/rustc_mir_dataflow}) - - Set({check::compiler/rustc_mir_transform}) - - Set({check::compiler/rustc_monomorphize}) - - Set({check::compiler/rustc_next_trait_solver}) - - Set({check::compiler/rustc_parse}) - - Set({check::compiler/rustc_parse_format}) - - Set({check::compiler/rustc_passes}) - - Set({check::compiler/rustc_pattern_analysis}) - - Set({check::compiler/rustc_privacy}) - - Set({check::compiler/rustc_proc_macro}) - - Set({check::compiler/rustc_public}) - - Set({check::compiler/rustc_public_bridge}) - - Set({check::compiler/rustc_query_impl}) - - Set({check::compiler/rustc_resolve}) - - Set({check::compiler/rustc_sanitizers}) - - Set({check::compiler/rustc_serialize}) - - Set({check::compiler/rustc_session}) - - Set({check::compiler/rustc_span}) - - Set({check::compiler/rustc_symbol_mangling}) - - Set({check::compiler/rustc_target}) - - Set({check::compiler/rustc_thread_pool}) - - Set({check::compiler/rustc_trait_selection}) - - Set({check::compiler/rustc_traits}) - - Set({check::compiler/rustc_transmute}) - - Set({check::compiler/rustc_ty_utils}) - - Set({check::compiler/rustc_type_ir}) - - Set({check::compiler/rustc_type_ir_macros}) - - Set({check::compiler/rustc_windows_rc}) + - Set({compiler}) + - Set({compiler/rustc}) + - Set({compiler/rustc_abi}) + - Set({compiler/rustc_arena}) + - Set({compiler/rustc_ast}) + - Set({compiler/rustc_ast_ir}) + - Set({compiler/rustc_ast_lowering}) + - Set({compiler/rustc_ast_passes}) + - Set({compiler/rustc_ast_pretty}) + - Set({compiler/rustc_attr_parsing}) + - Set({compiler/rustc_baked_icu_data}) + - Set({compiler/rustc_borrowck}) + - Set({compiler/rustc_builtin_macros}) + - Set({compiler/rustc_codegen_llvm}) + - Set({compiler/rustc_codegen_ssa}) + - Set({compiler/rustc_const_eval}) + - Set({compiler/rustc_data_structures}) + - Set({compiler/rustc_driver}) + - Set({compiler/rustc_driver_impl}) + - Set({compiler/rustc_error_codes}) + - Set({compiler/rustc_error_messages}) + - Set({compiler/rustc_errors}) + - Set({compiler/rustc_expand}) + - Set({compiler/rustc_feature}) + - Set({compiler/rustc_fs_util}) + - Set({compiler/rustc_graphviz}) + - Set({compiler/rustc_hashes}) + - Set({compiler/rustc_hir}) + - Set({compiler/rustc_hir_analysis}) + - Set({compiler/rustc_hir_id}) + - Set({compiler/rustc_hir_pretty}) + - Set({compiler/rustc_hir_typeck}) + - Set({compiler/rustc_incremental}) + - Set({compiler/rustc_index}) + - Set({compiler/rustc_index_macros}) + - Set({compiler/rustc_infer}) + - Set({compiler/rustc_interface}) + - Set({compiler/rustc_lexer}) + - Set({compiler/rustc_lint}) + - Set({compiler/rustc_lint_defs}) + - Set({compiler/rustc_llvm}) + - Set({compiler/rustc_log}) + - Set({compiler/rustc_macros}) + - Set({compiler/rustc_metadata}) + - Set({compiler/rustc_middle}) + - Set({compiler/rustc_mir_build}) + - Set({compiler/rustc_mir_dataflow}) + - Set({compiler/rustc_mir_transform}) + - Set({compiler/rustc_monomorphize}) + - Set({compiler/rustc_next_trait_solver}) + - Set({compiler/rustc_parse}) + - Set({compiler/rustc_parse_format}) + - Set({compiler/rustc_passes}) + - Set({compiler/rustc_pattern_analysis}) + - Set({compiler/rustc_privacy}) + - Set({compiler/rustc_proc_macro}) + - Set({compiler/rustc_public}) + - Set({compiler/rustc_public_bridge}) + - Set({compiler/rustc_query_impl}) + - Set({compiler/rustc_resolve}) + - Set({compiler/rustc_sanitizers}) + - Set({compiler/rustc_serialize}) + - Set({compiler/rustc_session}) + - Set({compiler/rustc_span}) + - Set({compiler/rustc_symbol_mangling}) + - Set({compiler/rustc_target}) + - Set({compiler/rustc_thread_pool}) + - Set({compiler/rustc_trait_selection}) + - Set({compiler/rustc_traits}) + - Set({compiler/rustc_transmute}) + - Set({compiler/rustc_ty_utils}) + - Set({compiler/rustc_type_ir}) + - Set({compiler/rustc_type_ir_macros}) + - Set({compiler/rustc_windows_rc}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_compiletest.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_compiletest.snap index 8f772bc55b82b..ecf2b6505efb0 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_compiletest.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_compiletest.snap @@ -4,4 +4,4 @@ expression: check compiletest --- [Check] check::Compiletest targets: [x86_64-unknown-linux-gnu] - - Set({check::src/tools/compiletest}) + - Set({src/tools/compiletest}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_compiletest_include_default_paths.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_compiletest_include_default_paths.snap index 16a88aca0e2d0..399110b4d70d7 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_compiletest_include_default_paths.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_compiletest_include_default_paths.snap @@ -4,132 +4,132 @@ expression: check compiletest --include-default-paths --- [Check] check::Rustc targets: [x86_64-unknown-linux-gnu] - - Set({check::compiler}) - - Set({check::compiler/rustc}) - - Set({check::compiler/rustc_abi}) - - Set({check::compiler/rustc_arena}) - - Set({check::compiler/rustc_ast}) - - Set({check::compiler/rustc_ast_ir}) - - Set({check::compiler/rustc_ast_lowering}) - - Set({check::compiler/rustc_ast_passes}) - - Set({check::compiler/rustc_ast_pretty}) - - Set({check::compiler/rustc_attr_parsing}) - - Set({check::compiler/rustc_baked_icu_data}) - - Set({check::compiler/rustc_borrowck}) - - Set({check::compiler/rustc_builtin_macros}) - - Set({check::compiler/rustc_codegen_llvm}) - - Set({check::compiler/rustc_codegen_ssa}) - - Set({check::compiler/rustc_const_eval}) - - Set({check::compiler/rustc_data_structures}) - - Set({check::compiler/rustc_driver}) - - Set({check::compiler/rustc_driver_impl}) - - Set({check::compiler/rustc_error_codes}) - - Set({check::compiler/rustc_error_messages}) - - Set({check::compiler/rustc_errors}) - - Set({check::compiler/rustc_expand}) - - Set({check::compiler/rustc_feature}) - - Set({check::compiler/rustc_fs_util}) - - Set({check::compiler/rustc_graphviz}) - - Set({check::compiler/rustc_hashes}) - - Set({check::compiler/rustc_hir}) - - Set({check::compiler/rustc_hir_analysis}) - - Set({check::compiler/rustc_hir_id}) - - Set({check::compiler/rustc_hir_pretty}) - - Set({check::compiler/rustc_hir_typeck}) - - Set({check::compiler/rustc_incremental}) - - Set({check::compiler/rustc_index}) - - Set({check::compiler/rustc_index_macros}) - - Set({check::compiler/rustc_infer}) - - Set({check::compiler/rustc_interface}) - - Set({check::compiler/rustc_lexer}) - - Set({check::compiler/rustc_lint}) - - Set({check::compiler/rustc_lint_defs}) - - Set({check::compiler/rustc_llvm}) - - Set({check::compiler/rustc_log}) - - Set({check::compiler/rustc_macros}) - - Set({check::compiler/rustc_metadata}) - - Set({check::compiler/rustc_middle}) - - Set({check::compiler/rustc_mir_build}) - - Set({check::compiler/rustc_mir_dataflow}) - - Set({check::compiler/rustc_mir_transform}) - - Set({check::compiler/rustc_monomorphize}) - - Set({check::compiler/rustc_next_trait_solver}) - - Set({check::compiler/rustc_parse}) - - Set({check::compiler/rustc_parse_format}) - - Set({check::compiler/rustc_passes}) - - Set({check::compiler/rustc_pattern_analysis}) - - Set({check::compiler/rustc_privacy}) - - Set({check::compiler/rustc_proc_macro}) - - Set({check::compiler/rustc_public}) - - Set({check::compiler/rustc_public_bridge}) - - Set({check::compiler/rustc_query_impl}) - - Set({check::compiler/rustc_resolve}) - - Set({check::compiler/rustc_sanitizers}) - - Set({check::compiler/rustc_serialize}) - - Set({check::compiler/rustc_session}) - - Set({check::compiler/rustc_span}) - - Set({check::compiler/rustc_symbol_mangling}) - - Set({check::compiler/rustc_target}) - - Set({check::compiler/rustc_thread_pool}) - - Set({check::compiler/rustc_trait_selection}) - - Set({check::compiler/rustc_traits}) - - Set({check::compiler/rustc_transmute}) - - Set({check::compiler/rustc_ty_utils}) - - Set({check::compiler/rustc_type_ir}) - - Set({check::compiler/rustc_type_ir_macros}) - - Set({check::compiler/rustc_windows_rc}) + - Set({compiler}) + - Set({compiler/rustc}) + - Set({compiler/rustc_abi}) + - Set({compiler/rustc_arena}) + - Set({compiler/rustc_ast}) + - Set({compiler/rustc_ast_ir}) + - Set({compiler/rustc_ast_lowering}) + - Set({compiler/rustc_ast_passes}) + - Set({compiler/rustc_ast_pretty}) + - Set({compiler/rustc_attr_parsing}) + - Set({compiler/rustc_baked_icu_data}) + - Set({compiler/rustc_borrowck}) + - Set({compiler/rustc_builtin_macros}) + - Set({compiler/rustc_codegen_llvm}) + - Set({compiler/rustc_codegen_ssa}) + - Set({compiler/rustc_const_eval}) + - Set({compiler/rustc_data_structures}) + - Set({compiler/rustc_driver}) + - Set({compiler/rustc_driver_impl}) + - Set({compiler/rustc_error_codes}) + - Set({compiler/rustc_error_messages}) + - Set({compiler/rustc_errors}) + - Set({compiler/rustc_expand}) + - Set({compiler/rustc_feature}) + - Set({compiler/rustc_fs_util}) + - Set({compiler/rustc_graphviz}) + - Set({compiler/rustc_hashes}) + - Set({compiler/rustc_hir}) + - Set({compiler/rustc_hir_analysis}) + - Set({compiler/rustc_hir_id}) + - Set({compiler/rustc_hir_pretty}) + - Set({compiler/rustc_hir_typeck}) + - Set({compiler/rustc_incremental}) + - Set({compiler/rustc_index}) + - Set({compiler/rustc_index_macros}) + - Set({compiler/rustc_infer}) + - Set({compiler/rustc_interface}) + - Set({compiler/rustc_lexer}) + - Set({compiler/rustc_lint}) + - Set({compiler/rustc_lint_defs}) + - Set({compiler/rustc_llvm}) + - Set({compiler/rustc_log}) + - Set({compiler/rustc_macros}) + - Set({compiler/rustc_metadata}) + - Set({compiler/rustc_middle}) + - Set({compiler/rustc_mir_build}) + - Set({compiler/rustc_mir_dataflow}) + - Set({compiler/rustc_mir_transform}) + - Set({compiler/rustc_monomorphize}) + - Set({compiler/rustc_next_trait_solver}) + - Set({compiler/rustc_parse}) + - Set({compiler/rustc_parse_format}) + - Set({compiler/rustc_passes}) + - Set({compiler/rustc_pattern_analysis}) + - Set({compiler/rustc_privacy}) + - Set({compiler/rustc_proc_macro}) + - Set({compiler/rustc_public}) + - Set({compiler/rustc_public_bridge}) + - Set({compiler/rustc_query_impl}) + - Set({compiler/rustc_resolve}) + - Set({compiler/rustc_sanitizers}) + - Set({compiler/rustc_serialize}) + - Set({compiler/rustc_session}) + - Set({compiler/rustc_span}) + - Set({compiler/rustc_symbol_mangling}) + - Set({compiler/rustc_target}) + - Set({compiler/rustc_thread_pool}) + - Set({compiler/rustc_trait_selection}) + - Set({compiler/rustc_traits}) + - Set({compiler/rustc_transmute}) + - Set({compiler/rustc_ty_utils}) + - Set({compiler/rustc_type_ir}) + - Set({compiler/rustc_type_ir_macros}) + - Set({compiler/rustc_windows_rc}) [Check] check::Rustdoc targets: [x86_64-unknown-linux-gnu] - - Set({check::src/librustdoc, check::src/tools/rustdoc}) + - Set({src/librustdoc, src/tools/rustdoc}) [Check] check::CraneliftCodegenBackend targets: [x86_64-unknown-linux-gnu] - - Set({check::cg_clif}) - - Set({check::rustc_codegen_cranelift}) + - Set({cg_clif}) + - Set({rustc_codegen_cranelift}) [Check] check::GccCodegenBackend targets: [x86_64-unknown-linux-gnu] - - Set({check::cg_gcc}) - - Set({check::rustc_codegen_gcc}) + - Set({cg_gcc}) + - Set({rustc_codegen_gcc}) [Check] check::Clippy targets: [x86_64-unknown-linux-gnu] - - Set({check::src/tools/clippy}) + - Set({src/tools/clippy}) [Check] check::Miri targets: [x86_64-unknown-linux-gnu] - - Set({check::src/tools/miri}) + - Set({src/tools/miri}) [Check] check::CargoMiri targets: [x86_64-unknown-linux-gnu] - - Set({check::src/tools/miri/cargo-miri}) + - Set({src/tools/miri/cargo-miri}) [Check] check::MiroptTestTools targets: [x86_64-unknown-linux-gnu] - - Set({check::src/tools/miropt-test-tools}) + - Set({src/tools/miropt-test-tools}) [Check] check::Rustfmt targets: [x86_64-unknown-linux-gnu] - - Set({check::src/tools/rustfmt}) + - Set({src/tools/rustfmt}) [Check] check::RustAnalyzer targets: [x86_64-unknown-linux-gnu] - - Set({check::src/tools/rust-analyzer}) + - Set({src/tools/rust-analyzer}) [Check] check::TestFloatParse targets: [x86_64-unknown-linux-gnu] - - Set({check::src/tools/test-float-parse}) + - Set({src/tools/test-float-parse}) [Check] check::FeaturesStatusDump targets: [x86_64-unknown-linux-gnu] - - Set({check::src/tools/features-status-dump}) + - Set({src/tools/features-status-dump}) [Check] check::Std targets: [aarch64-unknown-linux-gnu] - - Set({check::library}) - - Set({check::library/alloc}) - - Set({check::library/alloctests}) - - Set({check::library/compiler-builtins/compiler-builtins}) - - Set({check::library/core}) - - Set({check::library/coretests}) - - Set({check::library/panic_abort}) - - Set({check::library/panic_unwind}) - - Set({check::library/proc_macro}) - - Set({check::library/rustc-std-workspace-core}) - - Set({check::library/std}) - - Set({check::library/std_detect}) - - Set({check::library/sysroot}) - - Set({check::library/test}) - - Set({check::library/unwind}) + - Set({library}) + - Set({library/alloc}) + - Set({library/alloctests}) + - Set({library/compiler-builtins/compiler-builtins}) + - Set({library/core}) + - Set({library/coretests}) + - Set({library/panic_abort}) + - Set({library/panic_unwind}) + - Set({library/proc_macro}) + - Set({library/rustc-std-workspace-core}) + - Set({library/std}) + - Set({library/std_detect}) + - Set({library/sysroot}) + - Set({library/test}) + - Set({library/unwind}) [Check] check::Compiletest targets: [x86_64-unknown-linux-gnu] - - Set({check::src/tools/compiletest}) + - Set({src/tools/compiletest}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_library.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_library.snap index 1a41aa98555b6..8e53a6f0560ea 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_library.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_library.snap @@ -4,18 +4,18 @@ expression: check library --- [Check] check::Std targets: [aarch64-unknown-linux-gnu] - - Set({check::library}) - - Set({check::library/alloc}) - - Set({check::library/alloctests}) - - Set({check::library/compiler-builtins/compiler-builtins}) - - Set({check::library/core}) - - Set({check::library/coretests}) - - Set({check::library/panic_abort}) - - Set({check::library/panic_unwind}) - - Set({check::library/proc_macro}) - - Set({check::library/rustc-std-workspace-core}) - - Set({check::library/std}) - - Set({check::library/std_detect}) - - Set({check::library/sysroot}) - - Set({check::library/test}) - - Set({check::library/unwind}) + - Set({library}) + - Set({library/alloc}) + - Set({library/alloctests}) + - Set({library/compiler-builtins/compiler-builtins}) + - Set({library/core}) + - Set({library/coretests}) + - Set({library/panic_abort}) + - Set({library/panic_unwind}) + - Set({library/proc_macro}) + - Set({library/rustc-std-workspace-core}) + - Set({library/std}) + - Set({library/std_detect}) + - Set({library/sysroot}) + - Set({library/test}) + - Set({library/unwind}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_rustc.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_rustc.snap index 9aed81d2c22d6..75a7e97d4c2cf 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_rustc.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_rustc.snap @@ -4,4 +4,4 @@ expression: check rustc --- [Check] check::Rustc targets: [x86_64-unknown-linux-gnu] - - Set({check::compiler/rustc}) + - Set({compiler/rustc}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_rustdoc.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_rustdoc.snap index 0a6b84f803c13..5814ba8d3b290 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_rustdoc.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_check_rustdoc.snap @@ -4,4 +4,4 @@ expression: check rustdoc --- [Check] check::Rustdoc targets: [x86_64-unknown-linux-gnu] - - Set({check::src/tools/rustdoc}) + - Set({src/tools/rustdoc}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_clean.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_clean.snap index 30eb798f39938..4a85dfeb3740a 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_clean.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_clean.snap @@ -4,4 +4,4 @@ expression: clean --- [Clean] clean::CleanAll targets: [aarch64-unknown-linux-gnu] - - Set({clean::default}) + - Set({default}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_clippy.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_clippy.snap index 827f2f8b60acb..a8a4d4ed2286b 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_clippy.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_clippy.snap @@ -4,92 +4,92 @@ expression: clippy --- [Clippy] clippy::Std targets: [aarch64-unknown-linux-gnu] - - Set({clippy::library}) - - Set({clippy::library/alloc}) - - Set({clippy::library/compiler-builtins/compiler-builtins}) - - Set({clippy::library/core}) - - Set({clippy::library/panic_abort}) - - Set({clippy::library/panic_unwind}) - - Set({clippy::library/proc_macro}) - - Set({clippy::library/rustc-std-workspace-core}) - - Set({clippy::library/std}) - - Set({clippy::library/std_detect}) - - Set({clippy::library/sysroot}) - - Set({clippy::library/test}) - - Set({clippy::library/unwind}) + - Set({library}) + - Set({library/alloc}) + - Set({library/compiler-builtins/compiler-builtins}) + - Set({library/core}) + - Set({library/panic_abort}) + - Set({library/panic_unwind}) + - Set({library/proc_macro}) + - Set({library/rustc-std-workspace-core}) + - Set({library/std}) + - Set({library/std_detect}) + - Set({library/sysroot}) + - Set({library/test}) + - Set({library/unwind}) [Clippy] clippy::Rustc targets: [x86_64-unknown-linux-gnu] - - Set({clippy::compiler}) - - Set({clippy::compiler/rustc}) - - Set({clippy::compiler/rustc_abi}) - - Set({clippy::compiler/rustc_arena}) - - Set({clippy::compiler/rustc_ast}) - - Set({clippy::compiler/rustc_ast_ir}) - - Set({clippy::compiler/rustc_ast_lowering}) - - Set({clippy::compiler/rustc_ast_passes}) - - Set({clippy::compiler/rustc_ast_pretty}) - - Set({clippy::compiler/rustc_attr_parsing}) - - Set({clippy::compiler/rustc_baked_icu_data}) - - Set({clippy::compiler/rustc_borrowck}) - - Set({clippy::compiler/rustc_builtin_macros}) - - Set({clippy::compiler/rustc_codegen_llvm}) - - Set({clippy::compiler/rustc_codegen_ssa}) - - Set({clippy::compiler/rustc_const_eval}) - - Set({clippy::compiler/rustc_data_structures}) - - Set({clippy::compiler/rustc_driver}) - - Set({clippy::compiler/rustc_driver_impl}) - - Set({clippy::compiler/rustc_error_codes}) - - Set({clippy::compiler/rustc_error_messages}) - - Set({clippy::compiler/rustc_errors}) - - Set({clippy::compiler/rustc_expand}) - - Set({clippy::compiler/rustc_feature}) - - Set({clippy::compiler/rustc_fs_util}) - - Set({clippy::compiler/rustc_graphviz}) - - Set({clippy::compiler/rustc_hashes}) - - Set({clippy::compiler/rustc_hir}) - - Set({clippy::compiler/rustc_hir_analysis}) - - Set({clippy::compiler/rustc_hir_id}) - - Set({clippy::compiler/rustc_hir_pretty}) - - Set({clippy::compiler/rustc_hir_typeck}) - - Set({clippy::compiler/rustc_incremental}) - - Set({clippy::compiler/rustc_index}) - - Set({clippy::compiler/rustc_index_macros}) - - Set({clippy::compiler/rustc_infer}) - - Set({clippy::compiler/rustc_interface}) - - Set({clippy::compiler/rustc_lexer}) - - Set({clippy::compiler/rustc_lint}) - - Set({clippy::compiler/rustc_lint_defs}) - - Set({clippy::compiler/rustc_llvm}) - - Set({clippy::compiler/rustc_log}) - - Set({clippy::compiler/rustc_macros}) - - Set({clippy::compiler/rustc_metadata}) - - Set({clippy::compiler/rustc_middle}) - - Set({clippy::compiler/rustc_mir_build}) - - Set({clippy::compiler/rustc_mir_dataflow}) - - Set({clippy::compiler/rustc_mir_transform}) - - Set({clippy::compiler/rustc_monomorphize}) - - Set({clippy::compiler/rustc_next_trait_solver}) - - Set({clippy::compiler/rustc_parse}) - - Set({clippy::compiler/rustc_parse_format}) - - Set({clippy::compiler/rustc_passes}) - - Set({clippy::compiler/rustc_pattern_analysis}) - - Set({clippy::compiler/rustc_privacy}) - - Set({clippy::compiler/rustc_proc_macro}) - - Set({clippy::compiler/rustc_public}) - - Set({clippy::compiler/rustc_public_bridge}) - - Set({clippy::compiler/rustc_query_impl}) - - Set({clippy::compiler/rustc_resolve}) - - Set({clippy::compiler/rustc_sanitizers}) - - Set({clippy::compiler/rustc_serialize}) - - Set({clippy::compiler/rustc_session}) - - Set({clippy::compiler/rustc_span}) - - Set({clippy::compiler/rustc_symbol_mangling}) - - Set({clippy::compiler/rustc_target}) - - Set({clippy::compiler/rustc_thread_pool}) - - Set({clippy::compiler/rustc_trait_selection}) - - Set({clippy::compiler/rustc_traits}) - - Set({clippy::compiler/rustc_transmute}) - - Set({clippy::compiler/rustc_ty_utils}) - - Set({clippy::compiler/rustc_type_ir}) - - Set({clippy::compiler/rustc_type_ir_macros}) - - Set({clippy::compiler/rustc_windows_rc}) + - Set({compiler}) + - Set({compiler/rustc}) + - Set({compiler/rustc_abi}) + - Set({compiler/rustc_arena}) + - Set({compiler/rustc_ast}) + - Set({compiler/rustc_ast_ir}) + - Set({compiler/rustc_ast_lowering}) + - Set({compiler/rustc_ast_passes}) + - Set({compiler/rustc_ast_pretty}) + - Set({compiler/rustc_attr_parsing}) + - Set({compiler/rustc_baked_icu_data}) + - Set({compiler/rustc_borrowck}) + - Set({compiler/rustc_builtin_macros}) + - Set({compiler/rustc_codegen_llvm}) + - Set({compiler/rustc_codegen_ssa}) + - Set({compiler/rustc_const_eval}) + - Set({compiler/rustc_data_structures}) + - Set({compiler/rustc_driver}) + - Set({compiler/rustc_driver_impl}) + - Set({compiler/rustc_error_codes}) + - Set({compiler/rustc_error_messages}) + - Set({compiler/rustc_errors}) + - Set({compiler/rustc_expand}) + - Set({compiler/rustc_feature}) + - Set({compiler/rustc_fs_util}) + - Set({compiler/rustc_graphviz}) + - Set({compiler/rustc_hashes}) + - Set({compiler/rustc_hir}) + - Set({compiler/rustc_hir_analysis}) + - Set({compiler/rustc_hir_id}) + - Set({compiler/rustc_hir_pretty}) + - Set({compiler/rustc_hir_typeck}) + - Set({compiler/rustc_incremental}) + - Set({compiler/rustc_index}) + - Set({compiler/rustc_index_macros}) + - Set({compiler/rustc_infer}) + - Set({compiler/rustc_interface}) + - Set({compiler/rustc_lexer}) + - Set({compiler/rustc_lint}) + - Set({compiler/rustc_lint_defs}) + - Set({compiler/rustc_llvm}) + - Set({compiler/rustc_log}) + - Set({compiler/rustc_macros}) + - Set({compiler/rustc_metadata}) + - Set({compiler/rustc_middle}) + - Set({compiler/rustc_mir_build}) + - Set({compiler/rustc_mir_dataflow}) + - Set({compiler/rustc_mir_transform}) + - Set({compiler/rustc_monomorphize}) + - Set({compiler/rustc_next_trait_solver}) + - Set({compiler/rustc_parse}) + - Set({compiler/rustc_parse_format}) + - Set({compiler/rustc_passes}) + - Set({compiler/rustc_pattern_analysis}) + - Set({compiler/rustc_privacy}) + - Set({compiler/rustc_proc_macro}) + - Set({compiler/rustc_public}) + - Set({compiler/rustc_public_bridge}) + - Set({compiler/rustc_query_impl}) + - Set({compiler/rustc_resolve}) + - Set({compiler/rustc_sanitizers}) + - Set({compiler/rustc_serialize}) + - Set({compiler/rustc_session}) + - Set({compiler/rustc_span}) + - Set({compiler/rustc_symbol_mangling}) + - Set({compiler/rustc_target}) + - Set({compiler/rustc_thread_pool}) + - Set({compiler/rustc_trait_selection}) + - Set({compiler/rustc_traits}) + - Set({compiler/rustc_transmute}) + - Set({compiler/rustc_ty_utils}) + - Set({compiler/rustc_type_ir}) + - Set({compiler/rustc_type_ir_macros}) + - Set({compiler/rustc_windows_rc}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_dist.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_dist.snap index 7fae0b24df94d..1fc22433b2c64 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_dist.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_dist.snap @@ -4,34 +4,34 @@ expression: dist --- [Dist] dist::Docs targets: [aarch64-unknown-linux-gnu] - - Set({dist::rust-docs}) + - Set({rust-docs}) [Dist] dist::JsonDocs targets: [aarch64-unknown-linux-gnu] - - Set({dist::rust-docs-json}) + - Set({rust-docs-json}) [Dist] dist::Mingw targets: [aarch64-unknown-linux-gnu] - - Set({dist::rust-mingw}) + - Set({rust-mingw}) [Dist] dist::Rustc targets: [x86_64-unknown-linux-gnu] - - Set({dist::rustc}) + - Set({rustc}) [Dist] dist::Std targets: [aarch64-unknown-linux-gnu] - - Set({dist::rust-std}) + - Set({rust-std}) [Dist] dist::RustcDev targets: [x86_64-unknown-linux-gnu] - - Set({dist::rustc-dev}) + - Set({rustc-dev}) [Dist] dist::Src targets: [x86_64-unknown-linux-gnu] - - Set({dist::rust-src}) + - Set({rust-src}) [Dist] dist::RustDev targets: [x86_64-unknown-linux-gnu] - - Set({dist::rust-dev}) + - Set({rust-dev}) [Dist] dist::PlainSourceTarball targets: [x86_64-unknown-linux-gnu] - - Set({dist::rustc-src}) + - Set({rustc-src}) [Dist] dist::PlainSourceTarballGpl targets: [x86_64-unknown-linux-gnu] - - Set({dist::rustc-src-gpl}) + - Set({rustc-src-gpl}) [Dist] dist::ReproducibleArtifacts targets: [x86_64-unknown-linux-gnu] - - Set({dist::reproducible-artifacts}) + - Set({reproducible-artifacts}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_doc.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_doc.snap index bbf3a80b276ad..05c71a92ef042 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_doc.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_doc.snap @@ -4,66 +4,66 @@ expression: doc --- [Doc] doc::UnstableBook targets: [aarch64-unknown-linux-gnu] - - Set({doc::src/doc/unstable-book}) + - Set({src/doc/unstable-book}) [Doc] doc::UnstableBookGen targets: [x86_64-unknown-linux-gnu] - - Set({doc::src/tools/unstable-book-gen}) + - Set({src/tools/unstable-book-gen}) [Doc] doc::TheBook targets: [aarch64-unknown-linux-gnu] - - Set({doc::src/doc/book}) + - Set({src/doc/book}) [Doc] doc::Standalone targets: [aarch64-unknown-linux-gnu] - - Set({doc::src/doc}) - - Set({doc::standalone}) + - Set({src/doc}) + - Set({standalone}) [Doc] doc::Std targets: [aarch64-unknown-linux-gnu] - - Set({doc::library}) - - Set({doc::library/alloc}) - - Set({doc::library/compiler-builtins/compiler-builtins}) - - Set({doc::library/core}) - - Set({doc::library/panic_abort}) - - Set({doc::library/panic_unwind}) - - Set({doc::library/proc_macro}) - - Set({doc::library/rustc-std-workspace-core}) - - Set({doc::library/std}) - - Set({doc::library/std_detect}) - - Set({doc::library/sysroot}) - - Set({doc::library/test}) - - Set({doc::library/unwind}) + - Set({library}) + - Set({library/alloc}) + - Set({library/compiler-builtins/compiler-builtins}) + - Set({library/core}) + - Set({library/panic_abort}) + - Set({library/panic_unwind}) + - Set({library/proc_macro}) + - Set({library/rustc-std-workspace-core}) + - Set({library/std}) + - Set({library/std_detect}) + - Set({library/sysroot}) + - Set({library/test}) + - Set({library/unwind}) [Doc] doc::ErrorIndex targets: [x86_64-unknown-linux-gnu] - - Set({doc::src/tools/error_index_generator}) + - Set({src/tools/error_index_generator}) [Doc] doc::Nomicon targets: [aarch64-unknown-linux-gnu] - - Set({doc::src/doc/nomicon}) + - Set({src/doc/nomicon}) [Doc] doc::Reference targets: [aarch64-unknown-linux-gnu] - - Set({doc::src/doc/reference}) + - Set({src/doc/reference}) [Doc] doc::RustdocBook targets: [aarch64-unknown-linux-gnu] - - Set({doc::src/doc/rustdoc}) + - Set({src/doc/rustdoc}) [Doc] doc::RustByExample targets: [aarch64-unknown-linux-gnu] - - Set({doc::src/doc/rust-by-example}) + - Set({src/doc/rust-by-example}) [Doc] doc::RustcBook targets: [x86_64-unknown-linux-gnu] - - Set({doc::src/doc/rustc}) + - Set({src/doc/rustc}) [Doc] doc::CargoBook targets: [aarch64-unknown-linux-gnu] - - Set({doc::src/tools/cargo/doc/book}) + - Set({src/tools/cargo/doc/book}) [Doc] doc::ClippyBook targets: [aarch64-unknown-linux-gnu] - - Set({doc::src/tools/clippy/book}) + - Set({src/tools/clippy/book}) [Doc] doc::EmbeddedBook targets: [aarch64-unknown-linux-gnu] - - Set({doc::src/doc/embedded-book}) + - Set({src/doc/embedded-book}) [Doc] doc::EditionGuide targets: [aarch64-unknown-linux-gnu] - - Set({doc::src/doc/edition-guide}) + - Set({src/doc/edition-guide}) [Doc] doc::StyleGuide targets: [aarch64-unknown-linux-gnu] - - Set({doc::src/doc/style-guide}) + - Set({src/doc/style-guide}) [Doc] doc::Releases targets: [aarch64-unknown-linux-gnu] - - Set({doc::RELEASES.md}) - - Set({doc::releases}) + - Set({RELEASES.md}) + - Set({releases}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_fix.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_fix.snap index eca161986f696..d3d3a46255917 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_fix.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_fix.snap @@ -4,129 +4,129 @@ expression: fix --- [Fix] check::Rustc targets: [x86_64-unknown-linux-gnu] - - Set({fix::compiler}) - - Set({fix::compiler/rustc}) - - Set({fix::compiler/rustc_abi}) - - Set({fix::compiler/rustc_arena}) - - Set({fix::compiler/rustc_ast}) - - Set({fix::compiler/rustc_ast_ir}) - - Set({fix::compiler/rustc_ast_lowering}) - - Set({fix::compiler/rustc_ast_passes}) - - Set({fix::compiler/rustc_ast_pretty}) - - Set({fix::compiler/rustc_attr_parsing}) - - Set({fix::compiler/rustc_baked_icu_data}) - - Set({fix::compiler/rustc_borrowck}) - - Set({fix::compiler/rustc_builtin_macros}) - - Set({fix::compiler/rustc_codegen_llvm}) - - Set({fix::compiler/rustc_codegen_ssa}) - - Set({fix::compiler/rustc_const_eval}) - - Set({fix::compiler/rustc_data_structures}) - - Set({fix::compiler/rustc_driver}) - - Set({fix::compiler/rustc_driver_impl}) - - Set({fix::compiler/rustc_error_codes}) - - Set({fix::compiler/rustc_error_messages}) - - Set({fix::compiler/rustc_errors}) - - Set({fix::compiler/rustc_expand}) - - Set({fix::compiler/rustc_feature}) - - Set({fix::compiler/rustc_fs_util}) - - Set({fix::compiler/rustc_graphviz}) - - Set({fix::compiler/rustc_hashes}) - - Set({fix::compiler/rustc_hir}) - - Set({fix::compiler/rustc_hir_analysis}) - - Set({fix::compiler/rustc_hir_id}) - - Set({fix::compiler/rustc_hir_pretty}) - - Set({fix::compiler/rustc_hir_typeck}) - - Set({fix::compiler/rustc_incremental}) - - Set({fix::compiler/rustc_index}) - - Set({fix::compiler/rustc_index_macros}) - - Set({fix::compiler/rustc_infer}) - - Set({fix::compiler/rustc_interface}) - - Set({fix::compiler/rustc_lexer}) - - Set({fix::compiler/rustc_lint}) - - Set({fix::compiler/rustc_lint_defs}) - - Set({fix::compiler/rustc_llvm}) - - Set({fix::compiler/rustc_log}) - - Set({fix::compiler/rustc_macros}) - - Set({fix::compiler/rustc_metadata}) - - Set({fix::compiler/rustc_middle}) - - Set({fix::compiler/rustc_mir_build}) - - Set({fix::compiler/rustc_mir_dataflow}) - - Set({fix::compiler/rustc_mir_transform}) - - Set({fix::compiler/rustc_monomorphize}) - - Set({fix::compiler/rustc_next_trait_solver}) - - Set({fix::compiler/rustc_parse}) - - Set({fix::compiler/rustc_parse_format}) - - Set({fix::compiler/rustc_passes}) - - Set({fix::compiler/rustc_pattern_analysis}) - - Set({fix::compiler/rustc_privacy}) - - Set({fix::compiler/rustc_proc_macro}) - - Set({fix::compiler/rustc_public}) - - Set({fix::compiler/rustc_public_bridge}) - - Set({fix::compiler/rustc_query_impl}) - - Set({fix::compiler/rustc_resolve}) - - Set({fix::compiler/rustc_sanitizers}) - - Set({fix::compiler/rustc_serialize}) - - Set({fix::compiler/rustc_session}) - - Set({fix::compiler/rustc_span}) - - Set({fix::compiler/rustc_symbol_mangling}) - - Set({fix::compiler/rustc_target}) - - Set({fix::compiler/rustc_thread_pool}) - - Set({fix::compiler/rustc_trait_selection}) - - Set({fix::compiler/rustc_traits}) - - Set({fix::compiler/rustc_transmute}) - - Set({fix::compiler/rustc_ty_utils}) - - Set({fix::compiler/rustc_type_ir}) - - Set({fix::compiler/rustc_type_ir_macros}) - - Set({fix::compiler/rustc_windows_rc}) + - Set({compiler}) + - Set({compiler/rustc}) + - Set({compiler/rustc_abi}) + - Set({compiler/rustc_arena}) + - Set({compiler/rustc_ast}) + - Set({compiler/rustc_ast_ir}) + - Set({compiler/rustc_ast_lowering}) + - Set({compiler/rustc_ast_passes}) + - Set({compiler/rustc_ast_pretty}) + - Set({compiler/rustc_attr_parsing}) + - Set({compiler/rustc_baked_icu_data}) + - Set({compiler/rustc_borrowck}) + - Set({compiler/rustc_builtin_macros}) + - Set({compiler/rustc_codegen_llvm}) + - Set({compiler/rustc_codegen_ssa}) + - Set({compiler/rustc_const_eval}) + - Set({compiler/rustc_data_structures}) + - Set({compiler/rustc_driver}) + - Set({compiler/rustc_driver_impl}) + - Set({compiler/rustc_error_codes}) + - Set({compiler/rustc_error_messages}) + - Set({compiler/rustc_errors}) + - Set({compiler/rustc_expand}) + - Set({compiler/rustc_feature}) + - Set({compiler/rustc_fs_util}) + - Set({compiler/rustc_graphviz}) + - Set({compiler/rustc_hashes}) + - Set({compiler/rustc_hir}) + - Set({compiler/rustc_hir_analysis}) + - Set({compiler/rustc_hir_id}) + - Set({compiler/rustc_hir_pretty}) + - Set({compiler/rustc_hir_typeck}) + - Set({compiler/rustc_incremental}) + - Set({compiler/rustc_index}) + - Set({compiler/rustc_index_macros}) + - Set({compiler/rustc_infer}) + - Set({compiler/rustc_interface}) + - Set({compiler/rustc_lexer}) + - Set({compiler/rustc_lint}) + - Set({compiler/rustc_lint_defs}) + - Set({compiler/rustc_llvm}) + - Set({compiler/rustc_log}) + - Set({compiler/rustc_macros}) + - Set({compiler/rustc_metadata}) + - Set({compiler/rustc_middle}) + - Set({compiler/rustc_mir_build}) + - Set({compiler/rustc_mir_dataflow}) + - Set({compiler/rustc_mir_transform}) + - Set({compiler/rustc_monomorphize}) + - Set({compiler/rustc_next_trait_solver}) + - Set({compiler/rustc_parse}) + - Set({compiler/rustc_parse_format}) + - Set({compiler/rustc_passes}) + - Set({compiler/rustc_pattern_analysis}) + - Set({compiler/rustc_privacy}) + - Set({compiler/rustc_proc_macro}) + - Set({compiler/rustc_public}) + - Set({compiler/rustc_public_bridge}) + - Set({compiler/rustc_query_impl}) + - Set({compiler/rustc_resolve}) + - Set({compiler/rustc_sanitizers}) + - Set({compiler/rustc_serialize}) + - Set({compiler/rustc_session}) + - Set({compiler/rustc_span}) + - Set({compiler/rustc_symbol_mangling}) + - Set({compiler/rustc_target}) + - Set({compiler/rustc_thread_pool}) + - Set({compiler/rustc_trait_selection}) + - Set({compiler/rustc_traits}) + - Set({compiler/rustc_transmute}) + - Set({compiler/rustc_ty_utils}) + - Set({compiler/rustc_type_ir}) + - Set({compiler/rustc_type_ir_macros}) + - Set({compiler/rustc_windows_rc}) [Fix] check::Rustdoc targets: [x86_64-unknown-linux-gnu] - - Set({fix::src/librustdoc, fix::src/tools/rustdoc}) + - Set({src/librustdoc, src/tools/rustdoc}) [Fix] check::CraneliftCodegenBackend targets: [x86_64-unknown-linux-gnu] - - Set({fix::cg_clif}) - - Set({fix::rustc_codegen_cranelift}) + - Set({cg_clif}) + - Set({rustc_codegen_cranelift}) [Fix] check::GccCodegenBackend targets: [x86_64-unknown-linux-gnu] - - Set({fix::cg_gcc}) - - Set({fix::rustc_codegen_gcc}) + - Set({cg_gcc}) + - Set({rustc_codegen_gcc}) [Fix] check::Clippy targets: [x86_64-unknown-linux-gnu] - - Set({fix::src/tools/clippy}) + - Set({src/tools/clippy}) [Fix] check::Miri targets: [x86_64-unknown-linux-gnu] - - Set({fix::src/tools/miri}) + - Set({src/tools/miri}) [Fix] check::CargoMiri targets: [x86_64-unknown-linux-gnu] - - Set({fix::src/tools/miri/cargo-miri}) + - Set({src/tools/miri/cargo-miri}) [Fix] check::MiroptTestTools targets: [x86_64-unknown-linux-gnu] - - Set({fix::src/tools/miropt-test-tools}) + - Set({src/tools/miropt-test-tools}) [Fix] check::Rustfmt targets: [x86_64-unknown-linux-gnu] - - Set({fix::src/tools/rustfmt}) + - Set({src/tools/rustfmt}) [Fix] check::RustAnalyzer targets: [x86_64-unknown-linux-gnu] - - Set({fix::src/tools/rust-analyzer}) + - Set({src/tools/rust-analyzer}) [Fix] check::TestFloatParse targets: [x86_64-unknown-linux-gnu] - - Set({fix::src/tools/test-float-parse}) + - Set({src/tools/test-float-parse}) [Fix] check::FeaturesStatusDump targets: [x86_64-unknown-linux-gnu] - - Set({fix::src/tools/features-status-dump}) + - Set({src/tools/features-status-dump}) [Fix] check::Std targets: [aarch64-unknown-linux-gnu] - - Set({fix::library}) - - Set({fix::library/alloc}) - - Set({fix::library/alloctests}) - - Set({fix::library/compiler-builtins/compiler-builtins}) - - Set({fix::library/core}) - - Set({fix::library/coretests}) - - Set({fix::library/panic_abort}) - - Set({fix::library/panic_unwind}) - - Set({fix::library/proc_macro}) - - Set({fix::library/rustc-std-workspace-core}) - - Set({fix::library/std}) - - Set({fix::library/std_detect}) - - Set({fix::library/sysroot}) - - Set({fix::library/test}) - - Set({fix::library/unwind}) + - Set({library}) + - Set({library/alloc}) + - Set({library/alloctests}) + - Set({library/compiler-builtins/compiler-builtins}) + - Set({library/core}) + - Set({library/coretests}) + - Set({library/panic_abort}) + - Set({library/panic_unwind}) + - Set({library/proc_macro}) + - Set({library/rustc-std-workspace-core}) + - Set({library/std}) + - Set({library/std_detect}) + - Set({library/sysroot}) + - Set({library/test}) + - Set({library/unwind}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_install.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_install.snap index 3aca9bc2c9eef..d7a90d9754e4c 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_install.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_install.snap @@ -4,13 +4,13 @@ expression: install --- [Install] install::Docs targets: [aarch64-unknown-linux-gnu] - - Set({install::src/doc}) + - Set({src/doc}) [Install] install::Std targets: [aarch64-unknown-linux-gnu] - - Set({install::library/std}) + - Set({library/std}) [Install] install::Rustc targets: [x86_64-unknown-linux-gnu] - - Set({install::compiler/rustc}) + - Set({compiler/rustc}) [Install] install::LlvmTools targets: [x86_64-unknown-linux-gnu] - - Set({install::llvm-tools}) + - Set({llvm-tools}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_miri.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_miri.snap index 552697b378bcc..c02f7a768be90 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_miri.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_miri.snap @@ -4,17 +4,17 @@ expression: miri --- [Miri] test::Crate targets: [aarch64-unknown-linux-gnu] - - Set({miri::library/alloc}) - - Set({miri::library/alloctests}) - - Set({miri::library/compiler-builtins/compiler-builtins}) - - Set({miri::library/core}) - - Set({miri::library/coretests}) - - Set({miri::library/panic_abort}) - - Set({miri::library/panic_unwind}) - - Set({miri::library/proc_macro}) - - Set({miri::library/rustc-std-workspace-core}) - - Set({miri::library/std}) - - Set({miri::library/std_detect}) - - Set({miri::library/sysroot}) - - Set({miri::library/test}) - - Set({miri::library/unwind}) + - Set({library/alloc}) + - Set({library/alloctests}) + - Set({library/compiler-builtins/compiler-builtins}) + - Set({library/core}) + - Set({library/coretests}) + - Set({library/panic_abort}) + - Set({library/panic_unwind}) + - Set({library/proc_macro}) + - Set({library/rustc-std-workspace-core}) + - Set({library/std}) + - Set({library/std_detect}) + - Set({library/sysroot}) + - Set({library/test}) + - Set({library/unwind}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_setup.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_setup.snap index e0b93e1fe7a1d..45cab74873fbc 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_setup.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_setup.snap @@ -4,17 +4,17 @@ expression: setup --- [Setup] setup::Profile targets: [aarch64-unknown-linux-gnu] - - Set({setup::compiler}) - - Set({setup::dist}) - - Set({setup::library}) - - Set({setup::none}) - - Set({setup::tools}) + - Set({compiler}) + - Set({dist}) + - Set({library}) + - Set({none}) + - Set({tools}) [Setup] setup::Hook targets: [aarch64-unknown-linux-gnu] - - Set({setup::hook}) + - Set({hook}) [Setup] setup::Link targets: [aarch64-unknown-linux-gnu] - - Set({setup::link}) + - Set({link}) [Setup] setup::Editor targets: [aarch64-unknown-linux-gnu] - - Set({setup::editor}) + - Set({editor}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test.snap index 824440507a89a..289912de1bf98 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test.snap @@ -4,214 +4,214 @@ expression: test --- [Test] test::Tidy targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/tidy}) + - Set({src/tools/tidy}) [Test] test::Ui targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/ui) + - Suite(tests/ui) [Test] test::Crashes targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/crashes) + - Suite(tests/crashes) [Test] test::Coverage targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/coverage) + - Suite(tests/coverage) [Test] test::MirOpt targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/mir-opt) + - Suite(tests/mir-opt) [Test] test::CodegenLlvm targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/codegen-llvm) + - Suite(tests/codegen-llvm) [Test] test::CodegenUnits targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/codegen-units) + - Suite(tests/codegen-units) [Test] test::AssemblyLlvm targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/assembly-llvm) + - Suite(tests/assembly-llvm) [Test] test::Incremental targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/incremental) + - Suite(tests/incremental) [Test] test::Debuginfo targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/debuginfo) + - Suite(tests/debuginfo) [Test] test::UiFullDeps targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/ui-fulldeps) + - Suite(tests/ui-fulldeps) [Test] test::RustdocHtml targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-html) + - Suite(tests/rustdoc-html) [Test] test::CoverageRunRustdoc targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/coverage-run-rustdoc) + - Suite(tests/coverage-run-rustdoc) [Test] test::Pretty targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/pretty) + - Suite(tests/pretty) [Test] test::CodegenCranelift targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler/rustc_codegen_cranelift}) + - Set({compiler/rustc_codegen_cranelift}) [Test] test::CodegenGCC targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler/rustc_codegen_gcc}) + - Set({compiler/rustc_codegen_gcc}) [Test] test::Crate targets: [aarch64-unknown-linux-gnu] - - Set({test::library/alloc}) - - Set({test::library/alloctests}) - - Set({test::library/compiler-builtins/compiler-builtins}) - - Set({test::library/core}) - - Set({test::library/coretests}) - - Set({test::library/panic_abort}) - - Set({test::library/panic_unwind}) - - Set({test::library/proc_macro}) - - Set({test::library/rustc-std-workspace-core}) - - Set({test::library/std}) - - Set({test::library/std_detect}) - - Set({test::library/sysroot}) - - Set({test::library/test}) - - Set({test::library/unwind}) + - Set({library/alloc}) + - Set({library/alloctests}) + - Set({library/compiler-builtins/compiler-builtins}) + - Set({library/core}) + - Set({library/coretests}) + - Set({library/panic_abort}) + - Set({library/panic_unwind}) + - Set({library/proc_macro}) + - Set({library/rustc-std-workspace-core}) + - Set({library/std}) + - Set({library/std_detect}) + - Set({library/sysroot}) + - Set({library/test}) + - Set({library/unwind}) [Test] test::CrateLibrustc targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler}) - - Set({test::compiler/rustc}) - - Set({test::compiler/rustc_abi}) - - Set({test::compiler/rustc_arena}) - - Set({test::compiler/rustc_ast}) - - Set({test::compiler/rustc_ast_ir}) - - Set({test::compiler/rustc_ast_lowering}) - - Set({test::compiler/rustc_ast_passes}) - - Set({test::compiler/rustc_ast_pretty}) - - Set({test::compiler/rustc_attr_parsing}) - - Set({test::compiler/rustc_baked_icu_data}) - - Set({test::compiler/rustc_borrowck}) - - Set({test::compiler/rustc_builtin_macros}) - - Set({test::compiler/rustc_codegen_llvm}) - - Set({test::compiler/rustc_codegen_ssa}) - - Set({test::compiler/rustc_const_eval}) - - Set({test::compiler/rustc_data_structures}) - - Set({test::compiler/rustc_driver}) - - Set({test::compiler/rustc_driver_impl}) - - Set({test::compiler/rustc_error_codes}) - - Set({test::compiler/rustc_error_messages}) - - Set({test::compiler/rustc_errors}) - - Set({test::compiler/rustc_expand}) - - Set({test::compiler/rustc_feature}) - - Set({test::compiler/rustc_fs_util}) - - Set({test::compiler/rustc_graphviz}) - - Set({test::compiler/rustc_hashes}) - - Set({test::compiler/rustc_hir}) - - Set({test::compiler/rustc_hir_analysis}) - - Set({test::compiler/rustc_hir_id}) - - Set({test::compiler/rustc_hir_pretty}) - - Set({test::compiler/rustc_hir_typeck}) - - Set({test::compiler/rustc_incremental}) - - Set({test::compiler/rustc_index}) - - Set({test::compiler/rustc_index_macros}) - - Set({test::compiler/rustc_infer}) - - Set({test::compiler/rustc_interface}) - - Set({test::compiler/rustc_lexer}) - - Set({test::compiler/rustc_lint}) - - Set({test::compiler/rustc_lint_defs}) - - Set({test::compiler/rustc_llvm}) - - Set({test::compiler/rustc_log}) - - Set({test::compiler/rustc_macros}) - - Set({test::compiler/rustc_metadata}) - - Set({test::compiler/rustc_middle}) - - Set({test::compiler/rustc_mir_build}) - - Set({test::compiler/rustc_mir_dataflow}) - - Set({test::compiler/rustc_mir_transform}) - - Set({test::compiler/rustc_monomorphize}) - - Set({test::compiler/rustc_next_trait_solver}) - - Set({test::compiler/rustc_parse}) - - Set({test::compiler/rustc_parse_format}) - - Set({test::compiler/rustc_passes}) - - Set({test::compiler/rustc_pattern_analysis}) - - Set({test::compiler/rustc_privacy}) - - Set({test::compiler/rustc_proc_macro}) - - Set({test::compiler/rustc_public}) - - Set({test::compiler/rustc_public_bridge}) - - Set({test::compiler/rustc_query_impl}) - - Set({test::compiler/rustc_resolve}) - - Set({test::compiler/rustc_sanitizers}) - - Set({test::compiler/rustc_serialize}) - - Set({test::compiler/rustc_session}) - - Set({test::compiler/rustc_span}) - - Set({test::compiler/rustc_symbol_mangling}) - - Set({test::compiler/rustc_target}) - - Set({test::compiler/rustc_thread_pool}) - - Set({test::compiler/rustc_trait_selection}) - - Set({test::compiler/rustc_traits}) - - Set({test::compiler/rustc_transmute}) - - Set({test::compiler/rustc_ty_utils}) - - Set({test::compiler/rustc_type_ir}) - - Set({test::compiler/rustc_type_ir_macros}) - - Set({test::compiler/rustc_windows_rc}) + - Set({compiler}) + - Set({compiler/rustc}) + - Set({compiler/rustc_abi}) + - Set({compiler/rustc_arena}) + - Set({compiler/rustc_ast}) + - Set({compiler/rustc_ast_ir}) + - Set({compiler/rustc_ast_lowering}) + - Set({compiler/rustc_ast_passes}) + - Set({compiler/rustc_ast_pretty}) + - Set({compiler/rustc_attr_parsing}) + - Set({compiler/rustc_baked_icu_data}) + - Set({compiler/rustc_borrowck}) + - Set({compiler/rustc_builtin_macros}) + - Set({compiler/rustc_codegen_llvm}) + - Set({compiler/rustc_codegen_ssa}) + - Set({compiler/rustc_const_eval}) + - Set({compiler/rustc_data_structures}) + - Set({compiler/rustc_driver}) + - Set({compiler/rustc_driver_impl}) + - Set({compiler/rustc_error_codes}) + - Set({compiler/rustc_error_messages}) + - Set({compiler/rustc_errors}) + - Set({compiler/rustc_expand}) + - Set({compiler/rustc_feature}) + - Set({compiler/rustc_fs_util}) + - Set({compiler/rustc_graphviz}) + - Set({compiler/rustc_hashes}) + - Set({compiler/rustc_hir}) + - Set({compiler/rustc_hir_analysis}) + - Set({compiler/rustc_hir_id}) + - Set({compiler/rustc_hir_pretty}) + - Set({compiler/rustc_hir_typeck}) + - Set({compiler/rustc_incremental}) + - Set({compiler/rustc_index}) + - Set({compiler/rustc_index_macros}) + - Set({compiler/rustc_infer}) + - Set({compiler/rustc_interface}) + - Set({compiler/rustc_lexer}) + - Set({compiler/rustc_lint}) + - Set({compiler/rustc_lint_defs}) + - Set({compiler/rustc_llvm}) + - Set({compiler/rustc_log}) + - Set({compiler/rustc_macros}) + - Set({compiler/rustc_metadata}) + - Set({compiler/rustc_middle}) + - Set({compiler/rustc_mir_build}) + - Set({compiler/rustc_mir_dataflow}) + - Set({compiler/rustc_mir_transform}) + - Set({compiler/rustc_monomorphize}) + - Set({compiler/rustc_next_trait_solver}) + - Set({compiler/rustc_parse}) + - Set({compiler/rustc_parse_format}) + - Set({compiler/rustc_passes}) + - Set({compiler/rustc_pattern_analysis}) + - Set({compiler/rustc_privacy}) + - Set({compiler/rustc_proc_macro}) + - Set({compiler/rustc_public}) + - Set({compiler/rustc_public_bridge}) + - Set({compiler/rustc_query_impl}) + - Set({compiler/rustc_resolve}) + - Set({compiler/rustc_sanitizers}) + - Set({compiler/rustc_serialize}) + - Set({compiler/rustc_session}) + - Set({compiler/rustc_span}) + - Set({compiler/rustc_symbol_mangling}) + - Set({compiler/rustc_target}) + - Set({compiler/rustc_thread_pool}) + - Set({compiler/rustc_trait_selection}) + - Set({compiler/rustc_traits}) + - Set({compiler/rustc_transmute}) + - Set({compiler/rustc_ty_utils}) + - Set({compiler/rustc_type_ir}) + - Set({compiler/rustc_type_ir_macros}) + - Set({compiler/rustc_windows_rc}) [Test] test::CrateRustdoc targets: [x86_64-unknown-linux-gnu] - - Set({test::src/librustdoc, test::src/tools/rustdoc}) + - Set({src/librustdoc, src/tools/rustdoc}) [Test] test::CrateRustdocJsonTypes targets: [x86_64-unknown-linux-gnu] - - Set({test::src/rustdoc-json-types}) + - Set({src/rustdoc-json-types}) [Test] test::CrateBootstrap targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/coverage-dump}) - - Set({test::src/tools/jsondoclint}) - - Set({test::src/tools/replace-version-placeholder}) - - Set({test::tidyselftest}) + - Set({src/tools/coverage-dump}) + - Set({src/tools/jsondoclint}) + - Set({src/tools/replace-version-placeholder}) + - Set({tidyselftest}) [Test] test::RemoteTestClientTests targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/remote-test-client}) + - Set({src/tools/remote-test-client}) [Test] test::Linkcheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/linkchecker}) + - Set({src/tools/linkchecker}) [Test] test::TierCheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/tier-check}) + - Set({src/tools/tier-check}) [Test] test::RustAnalyzer targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rust-analyzer}) + - Set({src/tools/rust-analyzer}) [Test] test::ErrorIndex targets: [x86_64-unknown-linux-gnu] - - Set({test::error-index}) - - Set({test::src/tools/error_index_generator}) + - Set({error-index}) + - Set({src/tools/error_index_generator}) [Test] test::RustdocBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/rustdoc}) + - Set({src/doc/rustdoc}) [Test] test::UnstableBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/unstable-book}) + - Set({src/doc/unstable-book}) [Test] test::RustcBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/rustc}) + - Set({src/doc/rustc}) [Test] test::StdarchVerify targets: [x86_64-unknown-linux-gnu] - - Set({test::library/stdarch/crates/stdarch-verify}) + - Set({library/stdarch/crates/stdarch-verify}) [Test] test::RustdocJSStd targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-js-std) + - Suite(tests/rustdoc-js-std) [Test] test::RustdocJSNotStd targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-js) + - Suite(tests/rustdoc-js) [Test] test::RustdocTheme targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rustdoc-themes}) + - Set({src/tools/rustdoc-themes}) [Test] test::RustdocUi targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-ui) + - Suite(tests/rustdoc-ui) [Test] test::RustdocJson targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-json) + - Suite(tests/rustdoc-json) [Test] test::HtmlCheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/html-checker}) + - Set({src/tools/html-checker}) [Test] test::RustInstaller targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rust-installer}) + - Set({src/tools/rust-installer}) [Test] test::TestFloatParse targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/test-float-parse}) + - Set({src/tools/test-float-parse}) [Test] test::RunMake targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/run-make) + - Suite(tests/run-make) [Test] test::RunMakeCargo targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/run-make-cargo) + - Suite(tests/run-make-cargo) [Test] test::IntrinsicTest targets: [x86_64-unknown-linux-gnu] - - Set({test::intrinsic-test}) + - Set({intrinsic-test}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_coverage.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_coverage.snap index 3b78d842dd704..831e2529ba2c5 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_coverage.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_coverage.snap @@ -4,4 +4,4 @@ expression: test coverage --- [Test] test::Coverage targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/coverage) + - Suite(tests/coverage) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_coverage_map.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_coverage_map.snap index fd79a0c8ad6ac..9f0ef84851d5a 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_coverage_map.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_coverage_map.snap @@ -4,4 +4,4 @@ expression: test coverage-map --- [Test] test::Coverage targets: [aarch64-unknown-linux-gnu] - - Set({test::coverage-map}) + - Set({coverage-map}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_coverage_run.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_coverage_run.snap index 8ffadc424348e..41700ce9e210c 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_coverage_run.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_coverage_run.snap @@ -4,4 +4,4 @@ expression: test coverage-run --- [Test] test::Coverage targets: [aarch64-unknown-linux-gnu] - - Set({test::coverage-run}) + - Set({coverage-run}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_coverage_skip_coverage_run.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_coverage_skip_coverage_run.snap index 76da4c82151ad..b43b9777a2140 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_coverage_skip_coverage_run.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_coverage_skip_coverage_run.snap @@ -4,4 +4,4 @@ expression: test coverage --skip=coverage-run --- [Test] test::Coverage targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/coverage) + - Suite(tests/coverage) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_debuginfo.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_debuginfo.snap index d462e1f7917d4..ecc75e8e6f769 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_debuginfo.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_debuginfo.snap @@ -4,4 +4,4 @@ expression: test debuginfo --- [Test] test::Debuginfo targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/debuginfo) + - Suite(tests/debuginfo) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_library.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_library.snap index f97bb839c1e73..0d6c34daacf0a 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_library.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_library.snap @@ -4,20 +4,20 @@ expression: test library --- [Test] test::Crate targets: [aarch64-unknown-linux-gnu] - - Set({test::library/alloc}) - - Set({test::library/alloctests}) - - Set({test::library/compiler-builtins/compiler-builtins}) - - Set({test::library/core}) - - Set({test::library/coretests}) - - Set({test::library/panic_abort}) - - Set({test::library/panic_unwind}) - - Set({test::library/proc_macro}) - - Set({test::library/rustc-std-workspace-core}) - - Set({test::library/std}) - - Set({test::library/std_detect}) - - Set({test::library/sysroot}) - - Set({test::library/test}) - - Set({test::library/unwind}) + - Set({library/alloc}) + - Set({library/alloctests}) + - Set({library/compiler-builtins/compiler-builtins}) + - Set({library/core}) + - Set({library/coretests}) + - Set({library/panic_abort}) + - Set({library/panic_unwind}) + - Set({library/proc_macro}) + - Set({library/rustc-std-workspace-core}) + - Set({library/std}) + - Set({library/std_detect}) + - Set({library/sysroot}) + - Set({library/test}) + - Set({library/unwind}) [Test] test::StdarchVerify targets: [x86_64-unknown-linux-gnu] - - Set({test::library/stdarch/crates/stdarch-verify}) + - Set({library/stdarch/crates/stdarch-verify}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_librustdoc.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_librustdoc.snap index bd217dbe692a4..611d6c0f2e8bf 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_librustdoc.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_librustdoc.snap @@ -4,4 +4,4 @@ expression: test librustdoc --- [Test] test::CrateRustdoc targets: [x86_64-unknown-linux-gnu] - - Set({test::src/librustdoc}) + - Set({src/librustdoc}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_librustdoc_rustdoc.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_librustdoc_rustdoc.snap index c8eee72aec42f..8bbffcaf5eabc 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_librustdoc_rustdoc.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_librustdoc_rustdoc.snap @@ -4,7 +4,7 @@ expression: test librustdoc rustdoc --- [Test] test::CrateRustdoc targets: [x86_64-unknown-linux-gnu] - - Set({test::src/librustdoc, test::src/tools/rustdoc}) + - Set({src/librustdoc, src/tools/rustdoc}) [Test] test::RustdocBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/rustdoc}) + - Set({src/doc/rustdoc}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_librustdoc_rustdoc_html.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_librustdoc_rustdoc_html.snap index 21acc1e460694..ef171fd423343 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_librustdoc_rustdoc_html.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_librustdoc_rustdoc_html.snap @@ -4,7 +4,7 @@ expression: test librustdoc rustdoc-html --- [Test] test::CrateRustdoc targets: [x86_64-unknown-linux-gnu] - - Set({test::src/librustdoc}) + - Set({src/librustdoc}) [Test] test::RustdocHtml targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-html) + - Suite(tests/rustdoc-html) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_rustdoc.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_rustdoc.snap index 897372dcd1c7a..0872c63dbe1f1 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_rustdoc.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_rustdoc.snap @@ -4,7 +4,7 @@ expression: test rustdoc --- [Test] test::CrateRustdoc targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rustdoc}) + - Set({src/tools/rustdoc}) [Test] test::RustdocBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/rustdoc}) + - Set({src/doc/rustdoc}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_rustdoc_html.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_rustdoc_html.snap index a6a2a27c075ed..067687b6bb732 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_rustdoc_html.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_rustdoc_html.snap @@ -4,4 +4,4 @@ expression: test rustdoc-html --- [Test] test::RustdocHtml targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-html) + - Suite(tests/rustdoc-html) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_semver_check.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_semver_check.snap index 0a2720e55b785..48186988db05d 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_semver_check.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_semver_check.snap @@ -4,4 +4,4 @@ expression: test std-semver-check --- [Test] test::StdSemverCheck targets: [aarch64-unknown-linux-gnu] - - Set({test::std-semver-check}) + - Set({std-semver-check}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_coverage.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_coverage.snap index 98b15298d3dbf..e3310a3d64e0d 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_coverage.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_coverage.snap @@ -4,211 +4,211 @@ expression: test --skip=coverage --- [Test] test::Tidy targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/tidy}) + - Set({src/tools/tidy}) [Test] test::Ui targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/ui) + - Suite(tests/ui) [Test] test::Crashes targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/crashes) + - Suite(tests/crashes) [Test] test::MirOpt targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/mir-opt) + - Suite(tests/mir-opt) [Test] test::CodegenLlvm targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/codegen-llvm) + - Suite(tests/codegen-llvm) [Test] test::CodegenUnits targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/codegen-units) + - Suite(tests/codegen-units) [Test] test::AssemblyLlvm targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/assembly-llvm) + - Suite(tests/assembly-llvm) [Test] test::Incremental targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/incremental) + - Suite(tests/incremental) [Test] test::Debuginfo targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/debuginfo) + - Suite(tests/debuginfo) [Test] test::UiFullDeps targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/ui-fulldeps) + - Suite(tests/ui-fulldeps) [Test] test::RustdocHtml targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-html) + - Suite(tests/rustdoc-html) [Test] test::CoverageRunRustdoc targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/coverage-run-rustdoc) + - Suite(tests/coverage-run-rustdoc) [Test] test::Pretty targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/pretty) + - Suite(tests/pretty) [Test] test::CodegenCranelift targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler/rustc_codegen_cranelift}) + - Set({compiler/rustc_codegen_cranelift}) [Test] test::CodegenGCC targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler/rustc_codegen_gcc}) + - Set({compiler/rustc_codegen_gcc}) [Test] test::Crate targets: [aarch64-unknown-linux-gnu] - - Set({test::library/alloc}) - - Set({test::library/alloctests}) - - Set({test::library/compiler-builtins/compiler-builtins}) - - Set({test::library/core}) - - Set({test::library/coretests}) - - Set({test::library/panic_abort}) - - Set({test::library/panic_unwind}) - - Set({test::library/proc_macro}) - - Set({test::library/rustc-std-workspace-core}) - - Set({test::library/std}) - - Set({test::library/std_detect}) - - Set({test::library/sysroot}) - - Set({test::library/test}) - - Set({test::library/unwind}) + - Set({library/alloc}) + - Set({library/alloctests}) + - Set({library/compiler-builtins/compiler-builtins}) + - Set({library/core}) + - Set({library/coretests}) + - Set({library/panic_abort}) + - Set({library/panic_unwind}) + - Set({library/proc_macro}) + - Set({library/rustc-std-workspace-core}) + - Set({library/std}) + - Set({library/std_detect}) + - Set({library/sysroot}) + - Set({library/test}) + - Set({library/unwind}) [Test] test::CrateLibrustc targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler}) - - Set({test::compiler/rustc}) - - Set({test::compiler/rustc_abi}) - - Set({test::compiler/rustc_arena}) - - Set({test::compiler/rustc_ast}) - - Set({test::compiler/rustc_ast_ir}) - - Set({test::compiler/rustc_ast_lowering}) - - Set({test::compiler/rustc_ast_passes}) - - Set({test::compiler/rustc_ast_pretty}) - - Set({test::compiler/rustc_attr_parsing}) - - Set({test::compiler/rustc_baked_icu_data}) - - Set({test::compiler/rustc_borrowck}) - - Set({test::compiler/rustc_builtin_macros}) - - Set({test::compiler/rustc_codegen_llvm}) - - Set({test::compiler/rustc_codegen_ssa}) - - Set({test::compiler/rustc_const_eval}) - - Set({test::compiler/rustc_data_structures}) - - Set({test::compiler/rustc_driver}) - - Set({test::compiler/rustc_driver_impl}) - - Set({test::compiler/rustc_error_codes}) - - Set({test::compiler/rustc_error_messages}) - - Set({test::compiler/rustc_errors}) - - Set({test::compiler/rustc_expand}) - - Set({test::compiler/rustc_feature}) - - Set({test::compiler/rustc_fs_util}) - - Set({test::compiler/rustc_graphviz}) - - Set({test::compiler/rustc_hashes}) - - Set({test::compiler/rustc_hir}) - - Set({test::compiler/rustc_hir_analysis}) - - Set({test::compiler/rustc_hir_id}) - - Set({test::compiler/rustc_hir_pretty}) - - Set({test::compiler/rustc_hir_typeck}) - - Set({test::compiler/rustc_incremental}) - - Set({test::compiler/rustc_index}) - - Set({test::compiler/rustc_index_macros}) - - Set({test::compiler/rustc_infer}) - - Set({test::compiler/rustc_interface}) - - Set({test::compiler/rustc_lexer}) - - Set({test::compiler/rustc_lint}) - - Set({test::compiler/rustc_lint_defs}) - - Set({test::compiler/rustc_llvm}) - - Set({test::compiler/rustc_log}) - - Set({test::compiler/rustc_macros}) - - Set({test::compiler/rustc_metadata}) - - Set({test::compiler/rustc_middle}) - - Set({test::compiler/rustc_mir_build}) - - Set({test::compiler/rustc_mir_dataflow}) - - Set({test::compiler/rustc_mir_transform}) - - Set({test::compiler/rustc_monomorphize}) - - Set({test::compiler/rustc_next_trait_solver}) - - Set({test::compiler/rustc_parse}) - - Set({test::compiler/rustc_parse_format}) - - Set({test::compiler/rustc_passes}) - - Set({test::compiler/rustc_pattern_analysis}) - - Set({test::compiler/rustc_privacy}) - - Set({test::compiler/rustc_proc_macro}) - - Set({test::compiler/rustc_public}) - - Set({test::compiler/rustc_public_bridge}) - - Set({test::compiler/rustc_query_impl}) - - Set({test::compiler/rustc_resolve}) - - Set({test::compiler/rustc_sanitizers}) - - Set({test::compiler/rustc_serialize}) - - Set({test::compiler/rustc_session}) - - Set({test::compiler/rustc_span}) - - Set({test::compiler/rustc_symbol_mangling}) - - Set({test::compiler/rustc_target}) - - Set({test::compiler/rustc_thread_pool}) - - Set({test::compiler/rustc_trait_selection}) - - Set({test::compiler/rustc_traits}) - - Set({test::compiler/rustc_transmute}) - - Set({test::compiler/rustc_ty_utils}) - - Set({test::compiler/rustc_type_ir}) - - Set({test::compiler/rustc_type_ir_macros}) - - Set({test::compiler/rustc_windows_rc}) + - Set({compiler}) + - Set({compiler/rustc}) + - Set({compiler/rustc_abi}) + - Set({compiler/rustc_arena}) + - Set({compiler/rustc_ast}) + - Set({compiler/rustc_ast_ir}) + - Set({compiler/rustc_ast_lowering}) + - Set({compiler/rustc_ast_passes}) + - Set({compiler/rustc_ast_pretty}) + - Set({compiler/rustc_attr_parsing}) + - Set({compiler/rustc_baked_icu_data}) + - Set({compiler/rustc_borrowck}) + - Set({compiler/rustc_builtin_macros}) + - Set({compiler/rustc_codegen_llvm}) + - Set({compiler/rustc_codegen_ssa}) + - Set({compiler/rustc_const_eval}) + - Set({compiler/rustc_data_structures}) + - Set({compiler/rustc_driver}) + - Set({compiler/rustc_driver_impl}) + - Set({compiler/rustc_error_codes}) + - Set({compiler/rustc_error_messages}) + - Set({compiler/rustc_errors}) + - Set({compiler/rustc_expand}) + - Set({compiler/rustc_feature}) + - Set({compiler/rustc_fs_util}) + - Set({compiler/rustc_graphviz}) + - Set({compiler/rustc_hashes}) + - Set({compiler/rustc_hir}) + - Set({compiler/rustc_hir_analysis}) + - Set({compiler/rustc_hir_id}) + - Set({compiler/rustc_hir_pretty}) + - Set({compiler/rustc_hir_typeck}) + - Set({compiler/rustc_incremental}) + - Set({compiler/rustc_index}) + - Set({compiler/rustc_index_macros}) + - Set({compiler/rustc_infer}) + - Set({compiler/rustc_interface}) + - Set({compiler/rustc_lexer}) + - Set({compiler/rustc_lint}) + - Set({compiler/rustc_lint_defs}) + - Set({compiler/rustc_llvm}) + - Set({compiler/rustc_log}) + - Set({compiler/rustc_macros}) + - Set({compiler/rustc_metadata}) + - Set({compiler/rustc_middle}) + - Set({compiler/rustc_mir_build}) + - Set({compiler/rustc_mir_dataflow}) + - Set({compiler/rustc_mir_transform}) + - Set({compiler/rustc_monomorphize}) + - Set({compiler/rustc_next_trait_solver}) + - Set({compiler/rustc_parse}) + - Set({compiler/rustc_parse_format}) + - Set({compiler/rustc_passes}) + - Set({compiler/rustc_pattern_analysis}) + - Set({compiler/rustc_privacy}) + - Set({compiler/rustc_proc_macro}) + - Set({compiler/rustc_public}) + - Set({compiler/rustc_public_bridge}) + - Set({compiler/rustc_query_impl}) + - Set({compiler/rustc_resolve}) + - Set({compiler/rustc_sanitizers}) + - Set({compiler/rustc_serialize}) + - Set({compiler/rustc_session}) + - Set({compiler/rustc_span}) + - Set({compiler/rustc_symbol_mangling}) + - Set({compiler/rustc_target}) + - Set({compiler/rustc_thread_pool}) + - Set({compiler/rustc_trait_selection}) + - Set({compiler/rustc_traits}) + - Set({compiler/rustc_transmute}) + - Set({compiler/rustc_ty_utils}) + - Set({compiler/rustc_type_ir}) + - Set({compiler/rustc_type_ir_macros}) + - Set({compiler/rustc_windows_rc}) [Test] test::CrateRustdoc targets: [x86_64-unknown-linux-gnu] - - Set({test::src/librustdoc, test::src/tools/rustdoc}) + - Set({src/librustdoc, src/tools/rustdoc}) [Test] test::CrateRustdocJsonTypes targets: [x86_64-unknown-linux-gnu] - - Set({test::src/rustdoc-json-types}) + - Set({src/rustdoc-json-types}) [Test] test::CrateBootstrap targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/coverage-dump}) - - Set({test::src/tools/jsondoclint}) - - Set({test::src/tools/replace-version-placeholder}) - - Set({test::tidyselftest}) + - Set({src/tools/coverage-dump}) + - Set({src/tools/jsondoclint}) + - Set({src/tools/replace-version-placeholder}) + - Set({tidyselftest}) [Test] test::RemoteTestClientTests targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/remote-test-client}) + - Set({src/tools/remote-test-client}) [Test] test::Linkcheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/linkchecker}) + - Set({src/tools/linkchecker}) [Test] test::TierCheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/tier-check}) + - Set({src/tools/tier-check}) [Test] test::RustAnalyzer targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rust-analyzer}) + - Set({src/tools/rust-analyzer}) [Test] test::ErrorIndex targets: [x86_64-unknown-linux-gnu] - - Set({test::error-index}) - - Set({test::src/tools/error_index_generator}) + - Set({error-index}) + - Set({src/tools/error_index_generator}) [Test] test::RustdocBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/rustdoc}) + - Set({src/doc/rustdoc}) [Test] test::UnstableBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/unstable-book}) + - Set({src/doc/unstable-book}) [Test] test::RustcBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/rustc}) + - Set({src/doc/rustc}) [Test] test::StdarchVerify targets: [x86_64-unknown-linux-gnu] - - Set({test::library/stdarch/crates/stdarch-verify}) + - Set({library/stdarch/crates/stdarch-verify}) [Test] test::RustdocJSStd targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-js-std) + - Suite(tests/rustdoc-js-std) [Test] test::RustdocJSNotStd targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-js) + - Suite(tests/rustdoc-js) [Test] test::RustdocTheme targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rustdoc-themes}) + - Set({src/tools/rustdoc-themes}) [Test] test::RustdocUi targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-ui) + - Suite(tests/rustdoc-ui) [Test] test::RustdocJson targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-json) + - Suite(tests/rustdoc-json) [Test] test::HtmlCheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/html-checker}) + - Set({src/tools/html-checker}) [Test] test::RustInstaller targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rust-installer}) + - Set({src/tools/rust-installer}) [Test] test::TestFloatParse targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/test-float-parse}) + - Set({src/tools/test-float-parse}) [Test] test::RunMake targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/run-make) + - Suite(tests/run-make) [Test] test::RunMakeCargo targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/run-make-cargo) + - Suite(tests/run-make-cargo) [Test] test::IntrinsicTest targets: [x86_64-unknown-linux-gnu] - - Set({test::intrinsic-test}) + - Set({intrinsic-test}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_coverage_map.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_coverage_map.snap index 308cc9f079648..6ffa385654c1a 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_coverage_map.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_coverage_map.snap @@ -4,214 +4,214 @@ expression: test --skip=coverage-map --- [Test] test::Tidy targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/tidy}) + - Set({src/tools/tidy}) [Test] test::Ui targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/ui) + - Suite(tests/ui) [Test] test::Crashes targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/crashes) + - Suite(tests/crashes) [Test] test::Coverage targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/coverage) + - Suite(tests/coverage) [Test] test::MirOpt targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/mir-opt) + - Suite(tests/mir-opt) [Test] test::CodegenLlvm targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/codegen-llvm) + - Suite(tests/codegen-llvm) [Test] test::CodegenUnits targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/codegen-units) + - Suite(tests/codegen-units) [Test] test::AssemblyLlvm targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/assembly-llvm) + - Suite(tests/assembly-llvm) [Test] test::Incremental targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/incremental) + - Suite(tests/incremental) [Test] test::Debuginfo targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/debuginfo) + - Suite(tests/debuginfo) [Test] test::UiFullDeps targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/ui-fulldeps) + - Suite(tests/ui-fulldeps) [Test] test::RustdocHtml targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-html) + - Suite(tests/rustdoc-html) [Test] test::CoverageRunRustdoc targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/coverage-run-rustdoc) + - Suite(tests/coverage-run-rustdoc) [Test] test::Pretty targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/pretty) + - Suite(tests/pretty) [Test] test::CodegenCranelift targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler/rustc_codegen_cranelift}) + - Set({compiler/rustc_codegen_cranelift}) [Test] test::CodegenGCC targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler/rustc_codegen_gcc}) + - Set({compiler/rustc_codegen_gcc}) [Test] test::Crate targets: [aarch64-unknown-linux-gnu] - - Set({test::library/alloc}) - - Set({test::library/alloctests}) - - Set({test::library/compiler-builtins/compiler-builtins}) - - Set({test::library/core}) - - Set({test::library/coretests}) - - Set({test::library/panic_abort}) - - Set({test::library/panic_unwind}) - - Set({test::library/proc_macro}) - - Set({test::library/rustc-std-workspace-core}) - - Set({test::library/std}) - - Set({test::library/std_detect}) - - Set({test::library/sysroot}) - - Set({test::library/test}) - - Set({test::library/unwind}) + - Set({library/alloc}) + - Set({library/alloctests}) + - Set({library/compiler-builtins/compiler-builtins}) + - Set({library/core}) + - Set({library/coretests}) + - Set({library/panic_abort}) + - Set({library/panic_unwind}) + - Set({library/proc_macro}) + - Set({library/rustc-std-workspace-core}) + - Set({library/std}) + - Set({library/std_detect}) + - Set({library/sysroot}) + - Set({library/test}) + - Set({library/unwind}) [Test] test::CrateLibrustc targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler}) - - Set({test::compiler/rustc}) - - Set({test::compiler/rustc_abi}) - - Set({test::compiler/rustc_arena}) - - Set({test::compiler/rustc_ast}) - - Set({test::compiler/rustc_ast_ir}) - - Set({test::compiler/rustc_ast_lowering}) - - Set({test::compiler/rustc_ast_passes}) - - Set({test::compiler/rustc_ast_pretty}) - - Set({test::compiler/rustc_attr_parsing}) - - Set({test::compiler/rustc_baked_icu_data}) - - Set({test::compiler/rustc_borrowck}) - - Set({test::compiler/rustc_builtin_macros}) - - Set({test::compiler/rustc_codegen_llvm}) - - Set({test::compiler/rustc_codegen_ssa}) - - Set({test::compiler/rustc_const_eval}) - - Set({test::compiler/rustc_data_structures}) - - Set({test::compiler/rustc_driver}) - - Set({test::compiler/rustc_driver_impl}) - - Set({test::compiler/rustc_error_codes}) - - Set({test::compiler/rustc_error_messages}) - - Set({test::compiler/rustc_errors}) - - Set({test::compiler/rustc_expand}) - - Set({test::compiler/rustc_feature}) - - Set({test::compiler/rustc_fs_util}) - - Set({test::compiler/rustc_graphviz}) - - Set({test::compiler/rustc_hashes}) - - Set({test::compiler/rustc_hir}) - - Set({test::compiler/rustc_hir_analysis}) - - Set({test::compiler/rustc_hir_id}) - - Set({test::compiler/rustc_hir_pretty}) - - Set({test::compiler/rustc_hir_typeck}) - - Set({test::compiler/rustc_incremental}) - - Set({test::compiler/rustc_index}) - - Set({test::compiler/rustc_index_macros}) - - Set({test::compiler/rustc_infer}) - - Set({test::compiler/rustc_interface}) - - Set({test::compiler/rustc_lexer}) - - Set({test::compiler/rustc_lint}) - - Set({test::compiler/rustc_lint_defs}) - - Set({test::compiler/rustc_llvm}) - - Set({test::compiler/rustc_log}) - - Set({test::compiler/rustc_macros}) - - Set({test::compiler/rustc_metadata}) - - Set({test::compiler/rustc_middle}) - - Set({test::compiler/rustc_mir_build}) - - Set({test::compiler/rustc_mir_dataflow}) - - Set({test::compiler/rustc_mir_transform}) - - Set({test::compiler/rustc_monomorphize}) - - Set({test::compiler/rustc_next_trait_solver}) - - Set({test::compiler/rustc_parse}) - - Set({test::compiler/rustc_parse_format}) - - Set({test::compiler/rustc_passes}) - - Set({test::compiler/rustc_pattern_analysis}) - - Set({test::compiler/rustc_privacy}) - - Set({test::compiler/rustc_proc_macro}) - - Set({test::compiler/rustc_public}) - - Set({test::compiler/rustc_public_bridge}) - - Set({test::compiler/rustc_query_impl}) - - Set({test::compiler/rustc_resolve}) - - Set({test::compiler/rustc_sanitizers}) - - Set({test::compiler/rustc_serialize}) - - Set({test::compiler/rustc_session}) - - Set({test::compiler/rustc_span}) - - Set({test::compiler/rustc_symbol_mangling}) - - Set({test::compiler/rustc_target}) - - Set({test::compiler/rustc_thread_pool}) - - Set({test::compiler/rustc_trait_selection}) - - Set({test::compiler/rustc_traits}) - - Set({test::compiler/rustc_transmute}) - - Set({test::compiler/rustc_ty_utils}) - - Set({test::compiler/rustc_type_ir}) - - Set({test::compiler/rustc_type_ir_macros}) - - Set({test::compiler/rustc_windows_rc}) + - Set({compiler}) + - Set({compiler/rustc}) + - Set({compiler/rustc_abi}) + - Set({compiler/rustc_arena}) + - Set({compiler/rustc_ast}) + - Set({compiler/rustc_ast_ir}) + - Set({compiler/rustc_ast_lowering}) + - Set({compiler/rustc_ast_passes}) + - Set({compiler/rustc_ast_pretty}) + - Set({compiler/rustc_attr_parsing}) + - Set({compiler/rustc_baked_icu_data}) + - Set({compiler/rustc_borrowck}) + - Set({compiler/rustc_builtin_macros}) + - Set({compiler/rustc_codegen_llvm}) + - Set({compiler/rustc_codegen_ssa}) + - Set({compiler/rustc_const_eval}) + - Set({compiler/rustc_data_structures}) + - Set({compiler/rustc_driver}) + - Set({compiler/rustc_driver_impl}) + - Set({compiler/rustc_error_codes}) + - Set({compiler/rustc_error_messages}) + - Set({compiler/rustc_errors}) + - Set({compiler/rustc_expand}) + - Set({compiler/rustc_feature}) + - Set({compiler/rustc_fs_util}) + - Set({compiler/rustc_graphviz}) + - Set({compiler/rustc_hashes}) + - Set({compiler/rustc_hir}) + - Set({compiler/rustc_hir_analysis}) + - Set({compiler/rustc_hir_id}) + - Set({compiler/rustc_hir_pretty}) + - Set({compiler/rustc_hir_typeck}) + - Set({compiler/rustc_incremental}) + - Set({compiler/rustc_index}) + - Set({compiler/rustc_index_macros}) + - Set({compiler/rustc_infer}) + - Set({compiler/rustc_interface}) + - Set({compiler/rustc_lexer}) + - Set({compiler/rustc_lint}) + - Set({compiler/rustc_lint_defs}) + - Set({compiler/rustc_llvm}) + - Set({compiler/rustc_log}) + - Set({compiler/rustc_macros}) + - Set({compiler/rustc_metadata}) + - Set({compiler/rustc_middle}) + - Set({compiler/rustc_mir_build}) + - Set({compiler/rustc_mir_dataflow}) + - Set({compiler/rustc_mir_transform}) + - Set({compiler/rustc_monomorphize}) + - Set({compiler/rustc_next_trait_solver}) + - Set({compiler/rustc_parse}) + - Set({compiler/rustc_parse_format}) + - Set({compiler/rustc_passes}) + - Set({compiler/rustc_pattern_analysis}) + - Set({compiler/rustc_privacy}) + - Set({compiler/rustc_proc_macro}) + - Set({compiler/rustc_public}) + - Set({compiler/rustc_public_bridge}) + - Set({compiler/rustc_query_impl}) + - Set({compiler/rustc_resolve}) + - Set({compiler/rustc_sanitizers}) + - Set({compiler/rustc_serialize}) + - Set({compiler/rustc_session}) + - Set({compiler/rustc_span}) + - Set({compiler/rustc_symbol_mangling}) + - Set({compiler/rustc_target}) + - Set({compiler/rustc_thread_pool}) + - Set({compiler/rustc_trait_selection}) + - Set({compiler/rustc_traits}) + - Set({compiler/rustc_transmute}) + - Set({compiler/rustc_ty_utils}) + - Set({compiler/rustc_type_ir}) + - Set({compiler/rustc_type_ir_macros}) + - Set({compiler/rustc_windows_rc}) [Test] test::CrateRustdoc targets: [x86_64-unknown-linux-gnu] - - Set({test::src/librustdoc, test::src/tools/rustdoc}) + - Set({src/librustdoc, src/tools/rustdoc}) [Test] test::CrateRustdocJsonTypes targets: [x86_64-unknown-linux-gnu] - - Set({test::src/rustdoc-json-types}) + - Set({src/rustdoc-json-types}) [Test] test::CrateBootstrap targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/coverage-dump}) - - Set({test::src/tools/jsondoclint}) - - Set({test::src/tools/replace-version-placeholder}) - - Set({test::tidyselftest}) + - Set({src/tools/coverage-dump}) + - Set({src/tools/jsondoclint}) + - Set({src/tools/replace-version-placeholder}) + - Set({tidyselftest}) [Test] test::RemoteTestClientTests targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/remote-test-client}) + - Set({src/tools/remote-test-client}) [Test] test::Linkcheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/linkchecker}) + - Set({src/tools/linkchecker}) [Test] test::TierCheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/tier-check}) + - Set({src/tools/tier-check}) [Test] test::RustAnalyzer targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rust-analyzer}) + - Set({src/tools/rust-analyzer}) [Test] test::ErrorIndex targets: [x86_64-unknown-linux-gnu] - - Set({test::error-index}) - - Set({test::src/tools/error_index_generator}) + - Set({error-index}) + - Set({src/tools/error_index_generator}) [Test] test::RustdocBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/rustdoc}) + - Set({src/doc/rustdoc}) [Test] test::UnstableBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/unstable-book}) + - Set({src/doc/unstable-book}) [Test] test::RustcBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/rustc}) + - Set({src/doc/rustc}) [Test] test::StdarchVerify targets: [x86_64-unknown-linux-gnu] - - Set({test::library/stdarch/crates/stdarch-verify}) + - Set({library/stdarch/crates/stdarch-verify}) [Test] test::RustdocJSStd targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-js-std) + - Suite(tests/rustdoc-js-std) [Test] test::RustdocJSNotStd targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-js) + - Suite(tests/rustdoc-js) [Test] test::RustdocTheme targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rustdoc-themes}) + - Set({src/tools/rustdoc-themes}) [Test] test::RustdocUi targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-ui) + - Suite(tests/rustdoc-ui) [Test] test::RustdocJson targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-json) + - Suite(tests/rustdoc-json) [Test] test::HtmlCheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/html-checker}) + - Set({src/tools/html-checker}) [Test] test::RustInstaller targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rust-installer}) + - Set({src/tools/rust-installer}) [Test] test::TestFloatParse targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/test-float-parse}) + - Set({src/tools/test-float-parse}) [Test] test::RunMake targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/run-make) + - Suite(tests/run-make) [Test] test::RunMakeCargo targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/run-make-cargo) + - Suite(tests/run-make-cargo) [Test] test::IntrinsicTest targets: [x86_64-unknown-linux-gnu] - - Set({test::intrinsic-test}) + - Set({intrinsic-test}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_coverage_run.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_coverage_run.snap index c7395e025b773..bc8356d1bcf5e 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_coverage_run.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_coverage_run.snap @@ -4,214 +4,214 @@ expression: test --skip=coverage-run --- [Test] test::Tidy targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/tidy}) + - Set({src/tools/tidy}) [Test] test::Ui targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/ui) + - Suite(tests/ui) [Test] test::Crashes targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/crashes) + - Suite(tests/crashes) [Test] test::Coverage targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/coverage) + - Suite(tests/coverage) [Test] test::MirOpt targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/mir-opt) + - Suite(tests/mir-opt) [Test] test::CodegenLlvm targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/codegen-llvm) + - Suite(tests/codegen-llvm) [Test] test::CodegenUnits targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/codegen-units) + - Suite(tests/codegen-units) [Test] test::AssemblyLlvm targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/assembly-llvm) + - Suite(tests/assembly-llvm) [Test] test::Incremental targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/incremental) + - Suite(tests/incremental) [Test] test::Debuginfo targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/debuginfo) + - Suite(tests/debuginfo) [Test] test::UiFullDeps targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/ui-fulldeps) + - Suite(tests/ui-fulldeps) [Test] test::RustdocHtml targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-html) + - Suite(tests/rustdoc-html) [Test] test::CoverageRunRustdoc targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/coverage-run-rustdoc) + - Suite(tests/coverage-run-rustdoc) [Test] test::Pretty targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/pretty) + - Suite(tests/pretty) [Test] test::CodegenCranelift targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler/rustc_codegen_cranelift}) + - Set({compiler/rustc_codegen_cranelift}) [Test] test::CodegenGCC targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler/rustc_codegen_gcc}) + - Set({compiler/rustc_codegen_gcc}) [Test] test::Crate targets: [aarch64-unknown-linux-gnu] - - Set({test::library/alloc}) - - Set({test::library/alloctests}) - - Set({test::library/compiler-builtins/compiler-builtins}) - - Set({test::library/core}) - - Set({test::library/coretests}) - - Set({test::library/panic_abort}) - - Set({test::library/panic_unwind}) - - Set({test::library/proc_macro}) - - Set({test::library/rustc-std-workspace-core}) - - Set({test::library/std}) - - Set({test::library/std_detect}) - - Set({test::library/sysroot}) - - Set({test::library/test}) - - Set({test::library/unwind}) + - Set({library/alloc}) + - Set({library/alloctests}) + - Set({library/compiler-builtins/compiler-builtins}) + - Set({library/core}) + - Set({library/coretests}) + - Set({library/panic_abort}) + - Set({library/panic_unwind}) + - Set({library/proc_macro}) + - Set({library/rustc-std-workspace-core}) + - Set({library/std}) + - Set({library/std_detect}) + - Set({library/sysroot}) + - Set({library/test}) + - Set({library/unwind}) [Test] test::CrateLibrustc targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler}) - - Set({test::compiler/rustc}) - - Set({test::compiler/rustc_abi}) - - Set({test::compiler/rustc_arena}) - - Set({test::compiler/rustc_ast}) - - Set({test::compiler/rustc_ast_ir}) - - Set({test::compiler/rustc_ast_lowering}) - - Set({test::compiler/rustc_ast_passes}) - - Set({test::compiler/rustc_ast_pretty}) - - Set({test::compiler/rustc_attr_parsing}) - - Set({test::compiler/rustc_baked_icu_data}) - - Set({test::compiler/rustc_borrowck}) - - Set({test::compiler/rustc_builtin_macros}) - - Set({test::compiler/rustc_codegen_llvm}) - - Set({test::compiler/rustc_codegen_ssa}) - - Set({test::compiler/rustc_const_eval}) - - Set({test::compiler/rustc_data_structures}) - - Set({test::compiler/rustc_driver}) - - Set({test::compiler/rustc_driver_impl}) - - Set({test::compiler/rustc_error_codes}) - - Set({test::compiler/rustc_error_messages}) - - Set({test::compiler/rustc_errors}) - - Set({test::compiler/rustc_expand}) - - Set({test::compiler/rustc_feature}) - - Set({test::compiler/rustc_fs_util}) - - Set({test::compiler/rustc_graphviz}) - - Set({test::compiler/rustc_hashes}) - - Set({test::compiler/rustc_hir}) - - Set({test::compiler/rustc_hir_analysis}) - - Set({test::compiler/rustc_hir_id}) - - Set({test::compiler/rustc_hir_pretty}) - - Set({test::compiler/rustc_hir_typeck}) - - Set({test::compiler/rustc_incremental}) - - Set({test::compiler/rustc_index}) - - Set({test::compiler/rustc_index_macros}) - - Set({test::compiler/rustc_infer}) - - Set({test::compiler/rustc_interface}) - - Set({test::compiler/rustc_lexer}) - - Set({test::compiler/rustc_lint}) - - Set({test::compiler/rustc_lint_defs}) - - Set({test::compiler/rustc_llvm}) - - Set({test::compiler/rustc_log}) - - Set({test::compiler/rustc_macros}) - - Set({test::compiler/rustc_metadata}) - - Set({test::compiler/rustc_middle}) - - Set({test::compiler/rustc_mir_build}) - - Set({test::compiler/rustc_mir_dataflow}) - - Set({test::compiler/rustc_mir_transform}) - - Set({test::compiler/rustc_monomorphize}) - - Set({test::compiler/rustc_next_trait_solver}) - - Set({test::compiler/rustc_parse}) - - Set({test::compiler/rustc_parse_format}) - - Set({test::compiler/rustc_passes}) - - Set({test::compiler/rustc_pattern_analysis}) - - Set({test::compiler/rustc_privacy}) - - Set({test::compiler/rustc_proc_macro}) - - Set({test::compiler/rustc_public}) - - Set({test::compiler/rustc_public_bridge}) - - Set({test::compiler/rustc_query_impl}) - - Set({test::compiler/rustc_resolve}) - - Set({test::compiler/rustc_sanitizers}) - - Set({test::compiler/rustc_serialize}) - - Set({test::compiler/rustc_session}) - - Set({test::compiler/rustc_span}) - - Set({test::compiler/rustc_symbol_mangling}) - - Set({test::compiler/rustc_target}) - - Set({test::compiler/rustc_thread_pool}) - - Set({test::compiler/rustc_trait_selection}) - - Set({test::compiler/rustc_traits}) - - Set({test::compiler/rustc_transmute}) - - Set({test::compiler/rustc_ty_utils}) - - Set({test::compiler/rustc_type_ir}) - - Set({test::compiler/rustc_type_ir_macros}) - - Set({test::compiler/rustc_windows_rc}) + - Set({compiler}) + - Set({compiler/rustc}) + - Set({compiler/rustc_abi}) + - Set({compiler/rustc_arena}) + - Set({compiler/rustc_ast}) + - Set({compiler/rustc_ast_ir}) + - Set({compiler/rustc_ast_lowering}) + - Set({compiler/rustc_ast_passes}) + - Set({compiler/rustc_ast_pretty}) + - Set({compiler/rustc_attr_parsing}) + - Set({compiler/rustc_baked_icu_data}) + - Set({compiler/rustc_borrowck}) + - Set({compiler/rustc_builtin_macros}) + - Set({compiler/rustc_codegen_llvm}) + - Set({compiler/rustc_codegen_ssa}) + - Set({compiler/rustc_const_eval}) + - Set({compiler/rustc_data_structures}) + - Set({compiler/rustc_driver}) + - Set({compiler/rustc_driver_impl}) + - Set({compiler/rustc_error_codes}) + - Set({compiler/rustc_error_messages}) + - Set({compiler/rustc_errors}) + - Set({compiler/rustc_expand}) + - Set({compiler/rustc_feature}) + - Set({compiler/rustc_fs_util}) + - Set({compiler/rustc_graphviz}) + - Set({compiler/rustc_hashes}) + - Set({compiler/rustc_hir}) + - Set({compiler/rustc_hir_analysis}) + - Set({compiler/rustc_hir_id}) + - Set({compiler/rustc_hir_pretty}) + - Set({compiler/rustc_hir_typeck}) + - Set({compiler/rustc_incremental}) + - Set({compiler/rustc_index}) + - Set({compiler/rustc_index_macros}) + - Set({compiler/rustc_infer}) + - Set({compiler/rustc_interface}) + - Set({compiler/rustc_lexer}) + - Set({compiler/rustc_lint}) + - Set({compiler/rustc_lint_defs}) + - Set({compiler/rustc_llvm}) + - Set({compiler/rustc_log}) + - Set({compiler/rustc_macros}) + - Set({compiler/rustc_metadata}) + - Set({compiler/rustc_middle}) + - Set({compiler/rustc_mir_build}) + - Set({compiler/rustc_mir_dataflow}) + - Set({compiler/rustc_mir_transform}) + - Set({compiler/rustc_monomorphize}) + - Set({compiler/rustc_next_trait_solver}) + - Set({compiler/rustc_parse}) + - Set({compiler/rustc_parse_format}) + - Set({compiler/rustc_passes}) + - Set({compiler/rustc_pattern_analysis}) + - Set({compiler/rustc_privacy}) + - Set({compiler/rustc_proc_macro}) + - Set({compiler/rustc_public}) + - Set({compiler/rustc_public_bridge}) + - Set({compiler/rustc_query_impl}) + - Set({compiler/rustc_resolve}) + - Set({compiler/rustc_sanitizers}) + - Set({compiler/rustc_serialize}) + - Set({compiler/rustc_session}) + - Set({compiler/rustc_span}) + - Set({compiler/rustc_symbol_mangling}) + - Set({compiler/rustc_target}) + - Set({compiler/rustc_thread_pool}) + - Set({compiler/rustc_trait_selection}) + - Set({compiler/rustc_traits}) + - Set({compiler/rustc_transmute}) + - Set({compiler/rustc_ty_utils}) + - Set({compiler/rustc_type_ir}) + - Set({compiler/rustc_type_ir_macros}) + - Set({compiler/rustc_windows_rc}) [Test] test::CrateRustdoc targets: [x86_64-unknown-linux-gnu] - - Set({test::src/librustdoc, test::src/tools/rustdoc}) + - Set({src/librustdoc, src/tools/rustdoc}) [Test] test::CrateRustdocJsonTypes targets: [x86_64-unknown-linux-gnu] - - Set({test::src/rustdoc-json-types}) + - Set({src/rustdoc-json-types}) [Test] test::CrateBootstrap targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/coverage-dump}) - - Set({test::src/tools/jsondoclint}) - - Set({test::src/tools/replace-version-placeholder}) - - Set({test::tidyselftest}) + - Set({src/tools/coverage-dump}) + - Set({src/tools/jsondoclint}) + - Set({src/tools/replace-version-placeholder}) + - Set({tidyselftest}) [Test] test::RemoteTestClientTests targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/remote-test-client}) + - Set({src/tools/remote-test-client}) [Test] test::Linkcheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/linkchecker}) + - Set({src/tools/linkchecker}) [Test] test::TierCheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/tier-check}) + - Set({src/tools/tier-check}) [Test] test::RustAnalyzer targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rust-analyzer}) + - Set({src/tools/rust-analyzer}) [Test] test::ErrorIndex targets: [x86_64-unknown-linux-gnu] - - Set({test::error-index}) - - Set({test::src/tools/error_index_generator}) + - Set({error-index}) + - Set({src/tools/error_index_generator}) [Test] test::RustdocBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/rustdoc}) + - Set({src/doc/rustdoc}) [Test] test::UnstableBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/unstable-book}) + - Set({src/doc/unstable-book}) [Test] test::RustcBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/rustc}) + - Set({src/doc/rustc}) [Test] test::StdarchVerify targets: [x86_64-unknown-linux-gnu] - - Set({test::library/stdarch/crates/stdarch-verify}) + - Set({library/stdarch/crates/stdarch-verify}) [Test] test::RustdocJSStd targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-js-std) + - Suite(tests/rustdoc-js-std) [Test] test::RustdocJSNotStd targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-js) + - Suite(tests/rustdoc-js) [Test] test::RustdocTheme targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rustdoc-themes}) + - Set({src/tools/rustdoc-themes}) [Test] test::RustdocUi targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-ui) + - Suite(tests/rustdoc-ui) [Test] test::RustdocJson targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-json) + - Suite(tests/rustdoc-json) [Test] test::HtmlCheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/html-checker}) + - Set({src/tools/html-checker}) [Test] test::RustInstaller targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rust-installer}) + - Set({src/tools/rust-installer}) [Test] test::TestFloatParse targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/test-float-parse}) + - Set({src/tools/test-float-parse}) [Test] test::RunMake targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/run-make) + - Suite(tests/run-make) [Test] test::RunMakeCargo targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/run-make-cargo) + - Suite(tests/run-make-cargo) [Test] test::IntrinsicTest targets: [x86_64-unknown-linux-gnu] - - Set({test::intrinsic-test}) + - Set({intrinsic-test}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_tests.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_tests.snap index 6885e2cd0fe25..93d6100a01fef 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_tests.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_tests.snap @@ -4,157 +4,157 @@ expression: test --skip=tests --- [Test] test::Tidy targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/tidy}) + - Set({src/tools/tidy}) [Test] test::CodegenCranelift targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler/rustc_codegen_cranelift}) + - Set({compiler/rustc_codegen_cranelift}) [Test] test::CodegenGCC targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler/rustc_codegen_gcc}) + - Set({compiler/rustc_codegen_gcc}) [Test] test::Crate targets: [aarch64-unknown-linux-gnu] - - Set({test::library/alloc}) - - Set({test::library/alloctests}) - - Set({test::library/compiler-builtins/compiler-builtins}) - - Set({test::library/core}) - - Set({test::library/coretests}) - - Set({test::library/panic_abort}) - - Set({test::library/panic_unwind}) - - Set({test::library/proc_macro}) - - Set({test::library/rustc-std-workspace-core}) - - Set({test::library/std}) - - Set({test::library/std_detect}) - - Set({test::library/sysroot}) - - Set({test::library/test}) - - Set({test::library/unwind}) + - Set({library/alloc}) + - Set({library/alloctests}) + - Set({library/compiler-builtins/compiler-builtins}) + - Set({library/core}) + - Set({library/coretests}) + - Set({library/panic_abort}) + - Set({library/panic_unwind}) + - Set({library/proc_macro}) + - Set({library/rustc-std-workspace-core}) + - Set({library/std}) + - Set({library/std_detect}) + - Set({library/sysroot}) + - Set({library/test}) + - Set({library/unwind}) [Test] test::CrateLibrustc targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler}) - - Set({test::compiler/rustc}) - - Set({test::compiler/rustc_abi}) - - Set({test::compiler/rustc_arena}) - - Set({test::compiler/rustc_ast}) - - Set({test::compiler/rustc_ast_ir}) - - Set({test::compiler/rustc_ast_lowering}) - - Set({test::compiler/rustc_ast_passes}) - - Set({test::compiler/rustc_ast_pretty}) - - Set({test::compiler/rustc_attr_parsing}) - - Set({test::compiler/rustc_baked_icu_data}) - - Set({test::compiler/rustc_borrowck}) - - Set({test::compiler/rustc_builtin_macros}) - - Set({test::compiler/rustc_codegen_llvm}) - - Set({test::compiler/rustc_codegen_ssa}) - - Set({test::compiler/rustc_const_eval}) - - Set({test::compiler/rustc_data_structures}) - - Set({test::compiler/rustc_driver}) - - Set({test::compiler/rustc_driver_impl}) - - Set({test::compiler/rustc_error_codes}) - - Set({test::compiler/rustc_error_messages}) - - Set({test::compiler/rustc_errors}) - - Set({test::compiler/rustc_expand}) - - Set({test::compiler/rustc_feature}) - - Set({test::compiler/rustc_fs_util}) - - Set({test::compiler/rustc_graphviz}) - - Set({test::compiler/rustc_hashes}) - - Set({test::compiler/rustc_hir}) - - Set({test::compiler/rustc_hir_analysis}) - - Set({test::compiler/rustc_hir_id}) - - Set({test::compiler/rustc_hir_pretty}) - - Set({test::compiler/rustc_hir_typeck}) - - Set({test::compiler/rustc_incremental}) - - Set({test::compiler/rustc_index}) - - Set({test::compiler/rustc_index_macros}) - - Set({test::compiler/rustc_infer}) - - Set({test::compiler/rustc_interface}) - - Set({test::compiler/rustc_lexer}) - - Set({test::compiler/rustc_lint}) - - Set({test::compiler/rustc_lint_defs}) - - Set({test::compiler/rustc_llvm}) - - Set({test::compiler/rustc_log}) - - Set({test::compiler/rustc_macros}) - - Set({test::compiler/rustc_metadata}) - - Set({test::compiler/rustc_middle}) - - Set({test::compiler/rustc_mir_build}) - - Set({test::compiler/rustc_mir_dataflow}) - - Set({test::compiler/rustc_mir_transform}) - - Set({test::compiler/rustc_monomorphize}) - - Set({test::compiler/rustc_next_trait_solver}) - - Set({test::compiler/rustc_parse}) - - Set({test::compiler/rustc_parse_format}) - - Set({test::compiler/rustc_passes}) - - Set({test::compiler/rustc_pattern_analysis}) - - Set({test::compiler/rustc_privacy}) - - Set({test::compiler/rustc_proc_macro}) - - Set({test::compiler/rustc_public}) - - Set({test::compiler/rustc_public_bridge}) - - Set({test::compiler/rustc_query_impl}) - - Set({test::compiler/rustc_resolve}) - - Set({test::compiler/rustc_sanitizers}) - - Set({test::compiler/rustc_serialize}) - - Set({test::compiler/rustc_session}) - - Set({test::compiler/rustc_span}) - - Set({test::compiler/rustc_symbol_mangling}) - - Set({test::compiler/rustc_target}) - - Set({test::compiler/rustc_thread_pool}) - - Set({test::compiler/rustc_trait_selection}) - - Set({test::compiler/rustc_traits}) - - Set({test::compiler/rustc_transmute}) - - Set({test::compiler/rustc_ty_utils}) - - Set({test::compiler/rustc_type_ir}) - - Set({test::compiler/rustc_type_ir_macros}) - - Set({test::compiler/rustc_windows_rc}) + - Set({compiler}) + - Set({compiler/rustc}) + - Set({compiler/rustc_abi}) + - Set({compiler/rustc_arena}) + - Set({compiler/rustc_ast}) + - Set({compiler/rustc_ast_ir}) + - Set({compiler/rustc_ast_lowering}) + - Set({compiler/rustc_ast_passes}) + - Set({compiler/rustc_ast_pretty}) + - Set({compiler/rustc_attr_parsing}) + - Set({compiler/rustc_baked_icu_data}) + - Set({compiler/rustc_borrowck}) + - Set({compiler/rustc_builtin_macros}) + - Set({compiler/rustc_codegen_llvm}) + - Set({compiler/rustc_codegen_ssa}) + - Set({compiler/rustc_const_eval}) + - Set({compiler/rustc_data_structures}) + - Set({compiler/rustc_driver}) + - Set({compiler/rustc_driver_impl}) + - Set({compiler/rustc_error_codes}) + - Set({compiler/rustc_error_messages}) + - Set({compiler/rustc_errors}) + - Set({compiler/rustc_expand}) + - Set({compiler/rustc_feature}) + - Set({compiler/rustc_fs_util}) + - Set({compiler/rustc_graphviz}) + - Set({compiler/rustc_hashes}) + - Set({compiler/rustc_hir}) + - Set({compiler/rustc_hir_analysis}) + - Set({compiler/rustc_hir_id}) + - Set({compiler/rustc_hir_pretty}) + - Set({compiler/rustc_hir_typeck}) + - Set({compiler/rustc_incremental}) + - Set({compiler/rustc_index}) + - Set({compiler/rustc_index_macros}) + - Set({compiler/rustc_infer}) + - Set({compiler/rustc_interface}) + - Set({compiler/rustc_lexer}) + - Set({compiler/rustc_lint}) + - Set({compiler/rustc_lint_defs}) + - Set({compiler/rustc_llvm}) + - Set({compiler/rustc_log}) + - Set({compiler/rustc_macros}) + - Set({compiler/rustc_metadata}) + - Set({compiler/rustc_middle}) + - Set({compiler/rustc_mir_build}) + - Set({compiler/rustc_mir_dataflow}) + - Set({compiler/rustc_mir_transform}) + - Set({compiler/rustc_monomorphize}) + - Set({compiler/rustc_next_trait_solver}) + - Set({compiler/rustc_parse}) + - Set({compiler/rustc_parse_format}) + - Set({compiler/rustc_passes}) + - Set({compiler/rustc_pattern_analysis}) + - Set({compiler/rustc_privacy}) + - Set({compiler/rustc_proc_macro}) + - Set({compiler/rustc_public}) + - Set({compiler/rustc_public_bridge}) + - Set({compiler/rustc_query_impl}) + - Set({compiler/rustc_resolve}) + - Set({compiler/rustc_sanitizers}) + - Set({compiler/rustc_serialize}) + - Set({compiler/rustc_session}) + - Set({compiler/rustc_span}) + - Set({compiler/rustc_symbol_mangling}) + - Set({compiler/rustc_target}) + - Set({compiler/rustc_thread_pool}) + - Set({compiler/rustc_trait_selection}) + - Set({compiler/rustc_traits}) + - Set({compiler/rustc_transmute}) + - Set({compiler/rustc_ty_utils}) + - Set({compiler/rustc_type_ir}) + - Set({compiler/rustc_type_ir_macros}) + - Set({compiler/rustc_windows_rc}) [Test] test::CrateRustdoc targets: [x86_64-unknown-linux-gnu] - - Set({test::src/librustdoc, test::src/tools/rustdoc}) + - Set({src/librustdoc, src/tools/rustdoc}) [Test] test::CrateRustdocJsonTypes targets: [x86_64-unknown-linux-gnu] - - Set({test::src/rustdoc-json-types}) + - Set({src/rustdoc-json-types}) [Test] test::CrateBootstrap targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/coverage-dump}) - - Set({test::src/tools/jsondoclint}) - - Set({test::src/tools/replace-version-placeholder}) - - Set({test::tidyselftest}) + - Set({src/tools/coverage-dump}) + - Set({src/tools/jsondoclint}) + - Set({src/tools/replace-version-placeholder}) + - Set({tidyselftest}) [Test] test::RemoteTestClientTests targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/remote-test-client}) + - Set({src/tools/remote-test-client}) [Test] test::Linkcheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/linkchecker}) + - Set({src/tools/linkchecker}) [Test] test::TierCheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/tier-check}) + - Set({src/tools/tier-check}) [Test] test::RustAnalyzer targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rust-analyzer}) + - Set({src/tools/rust-analyzer}) [Test] test::ErrorIndex targets: [x86_64-unknown-linux-gnu] - - Set({test::error-index}) - - Set({test::src/tools/error_index_generator}) + - Set({error-index}) + - Set({src/tools/error_index_generator}) [Test] test::RustdocBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/rustdoc}) + - Set({src/doc/rustdoc}) [Test] test::UnstableBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/unstable-book}) + - Set({src/doc/unstable-book}) [Test] test::RustcBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/rustc}) + - Set({src/doc/rustc}) [Test] test::StdarchVerify targets: [x86_64-unknown-linux-gnu] - - Set({test::library/stdarch/crates/stdarch-verify}) + - Set({library/stdarch/crates/stdarch-verify}) [Test] test::RustdocTheme targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rustdoc-themes}) + - Set({src/tools/rustdoc-themes}) [Test] test::HtmlCheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/html-checker}) + - Set({src/tools/html-checker}) [Test] test::RustInstaller targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rust-installer}) + - Set({src/tools/rust-installer}) [Test] test::TestFloatParse targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/test-float-parse}) + - Set({src/tools/test-float-parse}) [Test] test::IntrinsicTest targets: [x86_64-unknown-linux-gnu] - - Set({test::intrinsic-test}) + - Set({intrinsic-test}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_tests_coverage.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_tests_coverage.snap index 0f5f708ea19c0..7d13279ae6da7 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_tests_coverage.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_tests_coverage.snap @@ -4,211 +4,211 @@ expression: test --skip=tests/coverage --- [Test] test::Tidy targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/tidy}) + - Set({src/tools/tidy}) [Test] test::Ui targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/ui) + - Suite(tests/ui) [Test] test::Crashes targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/crashes) + - Suite(tests/crashes) [Test] test::MirOpt targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/mir-opt) + - Suite(tests/mir-opt) [Test] test::CodegenLlvm targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/codegen-llvm) + - Suite(tests/codegen-llvm) [Test] test::CodegenUnits targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/codegen-units) + - Suite(tests/codegen-units) [Test] test::AssemblyLlvm targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/assembly-llvm) + - Suite(tests/assembly-llvm) [Test] test::Incremental targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/incremental) + - Suite(tests/incremental) [Test] test::Debuginfo targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/debuginfo) + - Suite(tests/debuginfo) [Test] test::UiFullDeps targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/ui-fulldeps) + - Suite(tests/ui-fulldeps) [Test] test::RustdocHtml targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-html) + - Suite(tests/rustdoc-html) [Test] test::CoverageRunRustdoc targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/coverage-run-rustdoc) + - Suite(tests/coverage-run-rustdoc) [Test] test::Pretty targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/pretty) + - Suite(tests/pretty) [Test] test::CodegenCranelift targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler/rustc_codegen_cranelift}) + - Set({compiler/rustc_codegen_cranelift}) [Test] test::CodegenGCC targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler/rustc_codegen_gcc}) + - Set({compiler/rustc_codegen_gcc}) [Test] test::Crate targets: [aarch64-unknown-linux-gnu] - - Set({test::library/alloc}) - - Set({test::library/alloctests}) - - Set({test::library/compiler-builtins/compiler-builtins}) - - Set({test::library/core}) - - Set({test::library/coretests}) - - Set({test::library/panic_abort}) - - Set({test::library/panic_unwind}) - - Set({test::library/proc_macro}) - - Set({test::library/rustc-std-workspace-core}) - - Set({test::library/std}) - - Set({test::library/std_detect}) - - Set({test::library/sysroot}) - - Set({test::library/test}) - - Set({test::library/unwind}) + - Set({library/alloc}) + - Set({library/alloctests}) + - Set({library/compiler-builtins/compiler-builtins}) + - Set({library/core}) + - Set({library/coretests}) + - Set({library/panic_abort}) + - Set({library/panic_unwind}) + - Set({library/proc_macro}) + - Set({library/rustc-std-workspace-core}) + - Set({library/std}) + - Set({library/std_detect}) + - Set({library/sysroot}) + - Set({library/test}) + - Set({library/unwind}) [Test] test::CrateLibrustc targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler}) - - Set({test::compiler/rustc}) - - Set({test::compiler/rustc_abi}) - - Set({test::compiler/rustc_arena}) - - Set({test::compiler/rustc_ast}) - - Set({test::compiler/rustc_ast_ir}) - - Set({test::compiler/rustc_ast_lowering}) - - Set({test::compiler/rustc_ast_passes}) - - Set({test::compiler/rustc_ast_pretty}) - - Set({test::compiler/rustc_attr_parsing}) - - Set({test::compiler/rustc_baked_icu_data}) - - Set({test::compiler/rustc_borrowck}) - - Set({test::compiler/rustc_builtin_macros}) - - Set({test::compiler/rustc_codegen_llvm}) - - Set({test::compiler/rustc_codegen_ssa}) - - Set({test::compiler/rustc_const_eval}) - - Set({test::compiler/rustc_data_structures}) - - Set({test::compiler/rustc_driver}) - - Set({test::compiler/rustc_driver_impl}) - - Set({test::compiler/rustc_error_codes}) - - Set({test::compiler/rustc_error_messages}) - - Set({test::compiler/rustc_errors}) - - Set({test::compiler/rustc_expand}) - - Set({test::compiler/rustc_feature}) - - Set({test::compiler/rustc_fs_util}) - - Set({test::compiler/rustc_graphviz}) - - Set({test::compiler/rustc_hashes}) - - Set({test::compiler/rustc_hir}) - - Set({test::compiler/rustc_hir_analysis}) - - Set({test::compiler/rustc_hir_id}) - - Set({test::compiler/rustc_hir_pretty}) - - Set({test::compiler/rustc_hir_typeck}) - - Set({test::compiler/rustc_incremental}) - - Set({test::compiler/rustc_index}) - - Set({test::compiler/rustc_index_macros}) - - Set({test::compiler/rustc_infer}) - - Set({test::compiler/rustc_interface}) - - Set({test::compiler/rustc_lexer}) - - Set({test::compiler/rustc_lint}) - - Set({test::compiler/rustc_lint_defs}) - - Set({test::compiler/rustc_llvm}) - - Set({test::compiler/rustc_log}) - - Set({test::compiler/rustc_macros}) - - Set({test::compiler/rustc_metadata}) - - Set({test::compiler/rustc_middle}) - - Set({test::compiler/rustc_mir_build}) - - Set({test::compiler/rustc_mir_dataflow}) - - Set({test::compiler/rustc_mir_transform}) - - Set({test::compiler/rustc_monomorphize}) - - Set({test::compiler/rustc_next_trait_solver}) - - Set({test::compiler/rustc_parse}) - - Set({test::compiler/rustc_parse_format}) - - Set({test::compiler/rustc_passes}) - - Set({test::compiler/rustc_pattern_analysis}) - - Set({test::compiler/rustc_privacy}) - - Set({test::compiler/rustc_proc_macro}) - - Set({test::compiler/rustc_public}) - - Set({test::compiler/rustc_public_bridge}) - - Set({test::compiler/rustc_query_impl}) - - Set({test::compiler/rustc_resolve}) - - Set({test::compiler/rustc_sanitizers}) - - Set({test::compiler/rustc_serialize}) - - Set({test::compiler/rustc_session}) - - Set({test::compiler/rustc_span}) - - Set({test::compiler/rustc_symbol_mangling}) - - Set({test::compiler/rustc_target}) - - Set({test::compiler/rustc_thread_pool}) - - Set({test::compiler/rustc_trait_selection}) - - Set({test::compiler/rustc_traits}) - - Set({test::compiler/rustc_transmute}) - - Set({test::compiler/rustc_ty_utils}) - - Set({test::compiler/rustc_type_ir}) - - Set({test::compiler/rustc_type_ir_macros}) - - Set({test::compiler/rustc_windows_rc}) + - Set({compiler}) + - Set({compiler/rustc}) + - Set({compiler/rustc_abi}) + - Set({compiler/rustc_arena}) + - Set({compiler/rustc_ast}) + - Set({compiler/rustc_ast_ir}) + - Set({compiler/rustc_ast_lowering}) + - Set({compiler/rustc_ast_passes}) + - Set({compiler/rustc_ast_pretty}) + - Set({compiler/rustc_attr_parsing}) + - Set({compiler/rustc_baked_icu_data}) + - Set({compiler/rustc_borrowck}) + - Set({compiler/rustc_builtin_macros}) + - Set({compiler/rustc_codegen_llvm}) + - Set({compiler/rustc_codegen_ssa}) + - Set({compiler/rustc_const_eval}) + - Set({compiler/rustc_data_structures}) + - Set({compiler/rustc_driver}) + - Set({compiler/rustc_driver_impl}) + - Set({compiler/rustc_error_codes}) + - Set({compiler/rustc_error_messages}) + - Set({compiler/rustc_errors}) + - Set({compiler/rustc_expand}) + - Set({compiler/rustc_feature}) + - Set({compiler/rustc_fs_util}) + - Set({compiler/rustc_graphviz}) + - Set({compiler/rustc_hashes}) + - Set({compiler/rustc_hir}) + - Set({compiler/rustc_hir_analysis}) + - Set({compiler/rustc_hir_id}) + - Set({compiler/rustc_hir_pretty}) + - Set({compiler/rustc_hir_typeck}) + - Set({compiler/rustc_incremental}) + - Set({compiler/rustc_index}) + - Set({compiler/rustc_index_macros}) + - Set({compiler/rustc_infer}) + - Set({compiler/rustc_interface}) + - Set({compiler/rustc_lexer}) + - Set({compiler/rustc_lint}) + - Set({compiler/rustc_lint_defs}) + - Set({compiler/rustc_llvm}) + - Set({compiler/rustc_log}) + - Set({compiler/rustc_macros}) + - Set({compiler/rustc_metadata}) + - Set({compiler/rustc_middle}) + - Set({compiler/rustc_mir_build}) + - Set({compiler/rustc_mir_dataflow}) + - Set({compiler/rustc_mir_transform}) + - Set({compiler/rustc_monomorphize}) + - Set({compiler/rustc_next_trait_solver}) + - Set({compiler/rustc_parse}) + - Set({compiler/rustc_parse_format}) + - Set({compiler/rustc_passes}) + - Set({compiler/rustc_pattern_analysis}) + - Set({compiler/rustc_privacy}) + - Set({compiler/rustc_proc_macro}) + - Set({compiler/rustc_public}) + - Set({compiler/rustc_public_bridge}) + - Set({compiler/rustc_query_impl}) + - Set({compiler/rustc_resolve}) + - Set({compiler/rustc_sanitizers}) + - Set({compiler/rustc_serialize}) + - Set({compiler/rustc_session}) + - Set({compiler/rustc_span}) + - Set({compiler/rustc_symbol_mangling}) + - Set({compiler/rustc_target}) + - Set({compiler/rustc_thread_pool}) + - Set({compiler/rustc_trait_selection}) + - Set({compiler/rustc_traits}) + - Set({compiler/rustc_transmute}) + - Set({compiler/rustc_ty_utils}) + - Set({compiler/rustc_type_ir}) + - Set({compiler/rustc_type_ir_macros}) + - Set({compiler/rustc_windows_rc}) [Test] test::CrateRustdoc targets: [x86_64-unknown-linux-gnu] - - Set({test::src/librustdoc, test::src/tools/rustdoc}) + - Set({src/librustdoc, src/tools/rustdoc}) [Test] test::CrateRustdocJsonTypes targets: [x86_64-unknown-linux-gnu] - - Set({test::src/rustdoc-json-types}) + - Set({src/rustdoc-json-types}) [Test] test::CrateBootstrap targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/coverage-dump}) - - Set({test::src/tools/jsondoclint}) - - Set({test::src/tools/replace-version-placeholder}) - - Set({test::tidyselftest}) + - Set({src/tools/coverage-dump}) + - Set({src/tools/jsondoclint}) + - Set({src/tools/replace-version-placeholder}) + - Set({tidyselftest}) [Test] test::RemoteTestClientTests targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/remote-test-client}) + - Set({src/tools/remote-test-client}) [Test] test::Linkcheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/linkchecker}) + - Set({src/tools/linkchecker}) [Test] test::TierCheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/tier-check}) + - Set({src/tools/tier-check}) [Test] test::RustAnalyzer targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rust-analyzer}) + - Set({src/tools/rust-analyzer}) [Test] test::ErrorIndex targets: [x86_64-unknown-linux-gnu] - - Set({test::error-index}) - - Set({test::src/tools/error_index_generator}) + - Set({error-index}) + - Set({src/tools/error_index_generator}) [Test] test::RustdocBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/rustdoc}) + - Set({src/doc/rustdoc}) [Test] test::UnstableBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/unstable-book}) + - Set({src/doc/unstable-book}) [Test] test::RustcBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/rustc}) + - Set({src/doc/rustc}) [Test] test::StdarchVerify targets: [x86_64-unknown-linux-gnu] - - Set({test::library/stdarch/crates/stdarch-verify}) + - Set({library/stdarch/crates/stdarch-verify}) [Test] test::RustdocJSStd targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-js-std) + - Suite(tests/rustdoc-js-std) [Test] test::RustdocJSNotStd targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-js) + - Suite(tests/rustdoc-js) [Test] test::RustdocTheme targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rustdoc-themes}) + - Set({src/tools/rustdoc-themes}) [Test] test::RustdocUi targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-ui) + - Suite(tests/rustdoc-ui) [Test] test::RustdocJson targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-json) + - Suite(tests/rustdoc-json) [Test] test::HtmlCheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/html-checker}) + - Set({src/tools/html-checker}) [Test] test::RustInstaller targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rust-installer}) + - Set({src/tools/rust-installer}) [Test] test::TestFloatParse targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/test-float-parse}) + - Set({src/tools/test-float-parse}) [Test] test::RunMake targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/run-make) + - Suite(tests/run-make) [Test] test::RunMakeCargo targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/run-make-cargo) + - Suite(tests/run-make-cargo) [Test] test::IntrinsicTest targets: [x86_64-unknown-linux-gnu] - - Set({test::intrinsic-test}) + - Set({intrinsic-test}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_tests_etc.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_tests_etc.snap index 80dd87e9a5856..5f2cb9e124dd4 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_tests_etc.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_skip_tests_etc.snap @@ -1,140 +1,140 @@ --- source: src/bootstrap/src/core/builder/cli_paths/tests.rs -expression: test --skip=tests --skip=coverage-map --skip=coverage-run --skip=library --skip=tidyselftest +expression: test --skip=tests --skip=library --skip=tidyselftest --- [Test] test::Tidy targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/tidy}) + - Set({src/tools/tidy}) [Test] test::CodegenCranelift targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler/rustc_codegen_cranelift}) + - Set({compiler/rustc_codegen_cranelift}) [Test] test::CodegenGCC targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler/rustc_codegen_gcc}) + - Set({compiler/rustc_codegen_gcc}) [Test] test::CrateLibrustc targets: [x86_64-unknown-linux-gnu] - - Set({test::compiler}) - - Set({test::compiler/rustc}) - - Set({test::compiler/rustc_abi}) - - Set({test::compiler/rustc_arena}) - - Set({test::compiler/rustc_ast}) - - Set({test::compiler/rustc_ast_ir}) - - Set({test::compiler/rustc_ast_lowering}) - - Set({test::compiler/rustc_ast_passes}) - - Set({test::compiler/rustc_ast_pretty}) - - Set({test::compiler/rustc_attr_parsing}) - - Set({test::compiler/rustc_baked_icu_data}) - - Set({test::compiler/rustc_borrowck}) - - Set({test::compiler/rustc_builtin_macros}) - - Set({test::compiler/rustc_codegen_llvm}) - - Set({test::compiler/rustc_codegen_ssa}) - - Set({test::compiler/rustc_const_eval}) - - Set({test::compiler/rustc_data_structures}) - - Set({test::compiler/rustc_driver}) - - Set({test::compiler/rustc_driver_impl}) - - Set({test::compiler/rustc_error_codes}) - - Set({test::compiler/rustc_error_messages}) - - Set({test::compiler/rustc_errors}) - - Set({test::compiler/rustc_expand}) - - Set({test::compiler/rustc_feature}) - - Set({test::compiler/rustc_fs_util}) - - Set({test::compiler/rustc_graphviz}) - - Set({test::compiler/rustc_hashes}) - - Set({test::compiler/rustc_hir}) - - Set({test::compiler/rustc_hir_analysis}) - - Set({test::compiler/rustc_hir_id}) - - Set({test::compiler/rustc_hir_pretty}) - - Set({test::compiler/rustc_hir_typeck}) - - Set({test::compiler/rustc_incremental}) - - Set({test::compiler/rustc_index}) - - Set({test::compiler/rustc_index_macros}) - - Set({test::compiler/rustc_infer}) - - Set({test::compiler/rustc_interface}) - - Set({test::compiler/rustc_lexer}) - - Set({test::compiler/rustc_lint}) - - Set({test::compiler/rustc_lint_defs}) - - Set({test::compiler/rustc_llvm}) - - Set({test::compiler/rustc_log}) - - Set({test::compiler/rustc_macros}) - - Set({test::compiler/rustc_metadata}) - - Set({test::compiler/rustc_middle}) - - Set({test::compiler/rustc_mir_build}) - - Set({test::compiler/rustc_mir_dataflow}) - - Set({test::compiler/rustc_mir_transform}) - - Set({test::compiler/rustc_monomorphize}) - - Set({test::compiler/rustc_next_trait_solver}) - - Set({test::compiler/rustc_parse}) - - Set({test::compiler/rustc_parse_format}) - - Set({test::compiler/rustc_passes}) - - Set({test::compiler/rustc_pattern_analysis}) - - Set({test::compiler/rustc_privacy}) - - Set({test::compiler/rustc_proc_macro}) - - Set({test::compiler/rustc_public}) - - Set({test::compiler/rustc_public_bridge}) - - Set({test::compiler/rustc_query_impl}) - - Set({test::compiler/rustc_resolve}) - - Set({test::compiler/rustc_sanitizers}) - - Set({test::compiler/rustc_serialize}) - - Set({test::compiler/rustc_session}) - - Set({test::compiler/rustc_span}) - - Set({test::compiler/rustc_symbol_mangling}) - - Set({test::compiler/rustc_target}) - - Set({test::compiler/rustc_thread_pool}) - - Set({test::compiler/rustc_trait_selection}) - - Set({test::compiler/rustc_traits}) - - Set({test::compiler/rustc_transmute}) - - Set({test::compiler/rustc_ty_utils}) - - Set({test::compiler/rustc_type_ir}) - - Set({test::compiler/rustc_type_ir_macros}) - - Set({test::compiler/rustc_windows_rc}) + - Set({compiler}) + - Set({compiler/rustc}) + - Set({compiler/rustc_abi}) + - Set({compiler/rustc_arena}) + - Set({compiler/rustc_ast}) + - Set({compiler/rustc_ast_ir}) + - Set({compiler/rustc_ast_lowering}) + - Set({compiler/rustc_ast_passes}) + - Set({compiler/rustc_ast_pretty}) + - Set({compiler/rustc_attr_parsing}) + - Set({compiler/rustc_baked_icu_data}) + - Set({compiler/rustc_borrowck}) + - Set({compiler/rustc_builtin_macros}) + - Set({compiler/rustc_codegen_llvm}) + - Set({compiler/rustc_codegen_ssa}) + - Set({compiler/rustc_const_eval}) + - Set({compiler/rustc_data_structures}) + - Set({compiler/rustc_driver}) + - Set({compiler/rustc_driver_impl}) + - Set({compiler/rustc_error_codes}) + - Set({compiler/rustc_error_messages}) + - Set({compiler/rustc_errors}) + - Set({compiler/rustc_expand}) + - Set({compiler/rustc_feature}) + - Set({compiler/rustc_fs_util}) + - Set({compiler/rustc_graphviz}) + - Set({compiler/rustc_hashes}) + - Set({compiler/rustc_hir}) + - Set({compiler/rustc_hir_analysis}) + - Set({compiler/rustc_hir_id}) + - Set({compiler/rustc_hir_pretty}) + - Set({compiler/rustc_hir_typeck}) + - Set({compiler/rustc_incremental}) + - Set({compiler/rustc_index}) + - Set({compiler/rustc_index_macros}) + - Set({compiler/rustc_infer}) + - Set({compiler/rustc_interface}) + - Set({compiler/rustc_lexer}) + - Set({compiler/rustc_lint}) + - Set({compiler/rustc_lint_defs}) + - Set({compiler/rustc_llvm}) + - Set({compiler/rustc_log}) + - Set({compiler/rustc_macros}) + - Set({compiler/rustc_metadata}) + - Set({compiler/rustc_middle}) + - Set({compiler/rustc_mir_build}) + - Set({compiler/rustc_mir_dataflow}) + - Set({compiler/rustc_mir_transform}) + - Set({compiler/rustc_monomorphize}) + - Set({compiler/rustc_next_trait_solver}) + - Set({compiler/rustc_parse}) + - Set({compiler/rustc_parse_format}) + - Set({compiler/rustc_passes}) + - Set({compiler/rustc_pattern_analysis}) + - Set({compiler/rustc_privacy}) + - Set({compiler/rustc_proc_macro}) + - Set({compiler/rustc_public}) + - Set({compiler/rustc_public_bridge}) + - Set({compiler/rustc_query_impl}) + - Set({compiler/rustc_resolve}) + - Set({compiler/rustc_sanitizers}) + - Set({compiler/rustc_serialize}) + - Set({compiler/rustc_session}) + - Set({compiler/rustc_span}) + - Set({compiler/rustc_symbol_mangling}) + - Set({compiler/rustc_target}) + - Set({compiler/rustc_thread_pool}) + - Set({compiler/rustc_trait_selection}) + - Set({compiler/rustc_traits}) + - Set({compiler/rustc_transmute}) + - Set({compiler/rustc_ty_utils}) + - Set({compiler/rustc_type_ir}) + - Set({compiler/rustc_type_ir_macros}) + - Set({compiler/rustc_windows_rc}) [Test] test::CrateRustdoc targets: [x86_64-unknown-linux-gnu] - - Set({test::src/librustdoc, test::src/tools/rustdoc}) + - Set({src/librustdoc, src/tools/rustdoc}) [Test] test::CrateRustdocJsonTypes targets: [x86_64-unknown-linux-gnu] - - Set({test::src/rustdoc-json-types}) + - Set({src/rustdoc-json-types}) [Test] test::CrateBootstrap targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/coverage-dump}) - - Set({test::src/tools/jsondoclint}) - - Set({test::src/tools/replace-version-placeholder}) + - Set({src/tools/coverage-dump}) + - Set({src/tools/jsondoclint}) + - Set({src/tools/replace-version-placeholder}) [Test] test::RemoteTestClientTests targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/remote-test-client}) + - Set({src/tools/remote-test-client}) [Test] test::Linkcheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/linkchecker}) + - Set({src/tools/linkchecker}) [Test] test::TierCheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/tier-check}) + - Set({src/tools/tier-check}) [Test] test::RustAnalyzer targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rust-analyzer}) + - Set({src/tools/rust-analyzer}) [Test] test::ErrorIndex targets: [x86_64-unknown-linux-gnu] - - Set({test::error-index}) - - Set({test::src/tools/error_index_generator}) + - Set({error-index}) + - Set({src/tools/error_index_generator}) [Test] test::RustdocBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/rustdoc}) + - Set({src/doc/rustdoc}) [Test] test::UnstableBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/unstable-book}) + - Set({src/doc/unstable-book}) [Test] test::RustcBook targets: [x86_64-unknown-linux-gnu] - - Set({test::src/doc/rustc}) + - Set({src/doc/rustc}) [Test] test::RustdocTheme targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rustdoc-themes}) + - Set({src/tools/rustdoc-themes}) [Test] test::HtmlCheck targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/html-checker}) + - Set({src/tools/html-checker}) [Test] test::RustInstaller targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/rust-installer}) + - Set({src/tools/rust-installer}) [Test] test::TestFloatParse targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/test-float-parse}) + - Set({src/tools/test-float-parse}) [Test] test::IntrinsicTest targets: [x86_64-unknown-linux-gnu] - - Set({test::intrinsic-test}) + - Set({intrinsic-test}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_tests.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_tests.snap index 65349a59a1e80..15b54a5213fc8 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_tests.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_tests.snap @@ -4,64 +4,64 @@ expression: test tests --- [Test] test::AssemblyLlvm targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/assembly-llvm) + - Suite(tests/assembly-llvm) [Test] test::BuildStd targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/build-std) + - Suite(tests/build-std) [Test] test::CodegenLlvm targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/codegen-llvm) + - Suite(tests/codegen-llvm) [Test] test::CodegenUnits targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/codegen-units) + - Suite(tests/codegen-units) [Test] test::Coverage targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/coverage) + - Suite(tests/coverage) [Test] test::CoverageRunRustdoc targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/coverage-run-rustdoc) + - Suite(tests/coverage-run-rustdoc) [Test] test::Crashes targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/crashes) + - Suite(tests/crashes) [Test] test::Debuginfo targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/debuginfo) + - Suite(tests/debuginfo) [Test] test::Incremental targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/incremental) + - Suite(tests/incremental) [Test] test::MirOpt targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/mir-opt) + - Suite(tests/mir-opt) [Test] test::Pretty targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/pretty) + - Suite(tests/pretty) [Test] test::RunMake targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/run-make) + - Suite(tests/run-make) [Test] test::RunMakeCargo targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/run-make-cargo) + - Suite(tests/run-make-cargo) [Test] test::RustdocGUI targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-gui) + - Suite(tests/rustdoc-gui) [Test] test::RustdocHtml targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-html) + - Suite(tests/rustdoc-html) [Test] test::RustdocJSNotStd targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-js) + - Suite(tests/rustdoc-js) [Test] test::RustdocJSStd targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-js-std) + - Suite(tests/rustdoc-js-std) [Test] test::RustdocJson targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-json) + - Suite(tests/rustdoc-json) [Test] test::RustdocUi targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-ui) + - Suite(tests/rustdoc-ui) [Test] test::Ui targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/ui) + - Suite(tests/ui) [Test] test::UiFullDeps targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/ui-fulldeps) + - Suite(tests/ui-fulldeps) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_tests_skip_coverage.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_tests_skip_coverage.snap index 694bb0672ee42..a787c4a977f18 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_tests_skip_coverage.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_tests_skip_coverage.snap @@ -4,61 +4,61 @@ expression: test tests --skip=coverage --- [Test] test::AssemblyLlvm targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/assembly-llvm) + - Suite(tests/assembly-llvm) [Test] test::BuildStd targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/build-std) + - Suite(tests/build-std) [Test] test::CodegenLlvm targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/codegen-llvm) + - Suite(tests/codegen-llvm) [Test] test::CodegenUnits targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/codegen-units) + - Suite(tests/codegen-units) [Test] test::CoverageRunRustdoc targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/coverage-run-rustdoc) + - Suite(tests/coverage-run-rustdoc) [Test] test::Crashes targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/crashes) + - Suite(tests/crashes) [Test] test::Debuginfo targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/debuginfo) + - Suite(tests/debuginfo) [Test] test::Incremental targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/incremental) + - Suite(tests/incremental) [Test] test::MirOpt targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/mir-opt) + - Suite(tests/mir-opt) [Test] test::Pretty targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/pretty) + - Suite(tests/pretty) [Test] test::RunMake targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/run-make) + - Suite(tests/run-make) [Test] test::RunMakeCargo targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/run-make-cargo) + - Suite(tests/run-make-cargo) [Test] test::RustdocGUI targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-gui) + - Suite(tests/rustdoc-gui) [Test] test::RustdocHtml targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-html) + - Suite(tests/rustdoc-html) [Test] test::RustdocJSNotStd targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-js) + - Suite(tests/rustdoc-js) [Test] test::RustdocJSStd targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-js-std) + - Suite(tests/rustdoc-js-std) [Test] test::RustdocJson targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-json) + - Suite(tests/rustdoc-json) [Test] test::RustdocUi targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/rustdoc-ui) + - Suite(tests/rustdoc-ui) [Test] test::Ui targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/ui) + - Suite(tests/ui) [Test] test::UiFullDeps targets: [x86_64-unknown-linux-gnu] - - Suite(test::tests/ui-fulldeps) + - Suite(tests/ui-fulldeps) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_tests_ui.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_tests_ui.snap index 1288af72fd5d2..340198c07eb73 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_tests_ui.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_tests_ui.snap @@ -4,4 +4,4 @@ expression: test tests/ui --- [Test] test::Ui targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/ui) + - Suite(tests/ui) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_tidy.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_tidy.snap index b2bebf39e120c..b62d0516e2cc5 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_tidy.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_tidy.snap @@ -4,4 +4,4 @@ expression: test tidy --- [Test] test::Tidy targets: [x86_64-unknown-linux-gnu] - - Set({test::src/tools/tidy}) + - Set({src/tools/tidy}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_tidyselftest.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_tidyselftest.snap index 945c82ef1cd02..b49ed6cf25290 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_tidyselftest.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_tidyselftest.snap @@ -4,4 +4,4 @@ expression: test tidyselftest --- [Test] test::CrateBootstrap targets: [x86_64-unknown-linux-gnu] - - Set({test::tidyselftest}) + - Set({tidyselftest}) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_ui.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_ui.snap index 5c764959cdaef..a35f3cda1530e 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_ui.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_test_ui.snap @@ -4,4 +4,4 @@ expression: test ui --- [Test] test::Ui targets: [aarch64-unknown-linux-gnu] - - Suite(test::tests/ui) + - Suite(tests/ui) diff --git a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_vendor.snap b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_vendor.snap index 57bfe51c2b8fa..41670b1ae1a43 100644 --- a/src/bootstrap/src/core/builder/cli_paths/snapshots/x_vendor.snap +++ b/src/bootstrap/src/core/builder/cli_paths/snapshots/x_vendor.snap @@ -4,4 +4,4 @@ expression: vendor --- [Vendor] vendor::Vendor targets: [x86_64-unknown-linux-gnu] - - Set({vendor::placeholder}) + - Set({placeholder}) diff --git a/src/bootstrap/src/core/builder/mod.rs b/src/bootstrap/src/core/builder/mod.rs index d807899fa91d2..030dff229e9fb 100644 --- a/src/bootstrap/src/core/builder/mod.rs +++ b/src/bootstrap/src/core/builder/mod.rs @@ -361,14 +361,10 @@ struct CommandLineStepDescription { #[derive(Clone, PartialOrd, Ord, PartialEq, Eq)] pub struct TaskPath { pub path: PathBuf, - pub kind: Option, } impl Debug for TaskPath { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - if let Some(kind) = &self.kind { - write!(f, "{}::", kind.as_str())?; - } write!(f, "{}", self.path.display()) } } @@ -401,26 +397,23 @@ impl PathSet { PathSet::Set(BTreeSet::new()) } - fn one>(path: P, kind: Kind) -> PathSet { + fn one>(path: P) -> PathSet { let mut set = BTreeSet::new(); - set.insert(TaskPath { path: path.into(), kind: Some(kind) }); + set.insert(TaskPath { path: path.into() }); PathSet::Set(set) } - fn has(&self, needle: &Path, module: Kind) -> bool { + fn has(&self, needle: &Path) -> bool { match self { - PathSet::Set(set) => set.iter().any(|p| Self::check(p, needle, module)), - PathSet::Suite(suite) => Self::check(suite, needle, module), + PathSet::Set(set) => set.iter().any(|p| Self::check(p, needle)), + PathSet::Suite(suite) => Self::check(suite, needle), } } // internal use only - fn check(p: &TaskPath, needle: &Path, module: Kind) -> bool { - let check_path = || { - // This order is important for retro-compatibility, as `starts_with` was introduced later. - p.path.ends_with(needle) || p.path.starts_with(needle) - }; - if let Some(p_kind) = &p.kind { check_path() && *p_kind == module } else { check_path() } + fn check(p: &TaskPath, needle: &Path) -> bool { + // This order is important for retro-compatibility, as `starts_with` was introduced later. + p.path.ends_with(needle) || p.path.starts_with(needle) } /// Return all `TaskPath`s in `Self` that contain any of the `needles`, removing the @@ -429,11 +422,11 @@ impl PathSet { /// This is used for `StepDescription::krate`, which passes all matching crates at once to /// `Step::make_run`, rather than calling it many times with a single crate. /// See `tests.rs` for examples. - fn intersection_removing_matches(&self, needles: &mut [CLIStepPath], module: Kind) -> PathSet { + fn intersection_removing_matches(&self, needles: &mut [CLIStepPath]) -> PathSet { let mut check = |p| { let mut result = false; for n in needles.iter_mut() { - let matched = Self::check(p, &n.path, module); + let matched = Self::check(p, &n.path); if matched { n.will_be_executed = true; result = true; @@ -504,7 +497,7 @@ impl CommandLineStepDescription { } fn is_excluded(&self, builder: &Builder<'_>, pathset: &PathSet) -> bool { - if builder.config.skip.iter().any(|e| pathset.has(e, builder.kind)) { + if builder.config.skip.iter().any(|e| pathset.has(e)) { if !matches!(builder.config.get_dry_run(), DryRun::SelfCheck) { println!("Skipping {pathset:?} because it is excluded"); } @@ -571,7 +564,7 @@ impl<'a> ShouldRun<'a> { } let path = krate.local_path(self.builder); - self.paths.insert(PathSet::one(path, self.kind)); + self.paths.insert(PathSet::one(path)); } self } @@ -585,9 +578,7 @@ impl<'a> ShouldRun<'a> { self.kind == Kind::Setup || !self.builder.src.join(alias).exists(), "use `builder.path()` for real paths: {alias}" ); - self.paths.insert(PathSet::Set( - std::iter::once(TaskPath { path: alias.into(), kind: Some(self.kind) }).collect(), - )); + self.paths.insert(PathSet::Set(std::iter::once(TaskPath { path: alias.into() }).collect())); self } @@ -610,7 +601,7 @@ impl<'a> ShouldRun<'a> { pub fn path(mut self, path: &str) -> Self { self.assert_valid_path(path); - let task = TaskPath { path: path.into(), kind: Some(self.kind) }; + let task = TaskPath { path: path.into() }; self.paths.insert(PathSet::Set(BTreeSet::from_iter([task]))); self } @@ -620,7 +611,7 @@ impl<'a> ShouldRun<'a> { let mut set = BTreeSet::new(); for path in paths { self.assert_valid_path(path); - set.insert(TaskPath { path: (*path).into(), kind: Some(self.kind) }); + set.insert(TaskPath { path: (*path).into() }); } self.paths.insert(PathSet::Set(set)); self @@ -635,7 +626,7 @@ impl<'a> ShouldRun<'a> { } pub fn suite_path(mut self, suite: &str) -> Self { - self.paths.insert(PathSet::Suite(TaskPath { path: suite.into(), kind: Some(self.kind) })); + self.paths.insert(PathSet::Suite(TaskPath { path: suite.into() })); self } @@ -648,14 +639,10 @@ impl<'a> ShouldRun<'a> { /// /// The reason we return PathSet instead of PathBuf is to allow for aliases that mean the same thing /// (for now, just `all_krates` and `paths`, but we may want to add an `aliases` function in the future?) - fn pathset_for_paths_removing_matches( - &self, - paths: &mut [CLIStepPath], - kind: Kind, - ) -> Vec { + fn pathset_for_paths_removing_matches(&self, paths: &mut [CLIStepPath]) -> Vec { let mut sets = vec![]; for pathset in &self.paths { - let subset = pathset.intersection_removing_matches(paths, kind); + let subset = pathset.intersection_removing_matches(paths); if subset != PathSet::empty() { sets.push(subset); } @@ -1171,7 +1158,28 @@ impl<'a> Builder<'a> { /// Run all default documentation steps to build documentation. pub fn run_default_doc_steps(&self) { - self.run_step_descriptions(&Builder::get_step_descriptions(Kind::Doc), &[]); + // It's important that we don't just call `run_step_descriptions` here, + // because that would cause `--skip` handling for actual command-line + // arguments to inappropriately skip these steps. + // + // This function is nevertheless a bit of a hack, to work around the + // fact that we don't have a good way to simulate `./x doc` without + // also simulating parts of command-line selector handling. + + for desc in &Builder::get_step_descriptions(Kind::Doc) { + if !(desc.is_default_step_fn)(self) { + continue; + } + + let should_run = (desc.should_run)(ShouldRun::new(self, Kind::Doc)); + let default_pathsets = should_run.default_pathsets(); + + let targets = if desc.is_host { &self.hosts } else { &self.targets }; + for &target in targets { + let run = RunConfig { builder: self, target, paths: default_pathsets.clone() }; + (desc.make_run)(run); + } + } } pub fn doc_rust_lang_org_channel(&self) -> String { @@ -1720,11 +1728,8 @@ Alternatively, you can set `build.local-rebuild=true` and use a stage0 compiler let should_run = (desc.should_run)(ShouldRun::new(self, desc.kind)); for path in &self.paths { - if should_run.paths.iter().any(|s| s.has(path, desc.kind)) - && !desc.is_excluded( - self, - &PathSet::Suite(TaskPath { path: path.clone(), kind: Some(desc.kind) }), - ) + if should_run.paths.iter().any(|s| s.has(path)) + && !desc.is_excluded(self, &PathSet::Suite(TaskPath { path: path.clone() })) { return true; } diff --git a/src/bootstrap/src/core/builder/tests.rs b/src/bootstrap/src/core/builder/tests.rs index 7cf6009914f60..f56de744883b8 100644 --- a/src/bootstrap/src/core/builder/tests.rs +++ b/src/bootstrap/src/core/builder/tests.rs @@ -53,7 +53,7 @@ fn test_invalid() { #[test] fn test_intersection() { let set = |paths: &[&str]| { - PathSet::Set(paths.into_iter().map(|p| TaskPath { path: p.into(), kind: None }).collect()) + PathSet::Set(paths.into_iter().map(|p| TaskPath { path: p.into() }).collect()) }; let library_set = set(&["library/core", "library/alloc", "library/std"]); let mut command_paths = vec![ @@ -61,7 +61,7 @@ fn test_intersection() { CLIStepPath::from(PathBuf::from("library/alloc")), CLIStepPath::from(PathBuf::from("library/stdarch")), ]; - let subset = library_set.intersection_removing_matches(&mut command_paths, Kind::Build); + let subset = library_set.intersection_removing_matches(&mut command_paths); assert_eq!(subset, set(&["library/core", "library/alloc"]),); assert_eq!( command_paths, @@ -76,7 +76,7 @@ fn test_intersection() { #[test] fn test_resolve_parent_and_subpaths() { let set = |paths: &[&str]| { - PathSet::Set(paths.into_iter().map(|p| TaskPath { path: p.into(), kind: None }).collect()) + PathSet::Set(paths.into_iter().map(|p| TaskPath { path: p.into() }).collect()) }; let mut command_paths = vec![ @@ -85,7 +85,7 @@ fn test_resolve_parent_and_subpaths() { ]; let library_set = set(&["src/tools/miri", "src/tools/miri/cargo-miri"]); - library_set.intersection_removing_matches(&mut command_paths, Kind::Build); + library_set.intersection_removing_matches(&mut command_paths); assert_eq!( command_paths,