From 55f6ecb6de9e2e10d9187b287b9e87b202d07d1e Mon Sep 17 00:00:00 2001 From: Amanieu d'Antras Date: Fri, 15 Oct 2021 01:56:08 +0200 Subject: [PATCH] Disable broken powerpc64 test due to https://github.com/rust-lang/rust/issues/88520 --- testcrate/tests/cmp.rs | 2 ++ testcrate/tests/conv.rs | 2 ++ testcrate/tests/misc.rs | 2 ++ 3 files changed, 6 insertions(+) diff --git a/testcrate/tests/cmp.rs b/testcrate/tests/cmp.rs index a49779ad0..5c10a5601 100644 --- a/testcrate/tests/cmp.rs +++ b/testcrate/tests/cmp.rs @@ -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::{ diff --git a/testcrate/tests/conv.rs b/testcrate/tests/conv.rs index 7cdbf9fbb..8c4b1946c 100644 --- a/testcrate/tests/conv.rs +++ b/testcrate/tests/conv.rs @@ -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::{ diff --git a/testcrate/tests/misc.rs b/testcrate/tests/misc.rs index 82a1ea27b..5f74e0063 100644 --- a/testcrate/tests/misc.rs +++ b/testcrate/tests/misc.rs @@ -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;