1
1
use super :: { Duration , Instant , SystemTime , UNIX_EPOCH } ;
2
- use core :: sync :: atomic :: AtomicU64 ;
2
+ # [ cfg ( not ( target_arch = "wasm32" ) ) ]
3
3
use test:: { black_box, Bencher } ;
4
4
5
5
macro_rules! assert_almost_eq {
@@ -25,6 +25,7 @@ fn instant_monotonic() {
25
25
}
26
26
27
27
#[ test]
28
+ #[ cfg( not( target_arch = "wasm32" ) ) ]
28
29
fn instant_monotonic_concurrent ( ) -> crate :: thread:: Result < ( ) > {
29
30
let threads: Vec < _ > = ( 0 ..8 )
30
31
. map ( |_| {
@@ -195,10 +196,18 @@ fn since_epoch() {
195
196
#[ test]
196
197
fn monotonizer_wrapping_backslide ( ) {
197
198
use super :: monotonic:: inner:: { monotonize_impl, ZERO } ;
199
+ use core:: sync:: atomic:: AtomicU64 ;
198
200
199
201
let reference = AtomicU64 :: new ( 0 ) ;
200
202
201
- let time = ZERO . checked_add_duration ( & Duration :: from_secs ( 0xffff_ffff ) ) . unwrap ( ) ;
203
+ let time = match ZERO . checked_add_duration ( & Duration :: from_secs ( 0xffff_ffff ) ) {
204
+ Some ( time) => time,
205
+ None => {
206
+ // platform cannot represent u32::MAX seconds so it won't have to deal with this kind
207
+ // of overflow either
208
+ return ;
209
+ }
210
+ } ;
202
211
203
212
let monotonized = monotonize_impl ( & reference, time) ;
204
213
let expected = ZERO . checked_add_duration ( & Duration :: from_secs ( 1 << 32 ) ) . unwrap ( ) ;
@@ -211,6 +220,7 @@ fn monotonizer_wrapping_backslide() {
211
220
macro_rules! bench_instant_threaded {
212
221
( $bench_name: ident, $thread_count: expr) => {
213
222
#[ bench]
223
+ #[ cfg( not( target_arch = "wasm32" ) ) ]
214
224
fn $bench_name( b: & mut Bencher ) -> crate :: thread:: Result <( ) > {
215
225
use crate :: sync:: atomic:: { AtomicBool , Ordering } ;
216
226
use crate :: sync:: Arc ;
0 commit comments