diff --git a/tests/divti3.rs b/tests/divti3.rs index 62d9789d..7919f8fe 100644 --- a/tests/divti3.rs +++ b/tests/divti3.rs @@ -5,4 +5,6 @@ target_os = "linux", test), no_std)] +// FIXME(#137) +#[cfg(not(target_arch = "mips"))] include!(concat!(env!("OUT_DIR"), "/divti3.rs")); diff --git a/tests/modti3.rs b/tests/modti3.rs index 1a363f7c..62129cd0 100644 --- a/tests/modti3.rs +++ b/tests/modti3.rs @@ -5,4 +5,6 @@ target_os = "linux", test), no_std)] +// FIXME(#137) +#[cfg(not(target_arch = "mips"))] include!(concat!(env!("OUT_DIR"), "/modti3.rs")); diff --git a/tests/muloti4.rs b/tests/muloti4.rs index 262b4646..358c57ec 100644 --- a/tests/muloti4.rs +++ b/tests/muloti4.rs @@ -5,4 +5,6 @@ target_os = "linux", test), no_std)] +// FIXME(#137) +#[cfg(not(target_arch = "mips"))] include!(concat!(env!("OUT_DIR"), "/muloti4.rs")); diff --git a/tests/udivmodti4.rs b/tests/udivmodti4.rs index 1f9ed279..8185ec0e 100644 --- a/tests/udivmodti4.rs +++ b/tests/udivmodti4.rs @@ -5,4 +5,6 @@ target_os = "linux", test), no_std)] +// FIXME(#137) +#[cfg(not(target_arch = "mips"))] include!(concat!(env!("OUT_DIR"), "/udivmodti4.rs")); diff --git a/tests/udivti3.rs b/tests/udivti3.rs index fc602fd2..cefddda8 100644 --- a/tests/udivti3.rs +++ b/tests/udivti3.rs @@ -5,4 +5,6 @@ target_os = "linux", test), no_std)] +// FIXME(#137) +#[cfg(not(target_arch = "mips"))] include!(concat!(env!("OUT_DIR"), "/udivti3.rs")); diff --git a/tests/umodti3.rs b/tests/umodti3.rs index 63a0bf28..57e651b2 100644 --- a/tests/umodti3.rs +++ b/tests/umodti3.rs @@ -5,4 +5,6 @@ target_os = "linux", test), no_std)] +// FIXME(#137) +#[cfg(not(target_arch = "mips"))] include!(concat!(env!("OUT_DIR"), "/umodti3.rs"));