Skip to content

Commit

Permalink
std: Un-ignore some float tests on windows
Browse files Browse the repository at this point in the history
These were fixed in the upgrade from mingw32 to mingw64.

Closes #8663
  • Loading branch information
alexcrichton committed Apr 16, 2014
1 parent 9e8a270 commit 55f02b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libstd/num/f32.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,7 @@ mod tests {
assert_eq!(0f32.abs_sub(&INFINITY), 0f32);
}

#[test] #[ignore(cfg(windows))] // FIXME #8663
#[test]
fn test_abs_sub_nowin() {
assert!(NAN.abs_sub(&-1f32).is_nan());
assert!(1f32.abs_sub(&NAN).is_nan());
Expand Down
2 changes: 1 addition & 1 deletion src/libstd/num/f64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@ mod tests {
assert_eq!(0f64.abs_sub(&INFINITY), 0f64);
}

#[test] #[ignore(cfg(windows))] // FIXME #8663
#[test]
fn test_abs_sub_nowin() {
assert!(NAN.abs_sub(&-1f64).is_nan());
assert!(1f64.abs_sub(&NAN).is_nan());
Expand Down

0 comments on commit 55f02b2

Please sign in to comment.