Skip to content

Commit 9257e89

Browse files
committed
Auto merge of #31541 - tomaka:more-emscripten, r=brson
r? @brson
2 parents 77f9231 + 974ba28 commit 9257e89

6 files changed

+10
-2
lines changed

src/test/run-pass/allocator-default.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010

1111
#![feature(alloc_jemalloc, alloc_system)]
1212

13-
#[cfg(not(any(windows, target_os = "bitrig", target_os = "openbsd")))]
13+
#[cfg(not(any(windows, target_os = "bitrig", target_os = "openbsd", target_os="emscripten")))]
1414
extern crate alloc_jemalloc;
15-
#[cfg(any(windows, target_os = "bitrig", target_os = "openbsd"))]
15+
#[cfg(any(windows, target_os = "bitrig", target_os = "openbsd", target_os="emscripten"))]
1616
extern crate alloc_system;
1717

1818
fn main() {

src/test/run-pass/allocator-jemalloc.rs

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// ignore-windows no jemalloc on windows
1313
// ignore-bitrig no jemalloc on bitrig
1414
// ignore-openbsd no jemalloc on openbsd
15+
// ignore-emscripten no jemalloc on emscripten
1516

1617
#![feature(alloc_jemalloc)]
1718

src/test/run-pass/asm-concat-src.rs

+2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
// except according to those terms.
1010

1111
// pretty-expanded FIXME #23616
12+
// ignore-asmjs
1213

1314
#![feature(asm)]
1415

1516
pub fn main() {
1617
unsafe { asm!(concat!("", "")) };
1718
}
19+

src/test/run-pass/conditional-compile-arch.rs

+3
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,6 @@ pub fn main() { }
2424

2525
#[cfg(target_arch = "powerpc64")]
2626
pub fn main() { }
27+
28+
#[cfg(target_arch = "asmjs")]
29+
pub fn main() { }

src/test/run-pass/env-funky-keys.rs

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
// ignore-android
1414
// ignore-windows
15+
// ignore-emscripten
1516
// no-prefer-dynamic
1617

1718
#![feature(convert)]

src/test/run-pass/out-of-stack.rs

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
// ignore-android: FIXME (#20004)
1212
// ignore-musl
13+
// ignore-asmjs
1314

1415
#![feature(asm)]
1516
#![feature(libc)]

0 commit comments

Comments
 (0)