ping?
On Mon, 26 May 2025 at 17:26, Christophe Lyon <christophe.l...@linaro.org> wrote: > > On Mon, 26 May 2025 at 17:14, Christophe Lyon > <christophe.l...@linaro.org> wrote: > > > > Commit r15-7152-g57b706d141b87c removed > > /* { dg-do run { target*-*-linux* *-*-gnu* *-*-uclinux* } } */ > > > > from these tests, turning them into 'compile' only tests, even when > > they could be executed. > > > > This patch adds > > /* { dg-do run } */ > > > > which is OK since the tests are correctly skipped if needed thanks to > > the following effective-targets (alarm and signal). > > > > With this patch we have again two entries for these tests on linux targets: > > * compile (test for excess errors) > > * execution test > > Gasp I forgot to add a ChangeLog entry, but it would be an obvious: > Add 'dg-do run' :-) > > > > --- > > gcc/testsuite/gcc.dg/pr116906-1.c | 1 + > > gcc/testsuite/gcc.dg/pr116906-2.c | 1 + > > gcc/testsuite/gcc.dg/pr78185.c | 1 + > > 3 files changed, 3 insertions(+) > > > > diff --git a/gcc/testsuite/gcc.dg/pr116906-1.c > > b/gcc/testsuite/gcc.dg/pr116906-1.c > > index 7187507a60d..ee60ad67e93 100644 > > --- a/gcc/testsuite/gcc.dg/pr116906-1.c > > +++ b/gcc/testsuite/gcc.dg/pr116906-1.c > > @@ -1,3 +1,4 @@ > > +/* { dg-do run } */ > > /* { dg-require-effective-target alarm } */ > > /* { dg-require-effective-target signal } */ > > /* { dg-options "-O2" } */ > > diff --git a/gcc/testsuite/gcc.dg/pr116906-2.c > > b/gcc/testsuite/gcc.dg/pr116906-2.c > > index 41a352bf837..4172ec3644a 100644 > > --- a/gcc/testsuite/gcc.dg/pr116906-2.c > > +++ b/gcc/testsuite/gcc.dg/pr116906-2.c > > @@ -1,3 +1,4 @@ > > +/* { dg-do run } */ > > /* { dg-require-effective-target alarm } */ > > /* { dg-require-effective-target signal } */ > > /* { dg-options "-O2 -fno-tree-ch" } */ > > diff --git a/gcc/testsuite/gcc.dg/pr78185.c b/gcc/testsuite/gcc.dg/pr78185.c > > index ada8b1b9f90..4c3af4f2890 100644 > > --- a/gcc/testsuite/gcc.dg/pr78185.c > > +++ b/gcc/testsuite/gcc.dg/pr78185.c > > @@ -1,3 +1,4 @@ > > +/* { dg-do run } */ > > /* { dg-require-effective-target alarm } */ > > /* { dg-require-effective-target signal } */ > > /* { dg-options "-O" } */ > > -- > > 2.34.1 > >