Disable some PPC64 tests which are failing due to an LLVM(?) bug
See https://github.com/rust-lang/rust/issues/99853
This commit is contained in:
parent
5e48419836
commit
6b6db5cc84
1 changed files with 6 additions and 0 deletions
|
|
@ -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>();
|
||||
|
|
@ -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>();
|
||||
|
|
@ -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>();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue