Fill in ignore reasons in all #[ignore] attributes

This commit is contained in:
David Tolnay 2024-06-01 22:13:43 -07:00
parent 5c8016393f
commit f2824ae379
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
3 changed files with 10 additions and 4 deletions

View file

@ -1,5 +1,5 @@
#[rustversion::attr(not(nightly), ignore)]
#[cfg_attr(miri, ignore)]
#[rustversion::attr(not(nightly), ignore = "requires nightly")]
#[cfg_attr(miri, ignore = "incompatible with miri")]
#[test]
fn ui() {
let t = trybuild::TestCases::new();

View file

@ -270,5 +270,8 @@ pub mod enums {
}
#[test]
#[cfg_attr(not(thiserror_nightly_testing), ignore)]
#[cfg_attr(
not(thiserror_nightly_testing),
ignore = "requires `--cfg=thiserror_nightly_testing`"
)]
fn test_backtrace() {}

View file

@ -101,5 +101,8 @@ pub mod enums {
}
#[test]
#[cfg_attr(not(thiserror_nightly_testing), ignore)]
#[cfg_attr(
not(thiserror_nightly_testing),
ignore = "requires `--cfg=thiserror_nightly_testing`"
)]
fn test_option() {}