Enable historically segfaulting tests on MIPS

They seem to be passing locally so let's see what CI has to say.

Closes #137
master
Alex Crichton 2019-05-02 13:44:20 -07:00
parent 045de6e516
commit 77b1c7a881
1 changed files with 49 additions and 55 deletions

View File

@ -594,14 +594,12 @@ fn main() {
}");
gen(|(a, b): (MyI128, MyI128)| Some(a.0.wrapping_mul(b.0)),
"builtins::int::mul::__multi3(a, b)");
if !target_arch_mips { // FIXME(#137)
gen(|(a, b): (MyI128, MyI128)| Some(a.0.overflowing_mul(b.0)),
"{
let mut o = 2;
let c = builtins::int::mul::__muloti4(a, b, &mut o);
(c, match o { 0 => false, 1 => true, _ => panic!() })
}");
}
// int/sdiv.rs
gen(|(a, b): (MyI64, MyI64)| {
@ -658,7 +656,6 @@ fn main() {
}
},
"builtins::int::sdiv::__moddi3(a, b)");
if !target_arch_mips { // FIXME(#137)
gen(|(a, b): (MyI128, MyI128)| {
if b.0 == 0 {
None
@ -675,7 +672,6 @@ fn main() {
}
},
"builtins::int::sdiv::__modti3(a, b)");
}
// int/shift.rs
gen(|(a, b): (MyU64, MyU32)| Some(a.0 << (b.0 % 64)),
@ -746,7 +742,6 @@ fn main() {
}
},
"builtins::int::udiv::__umoddi3(a, b)");
if !target_arch_mips { // FIXME(#137)
gen(|(a, b): (MyU128, MyU128)| {
if b.0 == 0 {
None
@ -775,7 +770,6 @@ fn main() {
(builtins::int::udiv::__udivmodti4(a, b, Some(&mut r)), r)
}");
}
}
macro_rules! gen_float {
($name:ident,