diff options
author | Andrew Pinski <andrew_pinski@playstation.sony.com> | 2007-04-15 21:38:47 +0000 |
---|---|---|
committer | Andrew Pinski <pinskia@gcc.gnu.org> | 2007-04-15 14:38:47 -0700 |
commit | a392e639074cc7386983ca6b9de90324c03b6660 (patch) | |
tree | 6b1713be21aad8102ecf65e2afd51bb6c6e91f71 /gcc | |
parent | d0b73842be794b587ac6842808f8c16e24f1b291 (diff) | |
download | gcc-a392e639074cc7386983ca6b9de90324c03b6660.zip gcc-a392e639074cc7386983ca6b9de90324c03b6660.tar.gz gcc-a392e639074cc7386983ca6b9de90324c03b6660.tar.bz2 |
re PR testsuite/31578 (FAIL: gcc.dg/gnu89-init-4.c (test for excess errors))
2007-04-14 Andrew Pinski <andrew_pinski@playstation.sony.com>
PR testsuite/31578
* gcc.dg/gnu89-init-4.c: Change to a compile only test.
From-SVN: r123854
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/gnu89-init-4.c | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 94dfeab..2e85f48 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2007-04-14 Andrew Pinski <andrew_pinski@playstation.sony.com> + + PR testsuite/31578 + * gcc.dg/gnu89-init-4.c: Change to a compile only test. + 2007-04-15 Jerry DeLisle <jvdelisle@gcc.gnu.org> * gfortran.dg/warnings_are_errors_1.f90: Add -std=f95 to options. @@ -21,7 +26,7 @@ 2007-04-14 Andrew Pinski <andrew_pinski@playstation.sony.com> PR C/31520 - * testsuite/gcc.dg/gnu89-init-4.c: New testcase. + * gcc.dg/gnu89-init-4.c: New testcase. 2007-04-14 Jakub Jelinek <jakub@redhat.com> diff --git a/gcc/testsuite/gcc.dg/gnu89-init-4.c b/gcc/testsuite/gcc.dg/gnu89-init-4.c index 4ccfbd1..15e9cdb 100644 --- a/gcc/testsuite/gcc.dg/gnu89-init-4.c +++ b/gcc/testsuite/gcc.dg/gnu89-init-4.c @@ -1,5 +1,5 @@ /* Test for GNU extensions to compound literals are giving the correct array bounds */ -/* { dg-do run } */ +/* { dg-do compile } */ /* { dg-options "-std=gnu89 -W -Wall -O2" } */ int a[] = (int[4]){1, 1, 2}; |