ignore i128 tests on windows

see #158
master
Jorge Aparicio 2017-04-11 15:08:52 -05:00
parent 63f91a0c31
commit c52f9a079f
5 changed files with 10 additions and 5 deletions

View File

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

View File

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

View File

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

View File

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

View File

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