Skip to content

Commit b19dfd7

Browse files
jieyouxuBoxyUwU
authored andcommitted
Ignore the rustc_bootstrap test during post-opt-dist tests
1 parent 4fe4a39 commit b19dfd7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/tools/opt-dist/src/main.rs

+6
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,9 @@ fn create_environment(args: Args) -> anyhow::Result<(Environment, Vec<String>)>
159159
.skipped_tests(vec![
160160
// Fails because of linker errors, as of June 2023.
161161
"tests/ui/process/nofile-limit.rs".to_string(),
162+
// FIXME(#133503): the rustc under test here during beta bump seems to be beta
163+
// but `//@ only-nightly` was active.
164+
"tests/ui/bootstrap/rustc_bootstap.rs".to_string(),
162165
])
163166
.build()?;
164167

@@ -181,6 +184,9 @@ fn create_environment(args: Args) -> anyhow::Result<(Environment, Vec<String>)>
181184
.skipped_tests(vec![
182185
// Fails as of June 2023.
183186
"tests\\codegen\\vec-shrink-panik.rs".to_string(),
187+
// FIXME(#133503): the rustc under test here during beta bump seems to be beta
188+
// but `//@ only-nightly` was active.
189+
"tests\\ui\\bootstrap\\rustc_bootstap.rs".to_string(),
184190
])
185191
.build()?;
186192

0 commit comments

Comments
 (0)