From: Jorge Aparicio Date: Fri, 21 Sep 2018 21:40:00 +0000 (+0200) Subject: the test requires unwinding so we don't run it on the wasm32-bare target X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=d266722a59711502aa29af659387b5b035b90151;p=rust.git the test requires unwinding so we don't run it on the wasm32-bare target --- diff --git a/src/test/run-pass/panic-uninitialized-zeroed.rs b/src/test/run-pass/panic-uninitialized-zeroed.rs index f40ea7cce07..0108a02e88a 100644 --- a/src/test/run-pass/panic-uninitialized-zeroed.rs +++ b/src/test/run-pass/panic-uninitialized-zeroed.rs @@ -8,6 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +// ignore-wasm32-bare always compiled as panic=abort right now and this requires unwinding // This test checks that instantiating an uninhabited type via `mem::{uninitialized,zeroed}` results // in a runtime panic.