Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 276b26e

Browse files
Disable tests on PowerPC
1 parent 7c02ee9 commit 276b26e

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/math/rint.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ pub fn rint(x: f64) -> f64 {
2525
}
2626
}
2727

28+
// PowerPC tests are failing on LLVM 13: https://github.com/rust-lang/rust/issues/88520
29+
#[cfg(not(target_arch = "powerpc64"))]
2830
#[cfg(test)]
2931
mod tests {
3032
use super::rint;

src/math/rintf.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ pub fn rintf(x: f32) -> f32 {
2525
}
2626
}
2727

28+
// PowerPC tests are failing on LLVM 13: https://github.com/rust-lang/rust/issues/88520
29+
#[cfg(not(target_arch = "powerpc64"))]
2830
#[cfg(test)]
2931
mod tests {
3032
use super::rintf;

0 commit comments

Comments
 (0)