diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-04-15 06:35:15 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-04-15 19:47:03 -0700 |
| commit | 55f02b2c1bdb6a8947478b1bdfd16423bfa7e2f5 (patch) | |
| tree | 02290c135c24ae8d07dba79c2ff43c779b88ff1f /src/libstd | |
| parent | 9e8a270681aa22b56cdb41f5e2537dace5c7fe75 (diff) | |
| download | rust-55f02b2c1bdb6a8947478b1bdfd16423bfa7e2f5.tar.gz rust-55f02b2c1bdb6a8947478b1bdfd16423bfa7e2f5.zip | |
std: Un-ignore some float tests on windows
These were fixed in the upgrade from mingw32 to mingw64. Closes #8663
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/num/f32.rs | 2 | ||||
| -rw-r--r-- | src/libstd/num/f64.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/num/f32.rs b/src/libstd/num/f32.rs index 7c5fe4ff274..7cd6aaa6310 100644 --- a/src/libstd/num/f32.rs +++ b/src/libstd/num/f32.rs @@ -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()); diff --git a/src/libstd/num/f64.rs b/src/libstd/num/f64.rs index 69328a5ecdc..8b52a6747f4 100644 --- a/src/libstd/num/f64.rs +++ b/src/libstd/num/f64.rs @@ -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()); |
