Merge pull request #437 from Amanieu/disable_ppc_test

This commit is contained in:
Amanieu d'Antras 2021-10-15 18:12:08 +01:00 committed by GitHub
commit 7af3f4e966
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 0 deletions

View file

@ -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::{

View file

@ -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::{

View file

@ -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;