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 d5bc546 commit 7aafa26
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test_suite/tests/compiletest.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#[cfg_attr(target_os = "emscripten", ignore)]
#[rustversion::attr(not(nightly), ignore)]
#[cfg_attr(miri, ignore)]
#[cfg_attr(target_os = "emscripten", ignore = "disabled on Emscripten")]
#[rustversion::attr(not(nightly), ignore = "requires nightly")]
#[cfg_attr(miri, ignore = "incompatible with miri")]
#[allow(unused_attributes)]
#[test]
fn ui() {
Expand Down

0 comments on commit 7aafa26

Please sign in to comment.