[pushed] testsuite: Require init_priority target support in a test.

Message ID 20220620151705.79699-1-iain@sandoe.co.uk
State Committed
Commit ab5d82c029254c23614c5c0ef616eedd5c19df35
Headers
Series [pushed] testsuite: Require init_priority target support in a test. |

Commit Message

Iain Sandoe June 20, 2022, 3:17 p.m. UTC
  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.

tested on x86_64 darwin / linux, pushed to master, thanks
Iain

Signed-off-by: Iain Sandoe <iain@sandoe.co.uk>

gcc/testsuite/ChangeLog:

	* c-c++-common/attr-cdtor-1.c: Requite init_priority support.
---
 gcc/testsuite/c-c++-common/attr-cdtor-1.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

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" } */