diff options
| author | Jens Reidel <adrian@travitia.xyz> | 2025-03-17 02:41:53 +0100 |
|---|---|---|
| committer | Trevor Gross <t.gross35@gmail.com> | 2025-03-17 15:40:46 -0500 |
| commit | 192206bfbb57ed2781ccc9319405038e5778c1a5 (patch) | |
| tree | 2018ebda614070171674619577688d82278294be | |
| parent | 1fb5e1a5ba8129c13790320a855623fb9e3170c3 (diff) | |
| download | rust-192206bfbb57ed2781ccc9319405038e5778c1a5.tar.gz rust-192206bfbb57ed2781ccc9319405038e5778c1a5.zip | |
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>
| -rw-r--r-- | library/compiler-builtins/testcrate/tests/mem.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/library/compiler-builtins/testcrate/tests/mem.rs b/library/compiler-builtins/testcrate/tests/mem.rs index 5099d69ed6c..48ac95adc17 100644 --- a/library/compiler-builtins/testcrate/tests/mem.rs +++ b/library/compiler-builtins/testcrate/tests/mem.rs @@ -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>(); |
