From: Iain Sandoe Date: Sun, 19 Jun 2022 09:12:47 +0000 (+0100) Subject: testsuite: Require init_priority target support in a test. X-Git-Tag: basepoints/gcc-14~6032 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ab5d82c029254c23614c5c0ef616eedd5c19df35;p=thirdparty%2Fgcc.git testsuite: Require init_priority target support in a test. The attr-cdtor-1 test fails on targets without init priority since the diagnostic emitted concerns the absence of support. Disable the test on such targets. Signed-off-by: Iain Sandoe gcc/testsuite/ChangeLog: * c-c++-common/attr-cdtor-1.c: Requite init_priority support. --- diff --git a/gcc/testsuite/c-c++-common/attr-cdtor-1.c b/gcc/testsuite/c-c++-common/attr-cdtor-1.c index ea61336c404..a0d069b014d 100644 --- a/gcc/testsuite/c-c++-common/attr-cdtor-1.c +++ b/gcc/testsuite/c-c++-common/attr-cdtor-1.c @@ -1,5 +1,5 @@ /* PR c/90658 */ -/* { dg-do compile } */ +/* { dg-do compile { target init_priority } } */ void f (); void g1 () __attribute__ ((constructor(f))); /* { dg-error "priorities must be integers" } */