File tree 3 files changed +10
-4
lines changed
3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
- #[ rustversion:: attr( not( nightly) , ignore) ]
2
- #[ cfg_attr( miri, ignore) ]
1
+ #[ rustversion:: attr( not( nightly) , ignore = "requires nightly" ) ]
2
+ #[ cfg_attr( miri, ignore = "incompatible with miri" ) ]
3
3
#[ test]
4
4
fn ui ( ) {
5
5
let t = trybuild:: TestCases :: new ( ) ;
Original file line number Diff line number Diff line change @@ -270,5 +270,8 @@ pub mod enums {
270
270
}
271
271
272
272
#[ test]
273
- #[ cfg_attr( not( thiserror_nightly_testing) , ignore) ]
273
+ #[ cfg_attr(
274
+ not( thiserror_nightly_testing) ,
275
+ ignore = "requires `--cfg=thiserror_nightly_testing`"
276
+ ) ]
274
277
fn test_backtrace ( ) { }
Original file line number Diff line number Diff line change @@ -101,5 +101,8 @@ pub mod enums {
101
101
}
102
102
103
103
#[ test]
104
- #[ cfg_attr( not( thiserror_nightly_testing) , ignore) ]
104
+ #[ cfg_attr(
105
+ not( thiserror_nightly_testing) ,
106
+ ignore = "requires `--cfg=thiserror_nightly_testing`"
107
+ ) ]
105
108
fn test_option ( ) { }
You can’t perform that action at this time.
0 commit comments