Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/tools/opt-dist/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,9 @@ fn create_environment(args: Args) -> anyhow::Result<(Environment, Vec<String>)>
.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()?;

Expand All @@ -181,6 +184,9 @@ fn create_environment(args: Args) -> anyhow::Result<(Environment, Vec<String>)>
.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()?;

Expand Down
Loading