Skip to content

Commit

Permalink
Merge pull request #481 from Amanieu/disable-ppc64
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanieu authored Jul 28, 2022
2 parents 3872a7c + 265fdac commit 3cd73f9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions testcrate/tests/mem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,8 @@ fn memmove_backward_aligned() {
}
}

// PowerPC tests are failing: https://github.com/rust-lang/rust/issues/99853
#[cfg(not(target_arch = "powerpc64"))]
#[test]
fn memset_backward_misaligned_nonaligned_start() {
let mut arr = gen_arr::<32>();
Expand All @@ -242,6 +244,8 @@ fn memset_backward_misaligned_nonaligned_start() {
}
}

// PowerPC tests are failing: https://github.com/rust-lang/rust/issues/99853
#[cfg(not(target_arch = "powerpc64"))]
#[test]
fn memset_backward_misaligned_aligned_start() {
let mut arr = gen_arr::<32>();
Expand All @@ -254,6 +258,8 @@ fn memset_backward_misaligned_aligned_start() {
}
}

// PowerPC tests are failing: https://github.com/rust-lang/rust/issues/99853
#[cfg(not(target_arch = "powerpc64"))]
#[test]
fn memset_backward_aligned() {
let mut arr = gen_arr::<32>();
Expand Down

0 comments on commit 3cd73f9

Please sign in to comment.