Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 55f6ecb

Browse files
committedOct 15, 2021
Disable broken powerpc64 test due to rust-lang/rust#88520
1 parent 2be2bc0 commit 55f6ecb

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed
 

‎testcrate/tests/cmp.rs

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ macro_rules! cmp {
2222
};
2323
}
2424

25+
// PowerPC tests are failing on LLVM 13: https://github.com/rust-lang/rust/issues/88520
26+
#[cfg(not(target_arch = "powerpc64"))]
2527
#[test]
2628
fn float_comparisons() {
2729
use compiler_builtins::float::cmp::{

‎testcrate/tests/conv.rs

+2
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@ macro_rules! f_to_i {
9595
};
9696
}
9797

98+
// PowerPC tests are failing on LLVM 13: https://github.com/rust-lang/rust/issues/88520
99+
#[cfg(not(target_arch = "powerpc64"))]
98100
#[test]
99101
fn float_to_int() {
100102
use compiler_builtins::float::conv::{

‎testcrate/tests/misc.rs

+2
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,8 @@ macro_rules! extend {
111111
};
112112
}
113113

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

0 commit comments

Comments
 (0)
Failed to load comments.