From b19dfd7aab4f3593c6bc09a59130ffd2db66f1e3 Mon Sep 17 00:00:00 2001 From: Jieyou Xu Date: Wed, 27 Nov 2024 00:56:02 +0800 Subject: [PATCH] Ignore the rustc_bootstrap test during post-opt-dist tests --- src/tools/opt-dist/src/main.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/tools/opt-dist/src/main.rs b/src/tools/opt-dist/src/main.rs index c871200f3cf..f362964bcae 100644 --- a/src/tools/opt-dist/src/main.rs +++ b/src/tools/opt-dist/src/main.rs @@ -159,6 +159,9 @@ fn create_environment(args: Args) -> anyhow::Result<(Environment, Vec)> .skipped_tests(vec![ // Fails because of linker errors, as of June 2023. "tests/ui/process/nofile-limit.rs".to_string(), + // FIXME(#133503): the rustc under test here during beta bump seems to be beta + // but `//@ only-nightly` was active. + "tests/ui/bootstrap/rustc_bootstap.rs".to_string(), ]) .build()?; @@ -181,6 +184,9 @@ fn create_environment(args: Args) -> anyhow::Result<(Environment, Vec)> .skipped_tests(vec![ // Fails as of June 2023. "tests\\codegen\\vec-shrink-panik.rs".to_string(), + // FIXME(#133503): the rustc under test here during beta bump seems to be beta + // but `//@ only-nightly` was active. + "tests\\ui\\bootstrap\\rustc_bootstap.rs".to_string(), ]) .build()?;