Skip to content

Commit fc9b01f

Browse files
RalfJungworkingjubilee
authored andcommitted
these tests seem to work fine on i586 these days
1 parent 22c4e8e commit fc9b01f

File tree

2 files changed

+0
-26
lines changed

2 files changed

+0
-26
lines changed

std/src/f32/tests.rs

-13
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,24 @@ use crate::f32::consts;
22
use crate::num::{FpCategory as Fp, *};
33

44
/// Smallest number
5-
#[allow(dead_code)] // unused on x86
65
const TINY_BITS: u32 = 0x1;
76

87
/// Next smallest number
9-
#[allow(dead_code)] // unused on x86
108
const TINY_UP_BITS: u32 = 0x2;
119

1210
/// Exponent = 0b11...10, Sifnificand 0b1111..10. Min val > 0
13-
#[allow(dead_code)] // unused on x86
1411
const MAX_DOWN_BITS: u32 = 0x7f7f_fffe;
1512

1613
/// Zeroed exponent, full significant
17-
#[allow(dead_code)] // unused on x86
1814
const LARGEST_SUBNORMAL_BITS: u32 = 0x007f_ffff;
1915

2016
/// Exponent = 0b1, zeroed significand
21-
#[allow(dead_code)] // unused on x86
2217
const SMALLEST_NORMAL_BITS: u32 = 0x0080_0000;
2318

2419
/// First pattern over the mantissa
25-
#[allow(dead_code)] // unused on x86
2620
const NAN_MASK1: u32 = 0x002a_aaaa;
2721

2822
/// Second pattern over the mantissa
29-
#[allow(dead_code)] // unused on x86
3023
const NAN_MASK2: u32 = 0x0055_5555;
3124

3225
#[allow(unused_macros)]
@@ -353,9 +346,6 @@ fn test_is_sign_negative() {
353346
assert!((-f32::NAN).is_sign_negative());
354347
}
355348

356-
// Ignore test on x87 floating point, these platforms do not guarantee NaN
357-
// payloads are preserved and flush denormals to zero, failing the tests.
358-
#[cfg(not(target_arch = "x86"))]
359349
#[test]
360350
fn test_next_up() {
361351
let tiny = f32::from_bits(TINY_BITS);
@@ -386,9 +376,6 @@ fn test_next_up() {
386376
assert_f32_biteq!(nan2.next_up(), nan2);
387377
}
388378

389-
// Ignore test on x87 floating point, these platforms do not guarantee NaN
390-
// payloads are preserved and flush denormals to zero, failing the tests.
391-
#[cfg(not(target_arch = "x86"))]
392379
#[test]
393380
fn test_next_down() {
394381
let tiny = f32::from_bits(TINY_BITS);

std/src/f64/tests.rs

-13
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,24 @@ use crate::f64::consts;
22
use crate::num::{FpCategory as Fp, *};
33

44
/// Smallest number
5-
#[allow(dead_code)] // unused on x86
65
const TINY_BITS: u64 = 0x1;
76

87
/// Next smallest number
9-
#[allow(dead_code)] // unused on x86
108
const TINY_UP_BITS: u64 = 0x2;
119

1210
/// Exponent = 0b11...10, Sifnificand 0b1111..10. Min val > 0
13-
#[allow(dead_code)] // unused on x86
1411
const MAX_DOWN_BITS: u64 = 0x7fef_ffff_ffff_fffe;
1512

1613
/// Zeroed exponent, full significant
17-
#[allow(dead_code)] // unused on x86
1814
const LARGEST_SUBNORMAL_BITS: u64 = 0x000f_ffff_ffff_ffff;
1915

2016
/// Exponent = 0b1, zeroed significand
21-
#[allow(dead_code)] // unused on x86
2217
const SMALLEST_NORMAL_BITS: u64 = 0x0010_0000_0000_0000;
2318

2419
/// First pattern over the mantissa
25-
#[allow(dead_code)] // unused on x86
2620
const NAN_MASK1: u64 = 0x000a_aaaa_aaaa_aaaa;
2721

2822
/// Second pattern over the mantissa
29-
#[allow(dead_code)] // unused on x86
3023
const NAN_MASK2: u64 = 0x0005_5555_5555_5555;
3124

3225
#[allow(unused_macros)]
@@ -343,9 +336,6 @@ fn test_is_sign_negative() {
343336
assert!((-f64::NAN).is_sign_negative());
344337
}
345338

346-
// Ignore test on x87 floating point, these platforms do not guarantee NaN
347-
// payloads are preserved and flush denormals to zero, failing the tests.
348-
#[cfg(not(target_arch = "x86"))]
349339
#[test]
350340
fn test_next_up() {
351341
let tiny = f64::from_bits(TINY_BITS);
@@ -375,9 +365,6 @@ fn test_next_up() {
375365
assert_f64_biteq!(nan2.next_up(), nan2);
376366
}
377367

378-
// Ignore test on x87 floating point, these platforms do not guarantee NaN
379-
// payloads are preserved and flush denormals to zero, failing the tests.
380-
#[cfg(not(target_arch = "x86"))]
381368
#[test]
382369
fn test_next_down() {
383370
let tiny = f64::from_bits(TINY_BITS);

0 commit comments

Comments
 (0)