Skip to content

Commit 3e061f7

Browse files
committed
--bless some tests due to message format change.
1 parent 3cfb6bc commit 3e061f7

23 files changed

+34
-34
lines changed

src/test/ui/conditional-compilation/cfg-attr-crate-2.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
// compile-flags: --cfg broken
44

55
#![crate_type = "lib"]
6-
#![cfg_attr(broken, no_core)] //~ ERROR no_core is experimental
6+
#![cfg_attr(broken, no_core)] //~ ERROR the `#[no_core]` attribute is an experimental feature
77

88
pub struct S {}

src/test/ui/conditional-compilation/cfg-attr-crate-2.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0658]: no_core is experimental
1+
error[E0658]: the `#[no_core]` attribute is an experimental feature
22
--> $DIR/cfg-attr-crate-2.rs:6:21
33
|
44
LL | #![cfg_attr(broken, no_core)]
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// compile-flags: --cfg broken
22

33
#![crate_type = "lib"]
4-
#![cfg_attr(broken, no_core, no_std)] //~ ERROR no_core is experimental
4+
#![cfg_attr(broken, no_core, no_std)]
5+
//~^ ERROR the `#[no_core]` attribute is an experimental feature
56

67
pub struct S {}

src/test/ui/conditional-compilation/cfg-attr-multi-invalid-1.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0658]: no_core is experimental
1+
error[E0658]: the `#[no_core]` attribute is an experimental feature
22
--> $DIR/cfg-attr-multi-invalid-1.rs:4:21
33
|
44
LL | #![cfg_attr(broken, no_core, no_std)]
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// compile-flags: --cfg broken
22

33
#![crate_type = "lib"]
4-
#![cfg_attr(broken, no_std, no_core)] //~ ERROR no_core is experimental
4+
#![cfg_attr(broken, no_std, no_core)]
5+
//~^ ERROR the `#[no_core]` attribute is an experimental feature
56

67
pub struct S {}

src/test/ui/conditional-compilation/cfg-attr-multi-invalid-2.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0658]: no_core is experimental
1+
error[E0658]: the `#[no_core]` attribute is an experimental feature
22
--> $DIR/cfg-attr-multi-invalid-2.rs:4:29
33
|
44
LL | #![cfg_attr(broken, no_std, no_core)]

src/test/ui/feature-gate-optimize_attribute.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
#![crate_type="rlib"]
2-
#![optimize(speed)] //~ ERROR `#[optimize]` attribute is an unstable feature
2+
#![optimize(speed)] //~ ERROR the `#[optimize]` attribute is an experimental feature
33

4-
#[optimize(size)] //~ ERROR `#[optimize]` attribute is an unstable feature
4+
#[optimize(size)] //~ ERROR the `#[optimize]` attribute is an experimental feature
55
mod module {
66

7-
#[optimize(size)] //~ ERROR `#[optimize]` attribute is an unstable feature
7+
#[optimize(size)] //~ ERROR the `#[optimize]` attribute is an experimental feature
88
fn size() {}
99

10-
#[optimize(speed)] //~ ERROR `#[optimize]` attribute is an unstable feature
10+
#[optimize(speed)] //~ ERROR the `#[optimize]` attribute is an experimental feature
1111
fn speed() {}
1212

1313
#[optimize(banana)]
14-
//~^ ERROR `#[optimize]` attribute is an unstable feature
14+
//~^ ERROR the `#[optimize]` attribute is an experimental feature
1515
//~| ERROR E0722
1616
fn not_known() {}
1717

src/test/ui/feature-gate-optimize_attribute.stderr

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0658]: `#[optimize]` attribute is an unstable feature
1+
error[E0658]: the `#[optimize]` attribute is an experimental feature
22
--> $DIR/feature-gate-optimize_attribute.rs:7:1
33
|
44
LL | #[optimize(size)]
@@ -7,7 +7,7 @@ LL | #[optimize(size)]
77
= note: for more information, see https://github.com/rust-lang/rust/issues/54882
88
= help: add `#![feature(optimize_attribute)]` to the crate attributes to enable
99

10-
error[E0658]: `#[optimize]` attribute is an unstable feature
10+
error[E0658]: the `#[optimize]` attribute is an experimental feature
1111
--> $DIR/feature-gate-optimize_attribute.rs:10:1
1212
|
1313
LL | #[optimize(speed)]
@@ -16,7 +16,7 @@ LL | #[optimize(speed)]
1616
= note: for more information, see https://github.com/rust-lang/rust/issues/54882
1717
= help: add `#![feature(optimize_attribute)]` to the crate attributes to enable
1818

19-
error[E0658]: `#[optimize]` attribute is an unstable feature
19+
error[E0658]: the `#[optimize]` attribute is an experimental feature
2020
--> $DIR/feature-gate-optimize_attribute.rs:13:1
2121
|
2222
LL | #[optimize(banana)]
@@ -25,7 +25,7 @@ LL | #[optimize(banana)]
2525
= note: for more information, see https://github.com/rust-lang/rust/issues/54882
2626
= help: add `#![feature(optimize_attribute)]` to the crate attributes to enable
2727

28-
error[E0658]: `#[optimize]` attribute is an unstable feature
28+
error[E0658]: the `#[optimize]` attribute is an experimental feature
2929
--> $DIR/feature-gate-optimize_attribute.rs:4:1
3030
|
3131
LL | #[optimize(size)]
@@ -34,7 +34,7 @@ LL | #[optimize(size)]
3434
= note: for more information, see https://github.com/rust-lang/rust/issues/54882
3535
= help: add `#![feature(optimize_attribute)]` to the crate attributes to enable
3636

37-
error[E0658]: `#[optimize]` attribute is an unstable feature
37+
error[E0658]: the `#[optimize]` attribute is an experimental feature
3838
--> $DIR/feature-gate-optimize_attribute.rs:2:1
3939
|
4040
LL | #![optimize(speed)]

src/test/ui/feature-gates/feature-gate-alloc-error-handler.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
use core::alloc::Layout;
77

8-
#[alloc_error_handler] //~ ERROR `#[alloc_error_handler]` is an unstable feature
8+
#[alloc_error_handler] //~ ERROR the `#[alloc_error_handler]` attribute is an experimental feature
99
fn oom(info: Layout) -> ! {
1010
loop {}
1111
}

src/test/ui/feature-gates/feature-gate-alloc-error-handler.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0658]: `#[alloc_error_handler]` is an unstable feature
1+
error[E0658]: the `#[alloc_error_handler]` attribute is an experimental feature
22
--> $DIR/feature-gate-alloc-error-handler.rs:8:1
33
|
44
LL | #[alloc_error_handler]

src/test/ui/feature-gates/feature-gate-allow_fail.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// check that #[allow_fail] is feature-gated
22

3-
#[allow_fail] //~ ERROR allow_fail attribute is currently unstable
3+
#[allow_fail] //~ ERROR the `#[allow_fail]` attribute is an experimental feature
44
fn ok_to_fail() {
55
assert!(false);
66
}

src/test/ui/feature-gates/feature-gate-allow_fail.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0658]: allow_fail attribute is currently unstable
1+
error[E0658]: the `#[allow_fail]` attribute is an experimental feature
22
--> $DIR/feature-gate-allow_fail.rs:3:1
33
|
44
LL | #[allow_fail]

src/test/ui/feature-gates/feature-gate-marker_trait_attr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std::fmt::{Debug, Display};
22

33
#[marker] trait ExplicitMarker {}
4-
//~^ ERROR marker traits is an experimental feature
4+
//~^ ERROR the `#[marker]` attribute is an experimental feature
55

66
impl<T: Display> ExplicitMarker for T {}
77
impl<T: Debug> ExplicitMarker for T {}

src/test/ui/feature-gates/feature-gate-marker_trait_attr.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0658]: marker traits is an experimental feature
1+
error[E0658]: the `#[marker]` attribute is an experimental feature
22
--> $DIR/feature-gate-marker_trait_attr.rs:3:1
33
|
44
LL | #[marker] trait ExplicitMarker {}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![crate_type = "rlib"]
22

3-
#![no_core] //~ ERROR no_core is experimental
3+
#![no_core] //~ ERROR the `#[no_core]` attribute is an experimental feature
44

55
pub struct S {}

src/test/ui/feature-gates/feature-gate-no_core.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0658]: no_core is experimental
1+
error[E0658]: the `#[no_core]` attribute is an experimental feature
22
--> $DIR/feature-gate-no_core.rs:3:1
33
|
44
LL | #![no_core]

src/test/ui/feature-gates/feature-gate-non_exhaustive.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//#![feature(non_exhaustive)]
22

3-
#[non_exhaustive] //~ERROR non exhaustive is an experimental feature
3+
#[non_exhaustive] //~ERROR the `#[non_exhaustive]` attribute is an experimental feature
44
pub enum NonExhaustiveEnum {
55
Unit,
66
Tuple(u32),

src/test/ui/feature-gates/feature-gate-non_exhaustive.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0658]: non exhaustive is an experimental feature
1+
error[E0658]: the `#[non_exhaustive]` attribute is an experimental feature
22
--> $DIR/feature-gate-non_exhaustive.rs:3:1
33
|
44
LL | #[non_exhaustive]

src/test/ui/feature-gates/feature-gate-rustc-attrs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ fn f() {}
1616
fn g() {}
1717

1818
#[rustc_dummy]
19-
//~^ ERROR used by the test suite
19+
//~^ ERROR the `#[rustc_dummy]` attribute is just used for rustc unit tests
2020
#[rustc_unknown]
2121
//~^ ERROR attributes starting with `rustc` are reserved for use by the `rustc` compiler
2222
//~| ERROR cannot find attribute macro `rustc_unknown` in this scope

src/test/ui/feature-gates/feature-gate-rustc-attrs.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ error: cannot find attribute macro `rustc_unknown` in this scope
4343
LL | #[rustc_unknown]
4444
| ^^^^^^^^^^^^^
4545

46-
error[E0658]: used by the test suite
46+
error[E0658]: the `#[rustc_dummy]` attribute is just used for rustc unit tests and will never be stable
4747
--> $DIR/feature-gate-rustc-attrs.rs:18:1
4848
|
4949
LL | #[rustc_dummy]

src/test/ui/feature-gates/feature-gate-unwind-attributes.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ extern {
88
fn extern_fn();
99
// CHECK-NOT: Function Attrs: nounwind
1010
// CHECK: declare void @unwinding_extern_fn
11-
#[unwind(allowed)] //~ ERROR `#[unwind]` is experimental
11+
#[unwind(allowed)] //~ ERROR the `#[unwind]` attribute is an experimental feature
1212
fn unwinding_extern_fn();
1313
}
1414

src/test/ui/feature-gates/feature-gate-unwind-attributes.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0658]: `#[unwind]` is experimental
1+
error[E0658]: the `#[unwind]` attribute is an experimental feature
22
--> $DIR/feature-gate-unwind-attributes.rs:11:5
33
|
44
LL | #[unwind(allowed)]

src/test/ui/malformed/malformed-regressions.stderr

+2-4
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ LL | #[inline = ""]
2626
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
2727
= note: for more information, see issue #57571 <https://github.com/rust-lang/rust/issues/57571>
2828

29-
warning: attribute must be of the form `#[link(name = "...", /*opt*/ kind = "dylib|static|...",
30-
/*opt*/ cfg = "...")]`
29+
warning: attribute must be of the form `#[link(name = "...", /*opt*/ kind = "dylib|static|...", /*opt*/ cfg = "...")]`
3130
--> $DIR/malformed-regressions.rs:6:1
3231
|
3332
LL | #[link]
@@ -36,8 +35,7 @@ LL | #[link]
3635
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
3736
= note: for more information, see issue #57571 <https://github.com/rust-lang/rust/issues/57571>
3837

39-
warning: attribute must be of the form `#[link(name = "...", /*opt*/ kind = "dylib|static|...",
40-
/*opt*/ cfg = "...")]`
38+
warning: attribute must be of the form `#[link(name = "...", /*opt*/ kind = "dylib|static|...", /*opt*/ cfg = "...")]`
4139
--> $DIR/malformed-regressions.rs:7:1
4240
|
4341
LL | #[link = ""]

0 commit comments

Comments
 (0)