Skip to content

Commit f2824ae

Browse files
committed
Fill in ignore reasons in all #[ignore] attributes
1 parent 5c80163 commit f2824ae

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

tests/compiletest.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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")]
33
#[test]
44
fn ui() {
55
let t = trybuild::TestCases::new();

tests/test_backtrace.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -270,5 +270,8 @@ pub mod enums {
270270
}
271271

272272
#[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+
)]
274277
fn test_backtrace() {}

tests/test_option.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -101,5 +101,8 @@ pub mod enums {
101101
}
102102

103103
#[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+
)]
105108
fn test_option() {}

0 commit comments

Comments
 (0)