Skip to content

Commit 1e13e83

Browse files
committed
Skip some tests on AArch64
1 parent d0d7003 commit 1e13e83

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

src/api/ops/scalar_shifts.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ macro_rules! impl_ops_scalar_shifts {
4141
unused_mut)
4242
)]
4343
// ^^^ FIXME: https://github.com/rust-lang/rust/issues/55344
44+
#[cfg(not(target_arch = "aarch64"))]
45+
//~^ FIXME: https://github.com/rust-lang/packed_simd/issues/317
4446
fn ops_scalar_shifts() {
4547
let z = $id::splat(0 as $elem_ty);
4648
let o = $id::splat(1 as $elem_ty);

src/api/ops/vector_rotates.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ macro_rules! impl_ops_vector_rotates {
4747
pub mod [<$id _ops_vector_rotate>] {
4848
use super::*;
4949
#[cfg_attr(not(target_arch = "wasm32"), test)] #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test)]
50+
#[cfg(not(target_arch = "aarch64"))]
51+
//~^ FIXME: https://github.com/rust-lang/packed_simd/issues/317
5052
fn rotate_ops() {
5153
let z = $id::splat(0 as $elem_ty);
5254
let o = $id::splat(1 as $elem_ty);

src/api/ops/vector_shifts.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ macro_rules! impl_ops_vector_shifts {
4242
unused_mut)
4343
)]
4444
// ^^^ FIXME: https://github.com/rust-lang/rust/issues/55344
45+
#[cfg(not(target_arch = "aarch64"))]
46+
//~^ FIXME: https://github.com/rust-lang/packed_simd/issues/317
4547
fn ops_vector_shifts() {
4648
let z = $id::splat(0 as $elem_ty);
4749
let o = $id::splat(1 as $elem_ty);

0 commit comments

Comments
 (0)