We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e8a270 commit 55f02b2Copy full SHA for 55f02b2
src/libstd/num/f32.rs
@@ -1037,7 +1037,7 @@ mod tests {
1037
assert_eq!(0f32.abs_sub(&INFINITY), 0f32);
1038
}
1039
1040
- #[test] #[ignore(cfg(windows))] // FIXME #8663
+ #[test]
1041
fn test_abs_sub_nowin() {
1042
assert!(NAN.abs_sub(&-1f32).is_nan());
1043
assert!(1f32.abs_sub(&NAN).is_nan());
src/libstd/num/f64.rs
@@ -1041,7 +1041,7 @@ mod tests {
assert_eq!(0f64.abs_sub(&INFINITY), 0f64);
1044
1045
1046
assert!(NAN.abs_sub(&-1f64).is_nan());
1047
assert!(1f64.abs_sub(&NAN).is_nan());
0 commit comments