Disable tests on PowerPC
This commit is contained in:
parent
7c02ee9f51
commit
276b26e447
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user