Skip to content

Commit

Permalink
ignore i128 div / mul tests on MIPS
Browse files Browse the repository at this point in the history
there's an unfixed bug. See #137
  • Loading branch information
Jorge Aparicio committed Apr 11, 2017
1 parent adb4e5c commit 33b17fd
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/divti3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@
target_os = "linux",
test), no_std)]

// FIXME(#137)
#[cfg(not(target_arch = "mips"))]
include!(concat!(env!("OUT_DIR"), "/divti3.rs"));
2 changes: 2 additions & 0 deletions tests/modti3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@
target_os = "linux",
test), no_std)]

// FIXME(#137)
#[cfg(not(target_arch = "mips"))]
include!(concat!(env!("OUT_DIR"), "/modti3.rs"));
2 changes: 2 additions & 0 deletions tests/muloti4.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@
target_os = "linux",
test), no_std)]

// FIXME(#137)
#[cfg(not(target_arch = "mips"))]
include!(concat!(env!("OUT_DIR"), "/muloti4.rs"));
2 changes: 2 additions & 0 deletions tests/udivmodti4.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@
target_os = "linux",
test), no_std)]

// FIXME(#137)
#[cfg(not(target_arch = "mips"))]
include!(concat!(env!("OUT_DIR"), "/udivmodti4.rs"));
2 changes: 2 additions & 0 deletions tests/udivti3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@
target_os = "linux",
test), no_std)]

// FIXME(#137)
#[cfg(not(target_arch = "mips"))]
include!(concat!(env!("OUT_DIR"), "/udivti3.rs"));
2 changes: 2 additions & 0 deletions tests/umodti3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@
target_os = "linux",
test), no_std)]

// FIXME(#137)
#[cfg(not(target_arch = "mips"))]
include!(concat!(env!("OUT_DIR"), "/umodti3.rs"));

0 comments on commit 33b17fd

Please sign in to comment.