ignore i128 div / mul tests on MIPS

there's an unfixed bug. See #137
master
Jorge Aparicio 2017-04-11 11:24:33 -05:00
parent adb4e5c86f
commit 33b17fd87b
6 changed files with 12 additions and 0 deletions

View File

@ -5,4 +5,6 @@
target_os = "linux",
test), no_std)]
// FIXME(#137)
#[cfg(not(target_arch = "mips"))]
include!(concat!(env!("OUT_DIR"), "/divti3.rs"));

View File

@ -5,4 +5,6 @@
target_os = "linux",
test), no_std)]
// FIXME(#137)
#[cfg(not(target_arch = "mips"))]
include!(concat!(env!("OUT_DIR"), "/modti3.rs"));

View File

@ -5,4 +5,6 @@
target_os = "linux",
test), no_std)]
// FIXME(#137)
#[cfg(not(target_arch = "mips"))]
include!(concat!(env!("OUT_DIR"), "/muloti4.rs"));

View File

@ -5,4 +5,6 @@
target_os = "linux",
test), no_std)]
// FIXME(#137)
#[cfg(not(target_arch = "mips"))]
include!(concat!(env!("OUT_DIR"), "/udivmodti4.rs"));

View File

@ -5,4 +5,6 @@
target_os = "linux",
test), no_std)]
// FIXME(#137)
#[cfg(not(target_arch = "mips"))]
include!(concat!(env!("OUT_DIR"), "/udivti3.rs"));

View File

@ -5,4 +5,6 @@
target_os = "linux",
test), no_std)]
// FIXME(#137)
#[cfg(not(target_arch = "mips"))]
include!(concat!(env!("OUT_DIR"), "/umodti3.rs"));