File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 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 {
539539 #[ cfg_attr( target_arch = "wasm32" , wasm_bindgen_test:: wasm_bindgen_test) ] ;
540540 lanes_1 1 ;
541541 lanes_2 2 ;
542- lanes_4 4 ;
543542 ) ;
544543
545544 #[ cfg( not( miri) ) ] // Miri intrinsic implementations are uniform and larger tests are sloooow
546545 $crate:: test_lanes_helper!(
547546 #[ cfg_attr( target_arch = "wasm32" , wasm_bindgen_test:: wasm_bindgen_test) ] ;
547+ lanes_4 4 ;
548548 lanes_8 8 ;
549549 lanes_16 16 ;
550550 lanes_32 32 ;
@@ -553,17 +553,17 @@ macro_rules! test_lanes {
553553
554554 #[ cfg( feature = "all_lane_counts" ) ]
555555 $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
557557 #[ cfg_attr( target_arch = "wasm32" , wasm_bindgen_test:: wasm_bindgen_test) ] ;
558558 lanes_3 3 ;
559- lanes_5 5 ;
560- lanes_6 6 ;
561559 ) ;
562560
563561 #[ cfg( feature = "all_lane_counts" ) ]
564562 #[ cfg( not( miri) ) ] // Miri intrinsic implementations are uniform and larger tests are sloooow
565563 $crate:: test_lanes_helper!(
566564 #[ cfg_attr( target_arch = "wasm32" , wasm_bindgen_test:: wasm_bindgen_test) ] ;
565+ lanes_5 5 ;
566+ lanes_6 6 ;
567567 lanes_7 7 ;
568568 lanes_9 9 ;
569569 lanes_10 10 ;
You can’t perform that action at this time.
0 commit comments