]> git.lizzy.rs Git - rust.git/commitdiff
Restore ignore tag
authorFlorian Bartels <Florian.Bartels@elektrobit.com>
Thu, 22 Sep 2022 12:25:10 +0000 (14:25 +0200)
committerFlorian Bartels <Florian.Bartels@elektrobit.com>
Fri, 23 Sep 2022 06:19:58 +0000 (08:19 +0200)
This test case actually requires std::process.

50 files changed:
src/test/ui/async-await/async-fn-size-moved-locals.rs
src/test/ui/async-await/issues/issue-65419/issue-65419-async-fn-resume-after-panic.rs
src/test/ui/binding/fn-arg-incomplete-pattern-drop-order.rs
src/test/ui/builtin-clone-unwind.rs
src/test/ui/catch-unwind-bang.rs
src/test/ui/cfg/cfg-panic.rs
src/test/ui/closures/2229_closure_analysis/migrations/mir_calls_to_shims.rs
src/test/ui/drop/dynamic-drop-async.rs
src/test/ui/drop/dynamic-drop.rs
src/test/ui/drop/repeat-drop.rs
src/test/ui/extern-flag/empty-extern-arg.rs
src/test/ui/extern/issue-64655-allow-unwind-when-calling-panic-directly.rs
src/test/ui/extern/issue-64655-extern-rust-must-allow-unwind.rs
src/test/ui/generator/panic-drops-resume.rs
src/test/ui/generator/panic-drops.rs
src/test/ui/generator/panic-safe.rs
src/test/ui/generator/resume-after-return.rs
src/test/ui/intrinsics/panic-uninitialized-zeroed.rs
src/test/ui/issues/issue-14875.rs
src/test/ui/issues/issue-29948.rs
src/test/ui/issues/issue-43853.rs
src/test/ui/issues/issue-46519.rs
src/test/ui/iterators/iter-count-overflow-debug.rs
src/test/ui/iterators/iter-position-overflow-debug.rs
src/test/ui/iterators/iter-step-overflow-debug.rs
src/test/ui/iterators/iter-sum-overflow-debug.rs
src/test/ui/iterators/iter-sum-overflow-overflow-checks.rs
src/test/ui/macros/macro-comma-behavior-rpass.rs
src/test/ui/mir/mir_calls_to_shims.rs
src/test/ui/mir/mir_codegen_calls_diverging_drops.rs
src/test/ui/mir/mir_drop_order.rs
src/test/ui/mir/mir_drop_panics.rs
src/test/ui/mir/mir_let_chains_drop_order.rs
src/test/ui/numbers-arithmetic/next-power-of-two-overflow-debug.rs
src/test/ui/panic-handler/weak-lang-item.rs
src/test/ui/panic-runtime/need-abort-got-unwind.rs
src/test/ui/panic-runtime/transitive-link-a-bunch.rs
src/test/ui/panic-runtime/want-unwind-got-abort.rs
src/test/ui/panic-runtime/want-unwind-got-abort2.rs
src/test/ui/panic-while-printing.rs
src/test/ui/privacy/reachable-unnameable-items.rs
src/test/ui/proc-macro/expand-with-a-macro.rs
src/test/ui/rfc-1937-termination-trait/termination-trait-in-test.rs
src/test/ui/rfc-2091-track-caller/std-panic-locations.rs
src/test/ui/rfcs/rfc1857-drop-order.rs
src/test/ui/runtime/rt-explody-panic-payloads.rs
src/test/ui/test-attrs/test-panic-while-printing.rs
src/test/ui/test-attrs/test-should-fail-good-message.rs
src/test/ui/unwind-abis/ffi-unwind-calls-lint.rs
src/test/ui/unwind-no-uwtable.rs

index 9e3794b0484e7f5c4f24daa8b3148eb9baa758bd..79b7239f3590db932c56bafc50c88fed0202396c 100644 (file)
@@ -7,7 +7,6 @@
 //
 // See issue #59123 for a full explanation.
 
-// ignore-emscripten (sizes don't match)
 // needs-unwind Size of Futures change on panic=abort
 // run-pass
 
index 5e71229beb5f9d91ba078d0bca010416db4b2f5a..b4ea4c9f68664c693f6a8adee73003e487035805 100644 (file)
@@ -6,7 +6,6 @@
 // error-pattern: thread 'main' panicked at '`async fn` resumed after panicking'
 // edition:2018
 // ignore-wasm no panic or subprocess support
-// ignore-emscripten no panic or subprocess support
 
 #![feature(generators, generator_trait)]
 
index 684172ca61cca9259af30c3eb490c7850eccf8ce..0450fe8abbd1476043e6bb08fd40b6ac40f6c156 100644 (file)
@@ -3,7 +3,6 @@
 // Check that partially moved from function parameters are dropped after the
 // named bindings that move from them.
 
-// ignore-wasm32-bare compiled with panic=abort by default
 
 use std::{panic, cell::RefCell};
 
index 3623c4a4dd05d8fce605726558c5da69d49855d8..16add6ff2f68fdc7f39f7d7c969bf233695be64b 100644 (file)
@@ -3,7 +3,6 @@
 
 #![allow(unused_variables)]
 #![allow(unused_imports)]
-// ignore-wasm32-bare compiled with panic=abort by default
 
 // Test that builtin implementations of `Clone` cleanup everything
 // in case of unwinding.
index b31b5cab5b724aeaffb98b13f376ca6dbde1cad4..fb3503937cb54a0fa62605f8bdc78225bde8edb8 100644 (file)
@@ -1,6 +1,5 @@
 // run-pass
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 
 fn worker() -> ! {
     panic!()
index fb3e5059c8199b68c7db516ede49671ba8dfbbc1..2de72d54a481a97701b5b9d6f32c3bc03712f174 100644 (file)
@@ -1,9 +1,6 @@
 // build-pass
 // compile-flags: -C panic=unwind
 // needs-unwind
-// ignore-emscripten no panic_unwind implementation
-// ignore-wasm32     no panic_unwind implementation
-// ignore-wasm64     no panic_unwind implementation
 
 
 #[cfg(panic = "abort")]
index 6b0b10521740e6dbb1c2ee6c8b62922defa8776d..52e96d013a265f05f0d3992ffc3f5f07462a76bb 100644 (file)
@@ -3,7 +3,6 @@
 
 #![deny(rust_2021_incompatible_closure_captures)]
 //~^ NOTE: the lint level is defined here
-// ignore-wasm32-bare compiled with panic=abort by default
 #![feature(fn_traits)]
 #![feature(never_type)]
 
index 13bd71ecb3389977adc7786579916a2e200f790c..8f1cc6691cd8d3f369edbf74e96d8f68e16a2340 100644 (file)
@@ -6,7 +6,6 @@
 // run-pass
 // needs-unwind
 // edition:2018
-// ignore-wasm32-bare compiled with panic=abort by default
 
 #![allow(unused)]
 
index e70686774233742021991c2c67c761731fa43787..9e51d3adaaa68c815026821ef67527985c78cf91 100644 (file)
@@ -1,6 +1,5 @@
 // run-pass
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 
 #![feature(generators, generator_trait)]
 
index a43612e5d8587f0afc1ea5d4770686517dbd2b42..8fd46ecaf442013f4ddc4938579e63709b6195fe 100644 (file)
@@ -1,8 +1,5 @@
 // run-pass
 // needs-unwind
-// ignore-wasm32-bare no unwinding panic
-// ignore-avr no unwinding panic
-// ignore-nvptx64 no unwinding panic
 
 static mut CHECK: usize = 0;
 
index 3170537b0e0a088f61916102199d1b5b27c86526..a371afb128cab4d535f897ddf77810fe2604323b 100644 (file)
@@ -1,6 +1,5 @@
 // compile-flags: --extern std=
 // error-pattern: extern location for std does not exist
 // needs-unwind since it affects the error output
-// ignore-emscripten compiled with panic=abort, personality not required
 
 fn main() {}
index 7a91cbdc2f5d4f3773103cc7e72986d01f9dba81..233120c92f38b611823d29696ede53264d8ae4db 100644 (file)
@@ -1,6 +1,5 @@
 // run-pass
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 // ignore-emscripten no threads support
 
 // rust-lang/rust#64655: with panic=unwind, a panic from a subroutine
index e84ff41b344a776de2bf9dbc84a2414ca41333b3..3b263e58cbe84886a8193dee06ad6c62f77898f8 100644 (file)
@@ -1,6 +1,5 @@
 // run-pass
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 // ignore-emscripten no threads support
 
 // rust-lang/rust#64655: with panic=unwind, a panic from a subroutine
index 8d8eb6a97b15a25812dd73e41a94708ba5813d61..4c3caeb14d67e1ed95d6f88d6e5e81def7726568 100644 (file)
@@ -2,8 +2,6 @@
 
 // run-pass
 // needs-unwind
-// ignore-wasm       no unwind support
-// ignore-emscripten no unwind support
 
 #![feature(generators, generator_trait)]
 
index a9de4e7fc7d2526168303531e1ff44f0da7d660b..65001fd879bb05f05134da385c071df53204d1d9 100644 (file)
@@ -1,7 +1,6 @@
 // run-pass
 // needs-unwind
 
-// ignore-wasm32-bare compiled with panic=abort by default
 
 #![feature(generators, generator_trait)]
 
index 14a0c8dbaf1daff7f9d68f46c88cdbae8c2c55da..3db80bb58215124268b52b7108d14e31a0b4cdf6 100644 (file)
@@ -1,7 +1,6 @@
 // run-pass
 // needs-unwind
 
-// ignore-wasm32-bare compiled with panic=abort by default
 
 #![feature(generators, generator_trait)]
 
index 538609b981adf5a965712c6ec12ef2d99f79783b..01a059a161cea8c0594b12911166a3eb627562c0 100644 (file)
@@ -1,7 +1,6 @@
 // run-pass
 // needs-unwind
 
-// ignore-wasm32-bare compiled with panic=abort by default
 
 #![feature(generators, generator_trait)]
 
index 255151a96032c016eccb4305c614925306e1b79b..4aa869cca35bef905640895af2e8043ec72e1e8f 100644 (file)
@@ -1,6 +1,5 @@
 // run-pass
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 // revisions: mir thir strict
 // [thir]compile-flags: -Zthir-unsafeck
 // [strict]compile-flags: -Zstrict-init-checks
index aaef2aab9fc7699f91a70b09fcef881117532823..fca3309155d5443ed2ec85d5a0bbf2e5ea0de3f5 100644 (file)
@@ -1,6 +1,5 @@
 // run-pass
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 
 // Check that values are not leaked when a dtor panics (#14875)
 
index 01c3ec64861fec9358462faa9a31a09d07cdcabe..3ed701480b5ed1dff87484cfe43092dd216f0871 100644 (file)
@@ -1,6 +1,5 @@
 // run-pass
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 
 use std::panic;
 
index 3162c091c8786f22831f8846becf29cfaf2a0618..dd42c1e3cb83134353d4c1f192dfea8ddedf82fd 100644 (file)
@@ -1,6 +1,5 @@
 // run-pass
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 
 use std::panic;
 
index 9bd3c0948517bf9f379d66849f572ca84f06e333..0567923b7fc6985169fcd3afdd24454e7713b93e 100644 (file)
@@ -2,7 +2,6 @@
 // compile-flags:--test -O
 
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 
 #[test]
 #[should_panic(expected = "creating inhabited type")]
index 15f25f1ca53733febd6cc6dd3c786da49fb5dbd9..8e59c11e9dccbfce04bbe8f6142e02467ea66b0a 100644 (file)
@@ -1,7 +1,6 @@
 // run-pass
 // only-32bit too impatient for 2⁶⁴ items
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 // compile-flags: -C debug_assertions=yes -C opt-level=3
 
 use std::panic;
index 65124c282412c7de182ceaaf41f931f7eb2dc86e..7a871e744c9844fbe3d017213dd41399d1e96f7f 100644 (file)
@@ -1,7 +1,6 @@
 // run-pass
 // only-32bit too impatient for 2⁶⁴ items
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 // compile-flags: -C debug_assertions=yes -C opt-level=3
 
 use std::panic;
index e16f984de79a6627e3589c3f13705ee48d374321..6aa349ebed29b7bc66b908af0b70bc2ac7ec7686 100644 (file)
@@ -1,6 +1,5 @@
 // run-pass
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 // compile-flags: -C debug_assertions=yes
 
 use std::panic;
index d8ce43848a77ea511b484c59bba8f731ffb29579..24c764ff95873b2c143f91add418ae633bb75d17 100644 (file)
@@ -1,6 +1,5 @@
 // run-pass
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 // compile-flags: -C debug_assertions=yes
 
 use std::panic;
index bc8dcbdbb0e03d1b8f5e570eda3892fa89d4c1c9..be45c075d7331d2ddab5e28e9e944c568498a82a 100644 (file)
@@ -1,6 +1,5 @@
 // run-pass
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 // compile-flags: -C overflow-checks
 
 use std::panic;
index dfd58b25d089d83a4681e8488791446a529264e0..8406b4e78f6bee748d4ac503b5b1325618ff8391 100644 (file)
@@ -14,7 +14,6 @@
 // compile-flags: --test -C debug_assertions=yes
 // revisions: std core
 
-// ignore-wasm32-bare compiled with panic=abort by default
 #![cfg_attr(core, no_std)]
 
 #[cfg(core)]
index 42eaab77da9f1ea789088b350b8f314ffd450cf5..9dc0acfbfda48f81fa6ddd59efa9620a7f33b665 100644 (file)
@@ -1,6 +1,5 @@
 // run-pass
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 
 #![feature(fn_traits)]
 #![feature(never_type)]
index 3d215610593f305c3de45af412cd71a7de1b284d..19dba497001cc38a10929f2a9bc577591abd2754 100644 (file)
@@ -1,7 +1,6 @@
 // run-fail
 // error-pattern:diverging_fn called
 // error-pattern:0 dropped
-// ignore-emscripten no processes
 // needs-unwind this test checks that a destructor is called after panicking
 
 struct Droppable(u8);
index 853efb0fed2b9aec13cfeaa421d1f80753199b13..75f5b171af352e0de4f524dd0e549911e4bd7b93 100644 (file)
@@ -1,6 +1,5 @@
 // run-pass
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 
 use std::cell::RefCell;
 use std::panic;
index b4093d704150aa5ce564813eb3ed55d1f9791a75..0d00426d6d2d5fa7165a2cca65069bf9c9370212 100644 (file)
@@ -2,7 +2,6 @@
 // needs-unwind
 // error-pattern:panic 1
 // error-pattern:drop 2
-// ignore-emscripten no processes
 
 struct Droppable(u32);
 impl Drop for Droppable {
index 6498a5195719493dea0b0b46241c39d744f7c4ab..536a84a352a498cc3d95d2d54d5734424ebf428c 100644 (file)
@@ -1,6 +1,5 @@
 // run-pass
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 
 // See `mir_drop_order.rs` for more information
 
index f857d4f4c7f2725e868d9b702825785724976ff2..79d78da3328a9be7205827116daf96fbf2b29fc6 100644 (file)
@@ -1,7 +1,6 @@
 // run-pass
 // compile-flags: -C debug_assertions=yes
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 // ignore-emscripten dies with an LLVM error
 
 use std::panic;
index df31e614cf809be8d815908cd1393a562712479d..aef5e1b2c1c7a842068b2bcb8d9654fee91af6f2 100644 (file)
@@ -2,7 +2,6 @@
 // error-pattern: `#[panic_handler]` function required, but not found
 // error-pattern: language item required, but not found: `eh_personality`
 // needs-unwind since it affects the error output
-// ignore-emscripten compiled with panic=abort, personality not required
 
 #![no_std]
 
index c72fb96e357f0a33242e2d861a8deb1e9d53b080..e92400931d231d0f8f9b9711f8f31dea2b6322ab 100644 (file)
@@ -2,7 +2,6 @@
 // needs-unwind
 // error-pattern:is incompatible with this crate's strategy of `unwind`
 // aux-build:needs-abort.rs
-// ignore-wasm32-bare compiled with panic=abort by default
 
 extern crate needs_abort;
 
index 622535a75aff6e5eb25b766a64bac7b6a0dd11d3..0e74e300f00f09d57b7954be7c5f3c6d593d79d2 100644 (file)
@@ -6,7 +6,6 @@
 // aux-build:wants-panic-runtime-abort.rs
 // aux-build:panic-runtime-lang-items.rs
 // error-pattern: is not compiled with this crate's panic strategy `unwind`
-// ignore-wasm32-bare compiled with panic=abort by default
 
 #![no_std]
 #![no_main]
index 23bfea6af15c1c99d123c200df5178d204bb6083..b6174dc4efee87f8d8941279f5d297a627e77152 100644 (file)
@@ -3,7 +3,6 @@
 // error-pattern:is not compiled with this crate's panic strategy `unwind`
 // aux-build:panic-runtime-abort.rs
 // aux-build:panic-runtime-lang-items.rs
-// ignore-wasm32-bare compiled with panic=abort by default
 
 #![no_std]
 #![no_main]
index 7a2e48e2f10a960b6f0d56e6af99f19cbb7ef06c..b54babbeffa32aee5c0a739ea9a9240b529c345b 100644 (file)
@@ -4,7 +4,6 @@
 // aux-build:panic-runtime-abort.rs
 // aux-build:wants-panic-runtime-abort.rs
 // aux-build:panic-runtime-lang-items.rs
-// ignore-wasm32-bare compiled with panic=abort by default
 
 #![no_std]
 #![no_main]
index 098f54ac23f6afbdd37159a7356428554970f2d3..3abedf2a764e2a9de352840bae2e500b73c2b25e 100644 (file)
@@ -1,6 +1,5 @@
 // run-pass
 // needs-unwind
-// ignore-emscripten no subprocess support
 
 #![feature(internal_output_capture)]
 
index 1c91541e642293c1faa197b8c46022332c808f3a..1babe011996b027324b3b7ee71fce91ead03e457 100644 (file)
@@ -1,5 +1,4 @@
 // run-pass
-// ignore-wasm32-bare compiled with panic=abort by default
 // needs-unwind
 // aux-build:reachable-unnameable-items.rs
 
index 21a4547d11e1c8af93557ca6478b4adc2dbdc83b..042a283659517791b3ac18a25c236e7fd1363ff5 100644 (file)
@@ -2,7 +2,6 @@
 // needs-unwind
 // aux-build:expand-with-a-macro.rs
 
-// ignore-wasm32-bare compiled with panic=abort by default
 
 #![deny(warnings)]
 
index cd57d9bca9429bfee6073d188e96d60781720349..43888cecedab339fc2322b6216670f6c888d053b 100644 (file)
@@ -2,7 +2,6 @@
 // run-pass
 // needs-unwind
 
-// ignore-wasm32-bare compiled with panic=abort by default
 
 #![feature(test)]
 
index b067994a5c6d8febde5cd9d9a3e17065efd0c8ee..f11456250d8742691a0a2bfae5ce207961839aa1 100644 (file)
@@ -1,6 +1,5 @@
 // run-pass
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 // revisions: default mir-opt
 //[mir-opt] compile-flags: -Zmir-opt-level=4
 
index 243b7fb6fadec6729060c1de5093a9f71edc5815..4c4816c2fbc8df8422d7e0a068a848394877eac0 100644 (file)
@@ -1,6 +1,5 @@
 // run-pass
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 
 #![allow(dead_code, unreachable_code)]
 
index eb5bf8f67a84976ce04eb880254f840f863b746d..e2221e5df8ea149c81330bbea8ff6a74e0a11234 100644 (file)
@@ -2,9 +2,6 @@
 // needs-unwind
 // ignore-emscripten no processes
 // ignore-sgx no processes
-// ignore-wasm32-bare no unwinding panic
-// ignore-avr no unwinding panic
-// ignore-nvptx64 no unwinding panic
 
 use std::env;
 use std::process::Command;
index 01e460da5ab57ff938c089031b57aeb78530232f..033c8beb475dfca5243995af6668a53e19779c43 100644 (file)
@@ -1,7 +1,6 @@
 // compile-flags:--test
 // run-pass
 // needs-unwind
-// ignore-emscripten no subprocess support
 
 use std::fmt;
 use std::fmt::{Display, Formatter};
index 3260b6938f07db0de3dc234c7be29f106c584165..83519c4524a62145d06105023039b43f2666727c 100644 (file)
@@ -1,6 +1,5 @@
 // run-pass
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 // compile-flags: --test
 #[test]
 #[should_panic(expected = "foo")]
index dadf4b1218784bc04fd5fbe65a6a2d213954aa42..9a324f00435c714c6e5b7e758a31368b9ecbd041 100644 (file)
@@ -1,6 +1,5 @@
 // build-pass
 // needs-unwind
-// ignore-wasm32-bare compiled with panic=abort by default
 
 #![feature(c_unwind)]
 #![warn(ffi_unwind_calls)]
index 0440cf488e8bb67374df02f075b9658dc1222f37..3bc309233a7ac03dd26d16b90ba933b15e9c3f52 100644 (file)
@@ -1,7 +1,6 @@
 // run-pass
 // needs-unwind
 // ignore-windows target requires uwtable
-// ignore-wasm32-bare no proper panic=unwind support
 // compile-flags: -C panic=unwind -C force-unwind-tables=n
 
 use std::panic::{self, AssertUnwindSafe};