Revert "Disable some PPC64 tests which are failing due to an LLVM(?) bug"

This reverts commit 265fdacab9b3c63b2c17a42fb17c51996c703ef8.

Fixes: https://github.com/rust-lang/rust/issues/99853

Signed-off-by: Jens Reidel <adrian@travitia.xyz>
This commit is contained in:
Jens Reidel 2025-03-17 02:41:53 +01:00 committed by Trevor Gross
parent 1fb5e1a5ba
commit 192206bfbb

View file

@ -230,8 +230,6 @@ 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>();
@ -244,8 +242,6 @@ 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>();
@ -258,8 +254,6 @@ 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>();