File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -539,15 +539,17 @@ 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_3 3 ; // test one non-power-of-2 length on miri
542
+ lanes_3 3 ;
543
+
544
+ lanes_6 6 ;
543
545
) ;
544
546
545
547
#[ cfg( not( miri) ) ] // Miri intrinsic implementations are uniform and larger tests are sloooow
546
548
$crate:: test_lanes_helper!(
547
549
#[ cfg_attr( target_arch = "wasm32" , wasm_bindgen_test:: wasm_bindgen_test) ] ;
548
550
lanes_4 4 ;
549
551
lanes_5 5 ;
550
- lanes_6 6 ;
552
+
551
553
lanes_7 7 ;
552
554
lanes_8 8 ;
553
555
lanes_9 9 ;
@@ -633,14 +635,16 @@ macro_rules! test_lanes_panic {
633
635
lanes_1 1 ;
634
636
lanes_2 2 ;
635
637
lanes_3 3 ;
636
- lanes_4 4 ;
637
- lanes_5 5 ;
638
+
639
+ lanes_6 6 ;
638
640
) ;
639
641
640
642
#[ cfg( not( miri) ) ] // Miri intrinsic implementations are uniform and larger tests are sloooow
641
643
$crate:: test_lanes_helper!(
642
644
#[ should_panic] ;
643
- lanes_6 6 ;
645
+ lanes_4 4 ;
646
+ lanes_5 5 ;
647
+
644
648
lanes_7 7 ;
645
649
lanes_8 8 ;
646
650
lanes_9 9 ;
You can’t perform that action at this time.
0 commit comments