Skip to content

Commit

Permalink
Fill in ignore reasons in all #[ignore] attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jun 2, 2024
1 parent a3f7436 commit 5a88bc4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/compiletest.rs
Original file line number Diff line number Diff line change
@@ -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();
Expand Down
2 changes: 1 addition & 1 deletion tests/test_backtrace.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#![allow(clippy::let_underscore_untyped)]

#[rustversion::not(nightly)]
#[ignore]
#[ignore = "requires nightly"]
#[test]
fn test_backtrace() {}

Expand Down

0 comments on commit 5a88bc4

Please sign in to comment.