about summary refs log tree commit diff
path: root/tests/ui/proc-macro/expand-expr.rs
diff options
context:
space:
mode:
authorMatthias Krüger <476013+matthiaskrgr@users.noreply.github.com>2025-09-26 18:11:15 +0200
committerGitHub <noreply@github.com>2025-09-26 18:11:15 +0200
commita91918f96b55c6f9322b50aba83ab303613da296 (patch)
tree7eb509d1bd8b622b34a748c14c406d734ed10e00 /tests/ui/proc-macro/expand-expr.rs
parent978c960ed628e55e6c9d261eb7f15d593c69688e (diff)
parenta535c7be5444fb6584eecc99f53e6cdb710ff70f (diff)
downloadrust-a91918f96b55c6f9322b50aba83ab303613da296.tar.gz
rust-a91918f96b55c6f9322b50aba83ab303613da296.zip
Rollup merge of #147058 - GuillaumeGomez:ignore-more-ui-tests, r=Kobzol
Ignore more failing ui tests for GCC backend

Needed for https://github.com/rust-lang/rust/pull/146414.

r? ``@Kobzol``
Diffstat (limited to 'tests/ui/proc-macro/expand-expr.rs')
-rw-r--r--tests/ui/proc-macro/expand-expr.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/ui/proc-macro/expand-expr.rs b/tests/ui/proc-macro/expand-expr.rs
index 8a4ed9768d5..1e058abe3bc 100644
--- a/tests/ui/proc-macro/expand-expr.rs
+++ b/tests/ui/proc-macro/expand-expr.rs
@@ -1,4 +1,5 @@
 //@ proc-macro: expand-expr.rs
+//@ ignore-backends: gcc
 // no-remap-src-base: check_expand_expr_file!() fails when enabled.
 
 #![feature(concat_bytes)]
@@ -10,7 +11,7 @@ use expand_expr::{
 
 // Check builtin macros can be expanded.
 
-expand_expr_is!(13u32, line!());
+expand_expr_is!(14u32, line!());
 expand_expr_is!(24u32, column!());
 
 expand_expr_is!("Hello, World!", concat!("Hello, ", "World", "!"));