about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorJonas Schievink <jonasschievink@gmail.com>2020-02-06 14:59:51 +0100
committerJonas Schievink <jonasschievink@gmail.com>2020-02-06 15:00:36 +0100
commit9d7b214ac6cb50a1b5454e0ae904a6479b54261c (patch)
treec2500fc0b2e03b0d44b696dc67e75e8cdddc600d /src/test
parent732913afcbc37a061dfdc3097cbdc90823386c11 (diff)
downloadrust-9d7b214ac6cb50a1b5454e0ae904a6479b54261c.tar.gz
rust-9d7b214ac6cb50a1b5454e0ae904a6479b54261c.zip
Ignore panic-drops-resume.rs on wasm/emscripten
It does not have unwinding support
Diffstat (limited to 'src/test')
-rw-r--r--src/test/ui/generator/panic-drops-resume.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/ui/generator/panic-drops-resume.rs b/src/test/ui/generator/panic-drops-resume.rs
index 4a482d3f6df..29f4788b275 100644
--- a/src/test/ui/generator/panic-drops-resume.rs
+++ b/src/test/ui/generator/panic-drops-resume.rs
@@ -1,6 +1,8 @@
 //! Tests that panics inside a generator will correctly drop the initial resume argument.
 
 // run-pass
+// ignore-wasm       no unwind support
+// ignore-emscripten no unwind support
 
 #![feature(generators, generator_trait)]