Skip to content

Commit 216a187

Browse files
authored
Rollup merge of rust-lang#62369 - JohnTitor:remove-compile-pass, r=petrochenkov
Remove `compile-pass` from compiletest This is a part of rust-lang#62277. Removes `compile-pass` from compiletest (and modify some tests' annotations). r? @Centril
2 parents 30aa245 + 1640ab2 commit 216a187

8 files changed

+8
-11
lines changed

src/doc/rustc-guide

src/librustc_mir/error_codes.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ An if-let pattern attempts to match the pattern, and enters the body if the
331331
match was successful. If the match is irrefutable (when it cannot fail to
332332
match), use a regular `let`-binding instead. For instance:
333333
334-
```compile_pass
334+
```
335335
struct Irrefutable(i32);
336336
let irr = Irrefutable(0);
337337
@@ -360,7 +360,7 @@ A while-let pattern attempts to match the pattern, and enters the body if the
360360
match was successful. If the match is irrefutable (when it cannot fail to
361361
match), use a regular `let`-binding inside a `loop` instead. For instance:
362362
363-
```compile_pass,no_run
363+
```no_run
364364
struct Irrefutable(i32);
365365
let irr = Irrefutable(0);
366366

src/test/ui/async-await/async-closure-matches-expr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// compile-pass
1+
// build-pass
22
// edition:2018
33

44
#![feature(async_await, async_closure)]

src/test/ui/impl-trait/multiple-lifetimes/ordinary-bounds-pick-original-elided.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// edition:2018
2-
// compile-pass
2+
// build-pass (FIXME(62277): could be check-pass?)
33
// revisions: migrate mir
44
//[mir]compile-flags: -Z borrowck=mir
55

src/test/ui/impl-trait/multiple-lifetimes/ordinary-bounds-pick-original-existential.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// edition:2018
2-
// compile-pass
2+
// build-pass (FIXME(62277): could be check-pass?)
33
// revisions: migrate mir
44
//[mir]compile-flags: -Z borrowck=mir
55

src/test/ui/impl-trait/multiple-lifetimes/ordinary-bounds-pick-original.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// edition:2018
2-
// compile-pass
2+
// build-pass (FIXME(62277): could be check-pass?)
33
// revisions: migrate mir
44
//[mir]compile-flags: -Z borrowck=mir
55

src/test/ui/impl-trait/multiple-lifetimes/ordinary-bounds-pick-other.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// edition:2018
2-
// compile-pass
2+
// build-pass (FIXME(62277): could be check-pass?)
33
// revisions: migrate mir
44
//[mir]compile-flags: -Z borrowck=mir
55

src/tools/compiletest/src/header.rs

-3
Original file line numberDiff line numberDiff line change
@@ -591,9 +591,6 @@ impl TestProps {
591591
} else if config.parse_name_directive(ln, "build-pass") {
592592
check_no_run("build-pass");
593593
Some(PassMode::Build)
594-
} else if config.parse_name_directive(ln, "compile-pass") /* compatibility */ {
595-
check_no_run("compile-pass");
596-
Some(PassMode::Build)
597594
} else if config.parse_name_directive(ln, "run-pass") {
598595
if config.mode != Mode::Ui && config.mode != Mode::RunPass /* compatibility */ {
599596
panic!("`run-pass` header is only supported in UI tests")

0 commit comments

Comments
 (0)