Parcourir la source

Disable broken powerpc64 test due to https://github.com/rust-lang/rust/issues/88520

Amanieu d'Antras il y a 3 ans
Parent
commit
55f6ecb6de
3 fichiers modifiés avec 6 ajouts et 0 suppressions
  1. 2 0
      testcrate/tests/cmp.rs
  2. 2 0
      testcrate/tests/conv.rs
  3. 2 0
      testcrate/tests/misc.rs

+ 2 - 0
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::{

+ 2 - 0
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::{

+ 2 - 0
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;