Skip to content

Commit 265fdac

Browse files
committed
Disable some PPC64 tests which are failing due to an LLVM(?) bug
See rust-lang/rust#99853
1 parent 3872a7c commit 265fdac

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

testcrate/tests/mem.rs

+6
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,8 @@ fn memmove_backward_aligned() {
230230
}
231231
}
232232

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

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

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

0 commit comments

Comments
 (0)