diff --git a/tests/divti3.rs b/tests/divti3.rs index 62d9789..7919f8f 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 1a363f7..62129cd 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 262b464..358c57e 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 1f9ed27..8185ec0 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 fc602fd..cefddda 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 63a0bf2..57e651b 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"));