Skip to content

Commit 8234c4d

Browse files
committed
Fill in ignore reasons in all #[ignore] attributes
1 parent 92fbde0 commit 8234c4d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/d2s_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ fn test_random() {
6767
}
6868

6969
#[test]
70-
#[cfg_attr(miri, ignore)]
70+
#[cfg_attr(miri, ignore = "too slow for miri")]
7171
fn test_non_finite() {
7272
for i in 0u64..1 << 23 {
7373
let f = f64::from_bits((((1 << 11) - 1) << 52) + (i << 29));

tests/f2s_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ fn test_random() {
6060
}
6161

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

0 commit comments

Comments
 (0)