summary refs log tree commit diff
path: root/src/test/ui/binding
diff options
context:
space:
mode:
authorTyler Mandry <tmandry@gmail.com>2019-10-29 12:01:38 -0700
committerGitHub <noreply@github.com>2019-10-29 12:01:38 -0700
commit8aa23125bb40f6949fcd2c4f48151c4d8a444419 (patch)
tree9078d6ef80abe9bd3f999b901bb8da7d0d8fc620 /src/test/ui/binding
parentc4960c26027b6556aa5a63bc4a2c5697cf904e75 (diff)
parent92c049be583a559430f17f3364c616fc92c059a1 (diff)
downloadrust-8aa23125bb40f6949fcd2c4f48151c4d8a444419.tar.gz
rust-8aa23125bb40f6949fcd2c4f48151c4d8a444419.zip
Rollup merge of #65832 - tlively:emscripten-exception-handling, r=alexcrichton
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.

r? @alexcrichton
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};