Skip to content

Commit

Permalink
Disable broken powerpc64 test due to rust-lang/rust#88520
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanieu authored and vladimir-ea committed Mar 8, 2022
1 parent a44d27d commit d214b58
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions testcrate/tests/cmp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ macro_rules! cmp {
};
}

// PowerPC tests are failing on LLVM 13: https://github.com/rust-lang/rust/issues/88520
#[cfg(not(target_arch = "powerpc64"))]
#[test]
fn float_comparisons() {
use compiler_builtins::float::cmp::{
Expand Down
2 changes: 2 additions & 0 deletions testcrate/tests/conv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ macro_rules! f_to_i {
};
}

// PowerPC tests are failing on LLVM 13: https://github.com/rust-lang/rust/issues/88520
#[cfg(not(target_arch = "powerpc64"))]
#[test]
fn float_to_int() {
use compiler_builtins::float::conv::{
Expand Down
2 changes: 2 additions & 0 deletions testcrate/tests/misc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ macro_rules! extend {
};
}

// PowerPC tests are failing on LLVM 13: https://github.com/rust-lang/rust/issues/88520
#[cfg(not(target_arch = "powerpc64"))]
#[test]
fn float_extend() {
use compiler_builtins::float::extend::__extendsfdf2;
Expand Down

0 comments on commit d214b58

Please sign in to comment.