From 63d67fa273f6b4409623b1dc9517ee5aade18cd2 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Fri, 11 Oct 2019 09:57:44 +0200 Subject: [PATCH] ignore-emcscripten as it does not support threads --- src/test/ui/extern/issue-64655-extern-rust-must-allow-unwind.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/ui/extern/issue-64655-extern-rust-must-allow-unwind.rs b/src/test/ui/extern/issue-64655-extern-rust-must-allow-unwind.rs index a6666d66ce57..bc15fcb0e399 100644 --- a/src/test/ui/extern/issue-64655-extern-rust-must-allow-unwind.rs +++ b/src/test/ui/extern/issue-64655-extern-rust-must-allow-unwind.rs @@ -1,5 +1,6 @@ // run-pass // ignore-wasm32-bare compiled with panic=abort by default +// ignore-emscripten no threads support // rust-lang/rust#64655: with panic=unwind, a panic from a subroutine // should still run destructors as it unwinds the stack. However,