File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -539,12 +539,12 @@ macro_rules! test_lanes {
539
539
#[ cfg_attr( target_arch = "wasm32" , wasm_bindgen_test:: wasm_bindgen_test) ] ;
540
540
lanes_1 1 ;
541
541
lanes_2 2 ;
542
- lanes_4 4 ;
543
542
) ;
544
543
545
544
#[ cfg( not( miri) ) ] // Miri intrinsic implementations are uniform and larger tests are sloooow
546
545
$crate:: test_lanes_helper!(
547
546
#[ cfg_attr( target_arch = "wasm32" , wasm_bindgen_test:: wasm_bindgen_test) ] ;
547
+ lanes_4 4 ;
548
548
lanes_8 8 ;
549
549
lanes_16 16 ;
550
550
lanes_32 32 ;
@@ -553,17 +553,17 @@ macro_rules! test_lanes {
553
553
554
554
#[ cfg( feature = "all_lane_counts" ) ]
555
555
$crate:: test_lanes_helper!(
556
- // test some odd and even non-power-of-2 lengths on miri
556
+ // test one non-power-of-2 length on miri
557
557
#[ cfg_attr( target_arch = "wasm32" , wasm_bindgen_test:: wasm_bindgen_test) ] ;
558
558
lanes_3 3 ;
559
- lanes_5 5 ;
560
- lanes_6 6 ;
561
559
) ;
562
560
563
561
#[ cfg( feature = "all_lane_counts" ) ]
564
562
#[ cfg( not( miri) ) ] // Miri intrinsic implementations are uniform and larger tests are sloooow
565
563
$crate:: test_lanes_helper!(
566
564
#[ cfg_attr( target_arch = "wasm32" , wasm_bindgen_test:: wasm_bindgen_test) ] ;
565
+ lanes_5 5 ;
566
+ lanes_6 6 ;
567
567
lanes_7 7 ;
568
568
lanes_9 9 ;
569
569
lanes_10 10 ;
You can’t perform that action at this time.
0 commit comments