Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 86f7e9b

Browse files
committedMar 25, 2024·
Add needs-unwind for proc macro tests
Rustc gives a warning when compiling proc macros with panic=abort.
1 parent 3733dcc commit 86f7e9b

8 files changed

+8
-10
lines changed
 

‎compiler/rustc_codegen_cranelift/scripts/test_rustc_tests.sh

-9
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,6 @@ rm tests/ui/parser/unclosed-delimiter-in-dep.rs # submodule contains //~ERROR
4141
# missing features
4242
# ================
4343

44-
# extra warning about -Cpanic=abort for proc macros
45-
rm tests/ui/proc-macro/crt-static.rs
46-
rm tests/ui/proc-macro/proc-macro-deprecated-attr.rs
47-
rm tests/ui/proc-macro/quote-debug.rs
48-
rm tests/ui/proc-macro/no-missing-docs.rs
49-
rm tests/ui/rust-2018/proc-macro-crate-in-paths.rs
50-
rm tests/ui/proc-macro/allowed-signatures.rs
51-
rm tests/ui/proc-macro/no-mangle-in-proc-macro-issue-111888.rs
52-
5344
# vendor intrinsics
5445
rm tests/ui/simd/array-type.rs # "Index argument for `simd_insert` is not a constant"
5546
rm tests/ui/asm/x86_64/evex512-implicit-feature.rs # unimplemented AVX512 x86 vendor intrinsic

‎tests/ui/proc-macro/allowed-signatures.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
//@ check-pass
22
//@ force-host
33
//@ no-prefer-dynamic
4+
//@ needs-unwind compiling proc macros with panic=abort causes a warning
45

56
#![crate_type = "proc-macro"]
67
#![allow(private_interfaces)]
@@ -9,7 +10,7 @@ use proc_macro::TokenStream;
910

1011
#[proc_macro]
1112
pub fn foo<T>(t: T) -> TokenStream {
12-
TokenStream::new()
13+
TokenStream::new()
1314
}
1415

1516
trait Project {

‎tests/ui/proc-macro/crt-static.rs

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
//@ force-host
88
//@ no-prefer-dynamic
99
//@ needs-dynamic-linking
10+
//@ needs-unwind compiling proc macros with panic=abort causes a warning
1011

1112
#![crate_type = "proc-macro"]
1213

‎tests/ui/proc-macro/no-mangle-in-proc-macro-issue-111888.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
//@ build-pass
22
//@ force-host
33
//@ no-prefer-dynamic
4+
//@ needs-unwind compiling proc macros with panic=abort causes a warning
45
//@ aux-build:exports_no_mangle.rs
56
#![crate_type = "proc-macro"]
67

‎tests/ui/proc-macro/no-missing-docs.rs

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
//@ build-pass (FIXME(62277): could be check-pass?)
55
//@ force-host
66
//@ no-prefer-dynamic
7+
//@ needs-unwind compiling proc macros with panic=abort causes a warning
78

89
#![crate_type = "proc-macro"]
910
#![deny(missing_docs)]

‎tests/ui/proc-macro/proc-macro-deprecated-attr.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
//@ check-pass
22
//@ force-host
33
//@ no-prefer-dynamic
4+
//@ needs-unwind compiling proc macros with panic=abort causes a warning
45

56
#![deny(deprecated)]
67

‎tests/ui/proc-macro/quote-debug.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
//@ force-host
33
//@ no-prefer-dynamic
44
//@ compile-flags: -Z unpretty=expanded
5+
//@ needs-unwind compiling proc macros with panic=abort causes a warning
56
//
67
// This file is not actually used as a proc-macro - instead,
78
// it's just used to show the output of the `quote!` macro

‎tests/ui/rust-2018/proc-macro-crate-in-paths.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
//@ build-pass (FIXME(62277): could be check-pass?)
22
//@ force-host
33
//@ no-prefer-dynamic
4+
//@ needs-unwind compiling proc macros with panic=abort causes a warning
45

56
#![crate_type = "proc-macro"]
67
#![deny(rust_2018_compatibility)]

0 commit comments

Comments
 (0)
Please sign in to comment.