Ignore the rustc_bootstrap test during post-opt-dist tests

This commit is contained in:
Jieyou Xu 2024-11-27 00:56:02 +08:00 committed by Boxy
parent 4fe4a39127
commit b19dfd7aab

View file

@ -159,6 +159,9 @@ fn create_environment(args: Args) -> anyhow::Result<(Environment, Vec<String>)>
.skipped_tests(vec![ .skipped_tests(vec![
// Fails because of linker errors, as of June 2023. // Fails because of linker errors, as of June 2023.
"tests/ui/process/nofile-limit.rs".to_string(), "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()?; .build()?;
@ -181,6 +184,9 @@ fn create_environment(args: Args) -> anyhow::Result<(Environment, Vec<String>)>
.skipped_tests(vec![ .skipped_tests(vec![
// Fails as of June 2023. // Fails as of June 2023.
"tests\\codegen\\vec-shrink-panik.rs".to_string(), "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()?; .build()?;