Skip to content

Commit 55f02b2

Browse files
committed
std: Un-ignore some float tests on windows
These were fixed in the upgrade from mingw32 to mingw64. Closes #8663
1 parent 9e8a270 commit 55f02b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/libstd/num/f32.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1037,7 +1037,7 @@ mod tests {
10371037
assert_eq!(0f32.abs_sub(&INFINITY), 0f32);
10381038
}
10391039

1040-
#[test] #[ignore(cfg(windows))] // FIXME #8663
1040+
#[test]
10411041
fn test_abs_sub_nowin() {
10421042
assert!(NAN.abs_sub(&-1f32).is_nan());
10431043
assert!(1f32.abs_sub(&NAN).is_nan());

src/libstd/num/f64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1041,7 +1041,7 @@ mod tests {
10411041
assert_eq!(0f64.abs_sub(&INFINITY), 0f64);
10421042
}
10431043

1044-
#[test] #[ignore(cfg(windows))] // FIXME #8663
1044+
#[test]
10451045
fn test_abs_sub_nowin() {
10461046
assert!(NAN.abs_sub(&-1f64).is_nan());
10471047
assert!(1f64.abs_sub(&NAN).is_nan());

0 commit comments

Comments
 (0)