Skip to content

Commit 9a164ff

Browse files
committed
Skip tests on emscripten
1 parent 82cb88b commit 9a164ff

File tree

114 files changed

+118
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+118
-0
lines changed

src/test/ui/array-slice-vec/bounds-check-no-overflow.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// run-fail
22
// error-pattern:index out of bounds
3+
// ignore-emscripten no processes
34

45
use std::usize;
56
use std::mem::size_of;

src/test/ui/array-slice-vec/dst-raw-slice.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
// run-fail
44
// error-pattern:index out of bounds
5+
// ignore-emscripten no processes
6+
57
#[allow(unconditional_panic)]
68
fn main() {
79
let a: *const [_] = &[1, 2, 3];

src/test/ui/binop/binop-fail-3.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// run-fail
22
// error-pattern:quux
3+
// ignore-emscripten no processes
34

45
fn foo() -> ! {
56
panic!("quux");

src/test/ui/binop/binop-panic.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// run-fail
22
// error-pattern:quux
3+
// ignore-emscripten no processes
34

45
fn my_err(s: String) -> ! {
56
println!("{}", s);

src/test/ui/borrowck/borrowck-local-borrow.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// run-fail
22
// error-pattern:panic 1
3+
// ignore-emscripten no processes
34

45
// revisions: migrate mir
56
//[mir]compile-flags: -Z borrowck=mir

src/test/ui/closures/diverging-closure.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// run-fail
22
// error-pattern:oops
3+
// ignore-emscripten no processes
34

45
fn main() {
56
let func = || -> ! {

src/test/ui/consts/promoted_div_by_zero.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
// run-fail
44
// error-pattern: attempt to divide by zero
5+
// ignore-emscripten no processes
56

67
fn main() {
78
let x = &(1 / (1 - 1));

src/test/ui/fn/expr-fn-panic.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// run-fail
22
// error-pattern:explicit panic
3+
// ignore-emscripten no processes
34

45
fn f() -> ! {
56
panic!()

src/test/ui/generator/generator-resume-after-panic.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// run-fail
22
// error-pattern:generator resumed after panicking
3+
// ignore-emscripten no processes
34

45
// Test that we get the correct message for resuming a panicked generator.
56

src/test/ui/hashmap/hashmap-capacity-overflow.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// run-fail
22
// error-pattern:capacity overflow
3+
// ignore-emscripten no processes
34

45
use std::collections::hash_map::HashMap;
56
use std::usize;

0 commit comments

Comments
 (0)