Skip to content

Commit 9b7aeda

Browse files
committed
restore known failure
1 parent 2905546 commit 9b7aeda

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

builtins-test/tests/conv.rs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,12 @@ mod i_to_f {
7575
}
7676

7777
// Test against native conversion. We disable testing on all `x86` because of
78-
// rounding bugs with `i686`.
79-
if !Float::eq_repr(f0, f1) && !cfg!(target_arch = "x86") {
78+
// rounding bugs with `i686`. `powerpc` also has the same rounding bug.
79+
if !Float::eq_repr(f0, f1) && !cfg!(any(
80+
target_arch = "x86",
81+
target_arch = "powerpc",
82+
target_arch = "powerpc64"
83+
)) {
8084
panic!(
8185
"{}({}): std: {:?}, builtins: {:?}",
8286
stringify!($fn),

0 commit comments

Comments
 (0)