From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1033 invoked by alias); 2 May 2012 17:22:50 -0000 Received: (qmail 1024 invoked by uid 22791); 2 May 2012 17:22:48 -0000 X-SWARE-Spam-Status: No, hits=-2.6 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_THREADED,MSGID_MULTIPLE_AT,RCVD_IN_DNSWL_LOW,TW_BJ X-Spam-Check-By: sourceware.org Received: from service87.mimecast.com (HELO service87.mimecast.com) (91.220.42.44) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 02 May 2012 17:22:23 +0000 Received: from cam-owa2.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.21]) by service87.mimecast.com; Wed, 02 May 2012 18:22:21 +0100 Received: from E103079 ([10.1.255.212]) by cam-owa2.Emea.Arm.com with Microsoft SMTPSVC(6.0.3790.3959); Wed, 2 May 2012 18:23:50 +0100 From: "Greta Yorsh" To: "'Mike Stump'" , "Dodji Seketeli" Cc: "Gabriel Dos Reis" , "GCC Patches" , "Tom Tromey" , "Jason Merrill" , "Paolo Carlini" , "Benjamin De Kosnik" References: In-Reply-To: Subject: RE: [PATCH 12/13] Adjust relevant test cases wrt -ftrack-macro-expansion=[0|2] Date: Wed, 02 May 2012 17:22:00 -0000 Message-ID: <000b01cd2888$52cccff0$f8666fd0$@Yorsh@arm.com> MIME-Version: 1.0 X-MC-Unique: 112050218222102201 Content-Type: text/plain; charset=WINDOWS-1252 Content-Transfer-Encoding: quoted-printable Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2012-05/txt/msg00151.txt.bz2 There are a couple more test that need adjusting: gcc.dg/fixed-point/operator-bitwise.c gcc.dg/fixed-point/composite-type.c These tests fail on arm-none-eabi.=20 Below is a patch that fixes them. Thanks, Greta gcc/testsuite 2012-05-02 Greta Yorsh * gcc.dg/fixed-point/composite-type.c (dg-options): Add option -ftrack-macro-expansion=3D0. * gcc.dg/fixed-point/operator-bitwise.c (dg-options): Add option -ftrack-macro-expansion=3D0. diff --git a/gcc/testsuite/gcc.dg/fixed-point/composite-type.c b/gcc/testsuite/gcc.dg/fixed-point/composite-type.c index 5ae1198..026bdaf 100644 --- a/gcc/testsuite/gcc.dg/fixed-point/composite-type.c +++ b/gcc/testsuite/gcc.dg/fixed-point/composite-type.c @@ -1,5 +1,5 @@ /* { dg-do compile } */ -/* { dg-options "-std=3Dgnu99 -O -Wall -Wno-unused" } */ +/* { dg-options "-std=3Dgnu99 -O -Wall -Wno-unused -ftrack-macro-expansion= =3D0" } */ =20 /* C99 6.2.7: Compatible type and composite type. */ =20 diff --git a/gcc/testsuite/gcc.dg/fixed-point/operator-bitwise.c b/gcc/testsuite/gcc.dg/fixed-point/operator-bitwise.c index 31aecf5..6ba817d 100644 --- a/gcc/testsuite/gcc.dg/fixed-point/operator-bitwise.c +++ b/gcc/testsuite/gcc.dg/fixed-point/operator-bitwise.c @@ -1,5 +1,5 @@ /* { dg-do compile } */ -/* { dg-options "-std=3Dgnu99" } */ +/* { dg-options "-std=3Dgnu99 -ftrack-macro-expansion=3D0" } */ =20 /* C99 6.5.10: Bitwise AND operator. C99 6.5.11: Bitwise exclusive OR operator. > -----Original Message----- > From: Mike Stump [mailto:mikestump@comcast.net] > Sent: 30 April 2012 17:09 > To: Dodji Seketeli > Cc: Gabriel Dos Reis; GCC Patches; Tom Tromey; Jason Merrill; Paolo > Carlini; Benjamin De Kosnik > Subject: Re: [PATCH 12/13] Adjust relevant test cases wrt -ftrack- > macro-expansion=3D[0|2] >=20 > On Apr 29, 2012, at 10:38 AM, Dodji Seketeli wrote: > > While bootstrapping the tree again, it appeared that an output > > regression of the objc test objc.dg/foreach-7.m flew below my radar. >=20 > > This looks fairly obvious to me, but I am CC-ing Mike Stump, just in > > case. >=20 > That's fine.