From: Andy Hutchinson Date: Wed, 21 May 2008 00:01:30 +0000 (+0000) Subject: * gcc.dg/array-quals-1.c: xfail read only section check for avr target. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b348936e59deb981e3ceb1c6f66ff126aca690d7;p=gcc.git * gcc.dg/array-quals-1.c: xfail read only section check for avr target. From-SVN: r135695 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 2ade2866c95..a397292287f 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2008-05-20 Andy Hutchinson + + * gcc.dg/array-quals-1.c: xfail read only section + check for avr target. + 2008-05-20 Andy Hutchinson PR testsuite/34889 diff --git a/gcc/testsuite/gcc.dg/array-quals-1.c b/gcc/testsuite/gcc.dg/array-quals-1.c index 514daf8bc55..fc5398ba338 100644 --- a/gcc/testsuite/gcc.dg/array-quals-1.c +++ b/gcc/testsuite/gcc.dg/array-quals-1.c @@ -4,7 +4,7 @@ /* Origin: Joseph Myers */ /* { dg-do compile } */ /* The MMIX port always switches to the .data section at the end of a file. */ -/* { dg-final { scan-assembler-not "\\.data(?!\\.rel\\.ro)" { xfail powerpc*-*-aix* mmix-*-* x86_64-*-mingw* } } } */ +/* { dg-final { scan-assembler-not "\\.data(?!\\.rel\\.ro)" { xfail powerpc*-*-aix* mmix-*-* x86_64-*-mingw* avr-*-*} } } */ static const int a[2] = { 1, 2 }; const int a1[2] = { 1, 2 }; typedef const int ci;