about summary refs log tree commit diff
path: root/src/test/ui/binding
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2019-10-18 14:47:54 -0700
committerThomas Lively <tlively@google.com>2019-10-25 15:16:36 -0700
commit62c3443e9659be2bf0ae53df1421c846ceaca904 (patch)
tree2cdc07eb2a3a03bbdbf296ab837ec4016a0b102d /src/test/ui/binding
parent23f890f10202a71168c6424da0cdf94135d3c40c (diff)
downloadrust-62c3443e9659be2bf0ae53df1421c846ceaca904.tar.gz
rust-62c3443e9659be2bf0ae53df1421c846ceaca904.zip
Re-enable Emscripten's exception handling support
Passes LLVM codegen and Emscripten link-time flags for exception
handling if and only if the panic strategy is `unwind`. Sets the
default panic strategy for Emscripten targets to `unwind`. Re-enables
tests that depend on unwinding support for Emscripten, including
`should_panic` tests.
Diffstat (limited to 'src/test/ui/binding')
-rw-r--r--src/test/ui/binding/fn-arg-incomplete-pattern-drop-order.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ui/binding/fn-arg-incomplete-pattern-drop-order.rs b/src/test/ui/binding/fn-arg-incomplete-pattern-drop-order.rs
index 4e0a238c5d4..ea4a9e5afa5 100644
--- a/src/test/ui/binding/fn-arg-incomplete-pattern-drop-order.rs
+++ b/src/test/ui/binding/fn-arg-incomplete-pattern-drop-order.rs
@@ -2,7 +2,7 @@
 // Check that partially moved from function parameters are dropped after the
 // named bindings that move from them.
 
-// ignore-emscripten compiled with panic=abort by default
+// ignore-wasm32-bare compiled with panic=abort by default
 
 use std::{panic, cell::RefCell};