@@ -22,12 +22,15 @@ fn checked_log() {
22
22
assert_eq ! ( 0i8 . checked_log( 4 ) , None ) ;
23
23
assert_eq ! ( 0i16 . checked_log( 4 ) , None ) ;
24
24
25
+ #[ cfg( not( miri) ) ] // Miri is too slow
25
26
for i in i16:: MIN ..=0 {
26
27
assert_eq ! ( i. checked_log( 4 ) , None ) ;
27
28
}
29
+ #[ cfg( not( miri) ) ] // Miri is too slow
28
30
for i in 1 ..=i16:: MAX {
29
31
assert_eq ! ( i. checked_log( 13 ) , Some ( ( i as f32 ) . log( 13.0 ) as u32 ) ) ;
30
32
}
33
+ #[ cfg( not( miri) ) ] // Miri is too slow
31
34
for i in 1 ..=u16:: MAX {
32
35
assert_eq ! ( i. checked_log( 13 ) , Some ( ( i as f32 ) . log( 13.0 ) as u32 ) ) ;
33
36
}
@@ -48,6 +51,7 @@ fn checked_log2() {
48
51
for i in 1 ..=u8:: MAX {
49
52
assert_eq ! ( i. checked_log2( ) , Some ( ( i as f32 ) . log2( ) as u32 ) ) ;
50
53
}
54
+ #[ cfg( not( miri) ) ] // Miri is too slow
51
55
for i in 1 ..=u16:: MAX {
52
56
// Guard against Android's imprecise f32::log2 implementation.
53
57
if i != 8192 && i != 32768 {
@@ -60,9 +64,11 @@ fn checked_log2() {
60
64
for i in 1 ..=i8:: MAX {
61
65
assert_eq ! ( i. checked_log2( ) , Some ( ( i as f32 ) . log2( ) as u32 ) ) ;
62
66
}
67
+ #[ cfg( not( miri) ) ] // Miri is too slow
63
68
for i in i16:: MIN ..=0 {
64
69
assert_eq ! ( i. checked_log2( ) , None ) ;
65
70
}
71
+ #[ cfg( not( miri) ) ] // Miri is too slow
66
72
for i in 1 ..=i16:: MAX {
67
73
// Guard against Android's imprecise f32::log2 implementation.
68
74
if i != 8192 {
@@ -87,15 +93,19 @@ fn checked_log10() {
87
93
assert_eq ! ( 0i8 . checked_log10( ) , None ) ;
88
94
assert_eq ! ( 0i16 . checked_log10( ) , None ) ;
89
95
96
+ #[ cfg( not( miri) ) ] // Miri is too slow
90
97
for i in i16:: MIN ..=0 {
91
98
assert_eq ! ( i. checked_log10( ) , None ) ;
92
99
}
100
+ #[ cfg( not( miri) ) ] // Miri is too slow
93
101
for i in 1 ..=i16:: MAX {
94
102
assert_eq ! ( i. checked_log10( ) , Some ( ( i as f32 ) . log10( ) as u32 ) ) ;
95
103
}
104
+ #[ cfg( not( miri) ) ] // Miri is too slow
96
105
for i in 1 ..=u16:: MAX {
97
106
assert_eq ! ( i. checked_log10( ) , Some ( ( i as f32 ) . log10( ) as u32 ) ) ;
98
107
}
108
+ #[ cfg( not( miri) ) ] // Miri is too slow
99
109
for i in 1 ..=100_000u32 {
100
110
assert_eq ! ( i. checked_log10( ) , Some ( ( i as f32 ) . log10( ) as u32 ) ) ;
101
111
}
0 commit comments