Disable tests on PowerPC

This commit is contained in:
Jules Bertholet 2022-11-07 13:19:05 -05:00
parent 7c02ee9f51
commit 276b26e447
No known key found for this signature in database
GPG Key ID: 32034DAFC38C1BFC
2 changed files with 4 additions and 0 deletions

View File

@ -25,6 +25,8 @@ pub fn rint(x: f64) -> f64 {
}
}
// PowerPC tests are failing on LLVM 13: https://github.com/rust-lang/rust/issues/88520
#[cfg(not(target_arch = "powerpc64"))]
#[cfg(test)]
mod tests {
use super::rint;

View File

@ -25,6 +25,8 @@ pub fn rintf(x: f32) -> f32 {
}
}
// PowerPC tests are failing on LLVM 13: https://github.com/rust-lang/rust/issues/88520
#[cfg(not(target_arch = "powerpc64"))]
#[cfg(test)]
mod tests {
use super::rintf;