Skip to content

Re-enable memset tests on powerpc64(le) #792

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Revert "Disable some PPC64 tests which are failing due to an LLVM(?) …
…bug"

This reverts commit 265fdac.

Fixes: rust-lang/rust#99853

Signed-off-by: Jens Reidel <adrian@travitia.xyz>
  • Loading branch information
Gelbpunkt committed Mar 17, 2025
commit b3fa9a7978b72f6bfe282a7a24fece74865a8926
6 changes: 0 additions & 6 deletions testcrate/tests/mem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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>();
Expand All @@ -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>();
Expand All @@ -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>();
Expand Down
Loading