File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ echo "STDARCH_DISABLE_ASSERT_INSTR=${STDARCH_DISABLE_ASSERT_INSTR}"
37
37
echo " STDARCH_TEST_EVERYTHING=${STDARCH_TEST_EVERYTHING} "
38
38
39
39
cargo_test () {
40
- cmd=" cargo"
40
+ cmd=" cargo +nightly "
41
41
subcmd=" test"
42
42
if [ " $NORUN " = " 1" ]; then
43
43
export subcmd=" build"
Original file line number Diff line number Diff line change @@ -1821,9 +1821,9 @@ mod tests {
1821
1821
1822
1822
#[ simd_test( enable = "neon" ) ]
1823
1823
unsafe fn test_vandq_s32 ( ) {
1824
- let a = i32x4:: new ( 20 , 20 , 20 , 20 ;
1824
+ let a = i32x4:: new ( 20 , 20 , 20 , 20 ) ;
1825
1825
let b = i32x4:: new ( 21 , 21 , 21 , 21 ) ;
1826
- let e = i32x4:: new ( 20 , 20 , 20 , 20 ) ) ;
1826
+ let e = i32x4:: new ( 20 , 20 , 20 , 20 ) ;
1827
1827
let r: i32x4 = transmute ( vandq_s32 ( transmute ( a) , transmute ( b) ) ) ;
1828
1828
assert_eq ! ( r, e) ;
1829
1829
}
You can’t perform that action at this time.
0 commit comments