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 92fbde0 commit 8234c4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/d2s_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ fn test_random() {
}

#[test]
#[cfg_attr(miri, ignore)]
#[cfg_attr(miri, ignore = "too slow for miri")]
fn test_non_finite() {
for i in 0u64..1 << 23 {
let f = f64::from_bits((((1 << 11) - 1) << 52) + (i << 29));
Expand Down
2 changes: 1 addition & 1 deletion tests/f2s_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ fn test_random() {
}

#[test]
#[cfg_attr(miri, ignore)]
#[cfg_attr(miri, ignore = "too slow for miri")]
fn test_non_finite() {
for i in 0u32..1 << 23 {
let f = f32::from_bits((((1 << 8) - 1) << 23) + i);
Expand Down

0 comments on commit 8234c4d

Please sign in to comment.