File tree 4 files changed +0
-7
lines changed
4 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ macro_rules! test_literal {
21
21
} } ;
22
22
}
23
23
24
- #[ cfg_attr( all( target_arch = "wasm32" , target_os = "emscripten" ) , ignore) ] // issue 42630
25
24
#[ test]
26
25
fn ordinary ( ) {
27
26
test_literal ! ( 1.0 ) ;
@@ -38,7 +37,6 @@ fn ordinary() {
38
37
test_literal ! ( 2.2250738585072014e-308 ) ;
39
38
}
40
39
41
- #[ cfg_attr( all( target_arch = "wasm32" , target_os = "emscripten" ) , ignore) ] // issue 42630
42
40
#[ test]
43
41
fn special_code_paths ( ) {
44
42
test_literal ! ( 36893488147419103229.0 ) ; // 2^65 - 3, triggers half-to-even with even significand
Original file line number Diff line number Diff line change @@ -81,7 +81,6 @@ fn rounding_overflow() {
81
81
assert_eq ! ( rounded. k, adjusted_k + 1 ) ;
82
82
}
83
83
84
- #[ cfg_attr( all( target_arch = "wasm32" , target_os = "emscripten" ) , ignore) ] // issue 42630
85
84
#[ test]
86
85
fn prev_float_monotonic ( ) {
87
86
let mut x = 1.0 ;
@@ -117,7 +116,6 @@ fn next_float_inf() {
117
116
assert_eq ! ( next_float( f64 :: INFINITY ) , f64 :: INFINITY ) ;
118
117
}
119
118
120
- #[ cfg_attr( all( target_arch = "wasm32" , target_os = "emscripten" ) , ignore) ] // issue 42630
121
119
#[ test]
122
120
fn next_prev_identity ( ) {
123
121
for & x in & SOME_FLOATS {
@@ -128,7 +126,6 @@ fn next_prev_identity() {
128
126
}
129
127
}
130
128
131
- #[ cfg_attr( all( target_arch = "wasm32" , target_os = "emscripten" ) , ignore) ] // issue 42630
132
129
#[ test]
133
130
fn next_float_monotonic ( ) {
134
131
let mut x = 0.49999999999999 ;
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ fn test_mul_pow10() {
13
13
}
14
14
}
15
15
16
- #[ cfg_attr( all( target_arch = "wasm32" , target_os = "emscripten" ) , ignore) ] // issue 42630
17
16
#[ test]
18
17
fn shortest_sanity_test ( ) {
19
18
f64_shortest_sanity_test ( format_shortest) ;
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ fn test_max_pow10_no_more_than() {
33
33
}
34
34
}
35
35
36
- #[ cfg_attr( all( target_arch = "wasm32" , target_os = "emscripten" ) , ignore) ] // issue 42630
37
36
#[ test]
38
37
fn shortest_sanity_test ( ) {
39
38
f64_shortest_sanity_test ( format_shortest) ;
You can’t perform that action at this time.
0 commit comments