File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -230,6 +230,8 @@ fn memmove_backward_aligned() {
230
230
}
231
231
}
232
232
233
+ // PowerPC tests are failing: https://github.com/rust-lang/rust/issues/99853
234
+ #[ cfg( not( target_arch = "powerpc64" ) ) ]
233
235
#[ test]
234
236
fn memset_backward_misaligned_nonaligned_start ( ) {
235
237
let mut arr = gen_arr :: < 32 > ( ) ;
@@ -242,6 +244,8 @@ fn memset_backward_misaligned_nonaligned_start() {
242
244
}
243
245
}
244
246
247
+ // PowerPC tests are failing: https://github.com/rust-lang/rust/issues/99853
248
+ #[ cfg( not( target_arch = "powerpc64" ) ) ]
245
249
#[ test]
246
250
fn memset_backward_misaligned_aligned_start ( ) {
247
251
let mut arr = gen_arr :: < 32 > ( ) ;
@@ -254,6 +258,8 @@ fn memset_backward_misaligned_aligned_start() {
254
258
}
255
259
}
256
260
261
+ // PowerPC tests are failing: https://github.com/rust-lang/rust/issues/99853
262
+ #[ cfg( not( target_arch = "powerpc64" ) ) ]
257
263
#[ test]
258
264
fn memset_backward_aligned ( ) {
259
265
let mut arr = gen_arr :: < 32 > ( ) ;
You can’t perform that action at this time.
0 commit comments