Skip to content

Commit 7274bd7

Browse files
committed
Fix syntax error
1 parent cf12be5 commit 7274bd7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ci/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ echo "STDARCH_DISABLE_ASSERT_INSTR=${STDARCH_DISABLE_ASSERT_INSTR}"
3737
echo "STDARCH_TEST_EVERYTHING=${STDARCH_TEST_EVERYTHING}"
3838

3939
cargo_test() {
40-
cmd="cargo"
40+
cmd="cargo +nightly"
4141
subcmd="test"
4242
if [ "$NORUN" = "1" ]; then
4343
export subcmd="build"

crates/core_arch/src/arm/neon.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1821,9 +1821,9 @@ mod tests {
18211821

18221822
#[simd_test(enable = "neon")]
18231823
unsafe fn test_vandq_s32() {
1824-
let a = i32x4::new(20, 20, 20, 20;
1824+
let a = i32x4::new(20, 20, 20, 20);
18251825
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);
18271827
let r: i32x4 = transmute(vandq_s32(transmute(a), transmute(b)));
18281828
assert_eq!(r, e);
18291829
}

0 commit comments

Comments
 (0)