We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92fbde0 commit 8234c4dCopy full SHA for 8234c4d
tests/d2s_test.rs
@@ -67,7 +67,7 @@ fn test_random() {
67
}
68
69
#[test]
70
-#[cfg_attr(miri, ignore)]
+#[cfg_attr(miri, ignore = "too slow for miri")]
71
fn test_non_finite() {
72
for i in 0u64..1 << 23 {
73
let f = f64::from_bits((((1 << 11) - 1) << 52) + (i << 29));
tests/f2s_test.rs
@@ -60,7 +60,7 @@ fn test_random() {
60
61
62
63
64
65
for i in 0u32..1 << 23 {
66
let f = f32::from_bits((((1 << 8) - 1) << 23) + i);
0 commit comments