Skip to content

Commit 0144bf6

Browse files
authored
Rollup merge of #71340 - Valloric:more-check-pass, r=nikomatsakis
Moving more build-pass tests to check-pass One or two tests became build-pass without the FIXME because they really needed build-pass (were failing without it). Helps with #62277 --- <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/rust-lang/rust/71340) <!-- Reviewable:end -->
2 parents b7bd7c1 + 2155adb commit 0144bf6

40 files changed

+40
-40
lines changed

src/test/incremental/warnings-reemitted.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// revisions: cfail1 cfail2 cfail3
22
// compile-flags: -Coverflow-checks=on
3-
// build-pass (FIXME(62277): could be check-pass?)
3+
// build-pass
44

55
#![warn(arithmetic_overflow)]
66

src/test/ui/anon-params/anon-params-deprecated.fixed

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![warn(anonymous_parameters)]
22
// Test for the anonymous_parameters deprecation lint (RFC 1685)
33

4-
// build-pass (FIXME(62277): could be check-pass?)
4+
// check-pass
55
// edition:2015
66
// run-rustfix
77

src/test/ui/anon-params/anon-params-deprecated.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![warn(anonymous_parameters)]
22
// Test for the anonymous_parameters deprecation lint (RFC 1685)
33

4-
// build-pass (FIXME(62277): could be check-pass?)
4+
// check-pass
55
// edition:2015
66
// run-rustfix
77

src/test/ui/async-await/issues/issue-55324.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// build-pass (FIXME(62277): could be check-pass?)
1+
// check-pass
22
// edition:2018
33

44
use std::future::Future;

src/test/ui/async-await/issues/issue-58885.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// build-pass (FIXME(62277): could be check-pass?)
1+
// check-pass
22
// edition:2018
33

44
struct Xyz {

src/test/ui/async-await/issues/issue-59001.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// build-pass (FIXME(62277): could be check-pass?)
1+
// check-pass
22
// edition:2018
33

44
use std::future::Future;

src/test/ui/async-await/issues/issue-60655-latebound-regions.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Test that opaque `impl Trait` types are allowed to contain late-bound regions.
22

3-
// build-pass (FIXME(62277): could be check-pass?)
3+
// check-pass
44
// edition:2018
55

66
#![feature(type_alias_impl_trait)]

src/test/ui/attributes/item-attributes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// for completeness since .rs files linked from .rc files support this
33
// notation to specify their module's attributes
44

5-
// build-pass (FIXME(62277): could be check-pass?)
5+
// check-pass
66

77
#![feature(rustc_attrs)]
88

src/test/ui/bastion-of-the-turbofish.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// build-pass (FIXME(62277): could be check-pass?)
1+
// check-pass
22

33
// Bastion of the Turbofish
44
// ------------------------

src/test/ui/codemap_tests/unicode_3.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// build-pass (FIXME(62277): could be check-pass?)
1+
// check-pass
22

33
fn main() {
44
let s = "ZͨA͑ͦ͒͋ͤ͑̚L̄͑͋Ĝͨͥ̿͒̽̈́Oͥ͛ͭ!̏"; while true { break; } //~ WARNING while_true

0 commit comments

Comments
 (0)