diff options
author | John David Anglin <dave.anglin@bell.net> | 2019-03-09 21:48:43 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2019-03-09 21:48:43 +0000 |
commit | 7053f7e1997295711aaf1dd51a539815b45e204d (patch) | |
tree | 679fd006abaeafcfabe4be3f15e79d491248ffc3 | |
parent | 4fb649b5cb66951387b87e85297a538fa7d1d329 (diff) | |
download | gcc-7053f7e1997295711aaf1dd51a539815b45e204d.zip gcc-7053f7e1997295711aaf1dd51a539815b45e204d.tar.gz gcc-7053f7e1997295711aaf1dd51a539815b45e204d.tar.bz2 |
ident-0b.c: Also skip on 32-bit hppa*-*-hpux*.
* c-c++-common/ident-0b.c: Also skip on 32-bit hppa*-*-hpux*.
* c-c++-common/ident-1a.c: Likewise.
* c-c++-common/ident-1b.c: Likewise.
* c-c++-common/ident-2b.c: Likewise.
From-SVN: r269538
-rw-r--r-- | gcc/testsuite/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/testsuite/c-c++-common/ident-0b.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/c-c++-common/ident-1a.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/c-c++-common/ident-1b.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/c-c++-common/ident-2b.c | 2 |
5 files changed, 10 insertions, 5 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 07f95a2..9d857bb 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,4 +1,9 @@ -2018-03-09 John David Anglin <dave.anglin@bell.net> +2019-03-09 John David Anglin <dave.anglin@bell.net> + + * c-c++-common/ident-0b.c: Also skip on 32-bit hppa*-*-hpux*. + * c-c++-common/ident-1a.c: Likewise. + * c-c++-common/ident-1b.c: Likewise. + * c-c++-common/ident-2b.c: Likewise. * g++.dg/tls/pr77285-2.C: Require tls_native support. diff --git a/gcc/testsuite/c-c++-common/ident-0b.c b/gcc/testsuite/c-c++-common/ident-0b.c index 1184f8f..67b593c 100644 --- a/gcc/testsuite/c-c++-common/ident-0b.c +++ b/gcc/testsuite/c-c++-common/ident-0b.c @@ -2,7 +2,7 @@ * Make sure scan-assembler-not turns off .ident unless -fident in testcase */ /* { dg-do compile } */ /* { dg-options "-fident" } */ -/* { dg-skip-if "no assembler .ident support" { powerpc*-*-darwin* } } */ +/* { dg-skip-if "no assembler .ident support" { { hppa*-*-hpux* && { ! lp64 } } || powerpc*-*-darwin* } } */ int i; /* { dg-final { scan-assembler-not "GCC: " { xfail *-*-* } } } */ diff --git a/gcc/testsuite/c-c++-common/ident-1a.c b/gcc/testsuite/c-c++-common/ident-1a.c index b600373..dc167c3 100644 --- a/gcc/testsuite/c-c++-common/ident-1a.c +++ b/gcc/testsuite/c-c++-common/ident-1a.c @@ -1,7 +1,7 @@ /* PR testsuite/52665 * Make sure scan-assembler turns off .ident */ /* { dg-do compile } */ -/* { dg-skip-if "no assembler .ident support" { powerpc*-*-darwin* } } */ +/* { dg-skip-if "no assembler .ident support" { { hppa*-*-hpux* && { ! lp64 } } || powerpc*-*-darwin* } } */ int i; /* { dg-final { scan-assembler "GCC: " { xfail *-*-* } } } */ diff --git a/gcc/testsuite/c-c++-common/ident-1b.c b/gcc/testsuite/c-c++-common/ident-1b.c index d4eff0d..6956744 100644 --- a/gcc/testsuite/c-c++-common/ident-1b.c +++ b/gcc/testsuite/c-c++-common/ident-1b.c @@ -4,4 +4,4 @@ /* { dg-options "-fident" } */ int i; -/* { dg-final { scan-assembler "GCC: " { xfail powerpc-ibm-aix* powerpc*-*-darwin* } } } */ +/* { dg-final { scan-assembler "GCC: " { xfail { { hppa*-*-hpux* && { ! lp64 } } || { powerpc-ibm-aix* || powerpc*-*-darwin* } } } } } */ diff --git a/gcc/testsuite/c-c++-common/ident-2b.c b/gcc/testsuite/c-c++-common/ident-2b.c index 12a8058..fae6a03 100644 --- a/gcc/testsuite/c-c++-common/ident-2b.c +++ b/gcc/testsuite/c-c++-common/ident-2b.c @@ -4,4 +4,4 @@ /* { dg-options "-fident" } */ int ident; -/* { dg-final { scan-assembler-times "GCC: " 1 { xfail powerpc-ibm-aix* powerpc*-*-darwin* } } } */ +/* { dg-final { scan-assembler "GCC: " { xfail { { hppa*-*-hpux* && { ! lp64 } } || { powerpc-ibm-aix* || powerpc*-*-darwin* } } } } } */ |