about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorFelix S. Klock II <pnkfelix@pnkfx.org>2019-10-04 16:43:32 +0200
committerFelix S. Klock II <pnkfelix@pnkfx.org>2019-10-04 16:43:32 +0200
commit08ec3fef571d3dcfbec2f8b7de1cee78ee05554d (patch)
tree9dfb452317a427a8ba428d3acb2ae356ee3b2a09 /src
parent71e5f7893490d3fa4f9e55ebf5a13cffc2bb1607 (diff)
downloadrust-08ec3fef571d3dcfbec2f8b7de1cee78ee05554d.tar.gz
rust-08ec3fef571d3dcfbec2f8b7de1cee78ee05554d.zip
dont run these tests on targets that default to panic=abort.
Diffstat (limited to 'src')
-rw-r--r--src/test/ui/extern/issue-64655-allow-unwind-when-calling-panic-directly.rs1
-rw-r--r--src/test/ui/extern/issue-64655-extern-rust-must-allow-unwind.rs1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/test/ui/extern/issue-64655-allow-unwind-when-calling-panic-directly.rs b/src/test/ui/extern/issue-64655-allow-unwind-when-calling-panic-directly.rs
index 63e373e5b59..c941d36479e 100644
--- a/src/test/ui/extern/issue-64655-allow-unwind-when-calling-panic-directly.rs
+++ b/src/test/ui/extern/issue-64655-allow-unwind-when-calling-panic-directly.rs
@@ -1,4 +1,5 @@
 // run-pass
+// ignore-wasm32-bare compiled with panic=abort by default
 
 // rust-lang/rust#64655: with panic=unwind, a panic from a subroutine
 // should still run destructors as it unwinds the stack. However,
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 4d521e47039..a6666d66ce5 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,4 +1,5 @@
 // run-pass
+// ignore-wasm32-bare compiled with panic=abort by default
 
 // rust-lang/rust#64655: with panic=unwind, a panic from a subroutine
 // should still run destructors as it unwinds the stack. However,