Преглед изворни кода

ignore i128 div / mul tests on MIPS

there's an unfixed bug. See #137
Jorge Aparicio пре 8 година
родитељ
комит
33b17fd87b
6 измењених фајлова са 12 додато и 0 уклоњено
  1. 2 0
      tests/divti3.rs
  2. 2 0
      tests/modti3.rs
  3. 2 0
      tests/muloti4.rs
  4. 2 0
      tests/udivmodti4.rs
  5. 2 0
      tests/udivti3.rs
  6. 2 0
      tests/umodti3.rs

+ 2 - 0
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"));

+ 2 - 0
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"));

+ 2 - 0
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"));

+ 2 - 0
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"));

+ 2 - 0
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"));

+ 2 - 0
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"));