Ignore some failing test on wasm32-unknown-emscripten

See #42629 and #42630.
This commit is contained in:
Marco A L Barbosa 2017-06-13 10:46:54 -03:00
parent 554f21bc02
commit 405adb6d0c
10 changed files with 18 additions and 2 deletions

View file

@ -9,7 +9,7 @@
// except according to those terms.
// pretty-expanded FIXME #23616
// ignore-asmjs
// ignore-emscripten
#![feature(asm)]

View file

@ -36,3 +36,6 @@ pub fn main() { }
#[cfg(target_arch = "asmjs")]
pub fn main() { }
#[cfg(target_arch = "wasm32")]
pub fn main() { }

View file

@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// ignore-wasm32 issue 42629
#[inline(never)]
fn foo(a: f32, b: f32) -> f32 {
a % b

View file

@ -10,7 +10,7 @@
// ignore-android: FIXME (#20004)
// ignore-musl
// ignore-asmjs
// ignore-emscripten
#![feature(asm)]
#![feature(libc)]