Skip to content

Commit

Permalink
Disable bitmask tests on bigendian
Browse files Browse the repository at this point in the history
  • Loading branch information
workingjubilee committed Jul 27, 2023
1 parent d6585c7 commit 55781f2
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/api/bitmask.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,10 @@ macro_rules! impl_bitmask {
test_if! {
$test_tt:
paste::item! {
#[cfg(not(any(
#[cfg(not(
// FIXME: https://github.com/rust-lang-nursery/packed_simd/issues/210
all(target_arch = "mips", target_endian = "big"),
all(target_arch = "mips64", target_endian = "big"),
target_arch = "sparc64",
target_arch = "s390x",
)))]
target_endian = "big"
))]
pub mod [<$id _bitmask>] {
use super::*;
#[cfg_attr(not(target_arch = "wasm32"), test)]
Expand Down

0 comments on commit 55781f2

Please sign in to comment.