Skip to content

Commit be9a4e4

Browse files
committed
Fill in ignore reasons in all #[ignore] attributes
1 parent 1449ffb commit be9a4e4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/compiletest.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#[allow(unused_attributes)]
2-
#[rustversion::attr(not(nightly), ignore)]
3-
#[cfg_attr(skip_ui_tests, ignore)]
4-
#[cfg_attr(miri, ignore)]
2+
#[rustversion::attr(not(nightly), ignore = "requires nightly")]
3+
#[cfg_attr(skip_ui_tests, ignore = "disabled by `--cfg=skip_ui_tests`")]
4+
#[cfg_attr(miri, ignore = "incompatible with miri")]
55
#[test]
66
fn ui() {
77
let t = trybuild::TestCases::new();

0 commit comments

Comments
 (0)