Skip to content

Commit c52f9a0

Browse files
author
Jorge Aparicio
committed
ignore i128 tests on windows
see #158
1 parent 63f91a0 commit c52f9a0

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

tests/divti3.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@
66
test), no_std)]
77

88
// FIXME(#137)
9-
#[cfg(not(target_arch = "mips"))]
9+
// FIXME(#158)
10+
#[cfg(not(any(target_arch = "mips"), windows))]
1011
include!(concat!(env!("OUT_DIR"), "/divti3.rs"));

tests/modti3.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@
66
test), no_std)]
77

88
// FIXME(#137)
9-
#[cfg(not(target_arch = "mips"))]
9+
// FIXME(#158)
10+
#[cfg(not(any(target_arch = "mips"), windows))]
1011
include!(concat!(env!("OUT_DIR"), "/modti3.rs"));

tests/udivmodti4.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@
66
test), no_std)]
77

88
// FIXME(#137)
9-
#[cfg(not(target_arch = "mips"))]
9+
// FIXME(#158)
10+
#[cfg(not(any(target_arch = "mips"), windows))]
1011
include!(concat!(env!("OUT_DIR"), "/udivmodti4.rs"));

tests/udivti3.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@
66
test), no_std)]
77

88
// FIXME(#137)
9-
#[cfg(not(target_arch = "mips"))]
9+
// FIXME(#158)
10+
#[cfg(not(any(target_arch = "mips"), windows))]
1011
include!(concat!(env!("OUT_DIR"), "/udivti3.rs"));

tests/umodti3.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@
66
test), no_std)]
77

88
// FIXME(#137)
9-
#[cfg(not(target_arch = "mips"))]
9+
// FIXME(#158)
10+
#[cfg(not(any(target_arch = "mips"), windows))]
1011
include!(concat!(env!("OUT_DIR"), "/umodti3.rs"));

0 commit comments

Comments
 (0)