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.
test_num_f128
reliable_f128_math
1 parent 4d215e2 commit 62c0c99Copy full SHA for 62c0c99
library/std/src/f128/tests.rs
@@ -2,7 +2,9 @@
2
#![cfg(reliable_f128)]
3
4
use crate::f128::consts;
5
-use crate::num::{FpCategory as Fp, *};
+#[cfg(not(reliable_f128))]
6
+use crate::num::*;
7
+use crate::num::FpCategory as Fp;
8
9
// Note these tolerances make sense around zero, but not for more extreme exponents.
10
@@ -52,6 +54,7 @@ macro_rules! assert_f128_biteq {
52
54
}
53
55
56
#[test]
57
+#[cfg(reliable_f128_math)]
58
fn test_num_f128() {
59
test_num(10f128, 2f128);
60
0 commit comments