Disable tests on PowerPC
This commit is contained in:
parent
292221cf4c
commit
83524d4aa2
2 changed files with 4 additions and 0 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue