From ac81fea349b7af8a9aa1dc47b5f9a07a0f9a73f6 Mon Sep 17 00:00:00 2001 From: Hans-Peter Nilsson <hp@axis.com> Date: Fri, 17 Mar 2023 17:03:34 +0100 Subject: [PATCH] testsuite: Skip some gcc.dg/plugin tests for default_packed targets Avoid unweildy structure-layout-specific message-matching expressions by exluding targets that lay out structures as if they had been specified with __attribute__ ((__packed__)), for tests where multiple messages depend on the structure layout. It's arguably a judgement call whether to skip some of these tests or add multiple lines of matches depending on the layout of structures. * gcc.dg/plugin/infoleak-2.c, gcc.dg/plugin/infoleak-CVE-2011-1078-1.c, gcc.dg/plugin/infoleak-CVE-2011-1078-2.c, gcc.dg/plugin/infoleak-CVE-2017-18549-1.c, gcc.dg/plugin/infoleak-CVE-2017-18550-1.c, gcc.dg/plugin/infoleak-antipatterns-1.c, gcc.dg/plugin/infoleak-fixit-1.c: Skip for default_packed targets. --- gcc/testsuite/gcc.dg/plugin/infoleak-2.c | 1 + gcc/testsuite/gcc.dg/plugin/infoleak-CVE-2011-1078-1.c | 1 + gcc/testsuite/gcc.dg/plugin/infoleak-CVE-2011-1078-2.c | 1 + gcc/testsuite/gcc.dg/plugin/infoleak-CVE-2017-18549-1.c | 1 + gcc/testsuite/gcc.dg/plugin/infoleak-CVE-2017-18550-1.c | 1 + gcc/testsuite/gcc.dg/plugin/infoleak-antipatterns-1.c | 1 + gcc/testsuite/gcc.dg/plugin/infoleak-fixit-1.c | 1 + 7 files changed, 7 insertions(+) diff --git a/gcc/testsuite/gcc.dg/plugin/infoleak-2.c b/gcc/testsuite/gcc.dg/plugin/infoleak-2.c index 252f8f25918a..43ab41b8a97b 100644 --- a/gcc/testsuite/gcc.dg/plugin/infoleak-2.c +++ b/gcc/testsuite/gcc.dg/plugin/infoleak-2.c @@ -1,6 +1,7 @@ /* { dg-do compile } */ /* { dg-options "-fanalyzer" } */ /* { dg-require-effective-target analyzer } */ +/* { dg-skip-if "structure layout assumption not met" { default_packed } } */ #include <string.h> diff --git a/gcc/testsuite/gcc.dg/plugin/infoleak-CVE-2011-1078-1.c b/gcc/testsuite/gcc.dg/plugin/infoleak-CVE-2011-1078-1.c index 3616fbe176b3..8afce8eefac2 100644 --- a/gcc/testsuite/gcc.dg/plugin/infoleak-CVE-2011-1078-1.c +++ b/gcc/testsuite/gcc.dg/plugin/infoleak-CVE-2011-1078-1.c @@ -9,6 +9,7 @@ /* { dg-do compile } */ /* { dg-options "-fanalyzer" } */ /* { dg-require-effective-target analyzer } */ +/* { dg-skip-if "structure layout assumption not met" { default_packed } } */ #include <string.h> diff --git a/gcc/testsuite/gcc.dg/plugin/infoleak-CVE-2011-1078-2.c b/gcc/testsuite/gcc.dg/plugin/infoleak-CVE-2011-1078-2.c index 2096bda71798..1142cf22655a 100644 --- a/gcc/testsuite/gcc.dg/plugin/infoleak-CVE-2011-1078-2.c +++ b/gcc/testsuite/gcc.dg/plugin/infoleak-CVE-2011-1078-2.c @@ -3,6 +3,7 @@ /* { dg-do compile } */ /* { dg-options "-fanalyzer" } */ /* { dg-require-effective-target analyzer } */ +/* { dg-skip-if "structure layout assumption not met" { default_packed } } */ #include <string.h> diff --git a/gcc/testsuite/gcc.dg/plugin/infoleak-CVE-2017-18549-1.c b/gcc/testsuite/gcc.dg/plugin/infoleak-CVE-2017-18549-1.c index 8a1c816cc1b5..239c7d1df5d3 100644 --- a/gcc/testsuite/gcc.dg/plugin/infoleak-CVE-2017-18549-1.c +++ b/gcc/testsuite/gcc.dg/plugin/infoleak-CVE-2017-18549-1.c @@ -10,6 +10,7 @@ /* { dg-do compile } */ /* { dg-options "-fanalyzer" } */ /* { dg-require-effective-target analyzer } */ +/* { dg-skip-if "structure layout assumption not met" { default_packed } } */ #include <string.h> diff --git a/gcc/testsuite/gcc.dg/plugin/infoleak-CVE-2017-18550-1.c b/gcc/testsuite/gcc.dg/plugin/infoleak-CVE-2017-18550-1.c index 4272da96bab0..449348a1017f 100644 --- a/gcc/testsuite/gcc.dg/plugin/infoleak-CVE-2017-18550-1.c +++ b/gcc/testsuite/gcc.dg/plugin/infoleak-CVE-2017-18550-1.c @@ -10,6 +10,7 @@ /* { dg-do compile } */ /* { dg-options "-fanalyzer" } */ /* { dg-require-effective-target analyzer } */ +/* { dg-skip-if "structure layout assumption not met" { default_packed } } */ #include <string.h> diff --git a/gcc/testsuite/gcc.dg/plugin/infoleak-antipatterns-1.c b/gcc/testsuite/gcc.dg/plugin/infoleak-antipatterns-1.c index 500845364388..84789a7f157e 100644 --- a/gcc/testsuite/gcc.dg/plugin/infoleak-antipatterns-1.c +++ b/gcc/testsuite/gcc.dg/plugin/infoleak-antipatterns-1.c @@ -3,6 +3,7 @@ /* { dg-do compile } */ /* { dg-options "-fanalyzer" } */ /* { dg-require-effective-target analyzer } */ +/* { dg-skip-if "structure layout assumption not met" { default_packed } } */ typedef unsigned char u8; typedef unsigned __INT16_TYPE__ u16; diff --git a/gcc/testsuite/gcc.dg/plugin/infoleak-fixit-1.c b/gcc/testsuite/gcc.dg/plugin/infoleak-fixit-1.c index 6961b44f76b9..56158c12520a 100644 --- a/gcc/testsuite/gcc.dg/plugin/infoleak-fixit-1.c +++ b/gcc/testsuite/gcc.dg/plugin/infoleak-fixit-1.c @@ -1,6 +1,7 @@ /* { dg-do compile } */ /* { dg-options "-fanalyzer" } */ /* { dg-require-effective-target analyzer } */ +/* { dg-skip-if "structure layout assumption not met" { default_packed } } */ #include <string.h> -- GitLab