Skip to content

Commit 5c74fb1

Browse files
committed
Enable 128-bit integer tests on Windows
Closes #158
1 parent acaa2f0 commit 5c74fb1

File tree

5 files changed

+5
-10
lines changed

5 files changed

+5
-10
lines changed

tests/divti3.rs

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

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

tests/modti3.rs

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

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

tests/udivmodti4.rs

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

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

tests/udivti3.rs

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

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

tests/umodti3.rs

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

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

0 commit comments

Comments
 (0)