mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-23 22:05:31 +03:00
std: Un-ignore some float tests on windows
These were fixed in the upgrade from mingw32 to mingw64. Closes #8663
This commit is contained in:
@@ -1037,7 +1037,7 @@ fn test_abs_sub() {
|
||||
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());
|
||||
|
||||
@@ -1041,7 +1041,7 @@ fn test_abs_sub() {
|
||||
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());
|
||||
|
||||
Reference in New Issue
Block a user