File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 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() {
230230 }
231231}
232232
233+ // PowerPC tests are failing: https://github.com/rust-lang/rust/issues/99853
234+ #[ cfg( not( target_arch = "powerpc64" ) ) ]
233235#[ test]
234236fn 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]
246250fn 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]
258264fn memset_backward_aligned ( ) {
259265 let mut arr = gen_arr :: < 32 > ( ) ;
You can’t perform that action at this time.
0 commit comments