From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25672 invoked by alias); 8 Sep 2009 02:52:51 -0000 Received: (qmail 25620 invoked by uid 22791); 8 Sep 2009 02:52:50 -0000 X-SWARE-Spam-Status: No, hits=-1.1 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_33,J_CHICKENPOX_41,J_CHICKENPOX_51,J_CHICKENPOX_61 X-Spam-Check-By: sourceware.org Received: from nskntmtas03p.mx.bigpond.com (HELO nskntmtas03p.mx.bigpond.com) (61.9.168.143) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 08 Sep 2009 02:52:42 +0000 Received: from nskntotgx03p.mx.bigpond.com ([121.209.33.16]) by nskntmtas03p.mx.bigpond.com with ESMTP id <20090908025239.PNFJ1820.nskntmtas03p.mx.bigpond.com@nskntotgx03p.mx.bigpond.com>; Tue, 8 Sep 2009 02:52:39 +0000 Received: from bubble.grove.modra.org ([121.209.33.16]) by nskntotgx03p.mx.bigpond.com with ESMTP id <20090908025238.QLYC28036.nskntotgx03p.mx.bigpond.com@bubble.grove.modra.org>; Tue, 8 Sep 2009 02:52:38 +0000 Received: by bubble.grove.modra.org (Postfix, from userid 1000) id 4DC31170C881; Tue, 8 Sep 2009 12:22:38 +0930 (CST) Date: Tue, 08 Sep 2009 02:52:00 -0000 From: Alan Modra To: DJ Delorie Cc: Mike Frysinger , binutils@sourceware.org, gingold@adacore.com Subject: Re: Binutils branch 2.20 (done!) Message-ID: <20090908025238.GN518@bubble.grove.modra.org> Mail-Followup-To: DJ Delorie , Mike Frysinger , binutils@sourceware.org, gingold@adacore.com References: <20090904135833.GT518@bubble.grove.modra.org> <200909050059.n850xn7H019819@greed.delorie.com> <200909042059.50974.vapier@gentoo.org> <200909050109.n8519r8X020329@greed.delorie.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200909050109.n8519r8X020329@greed.delorie.com> User-Agent: Mutt/1.5.17+20080114 (2008-01-14) X-RPD-ScanID: Class unknown; VirusThreatLevel unknown, RefID str=0001.0A150201.4AA5C6F7.0034,ss=1,fgs=0 X-SIH-MSG-ID: qR4yEtL/TAD0zmRy0WWwOwRzyFrsq3B48Z4QWs1mqRMGT0XduMfOJ4/2Y8AUgZ723C5MNBCAPGsjarzmXY/YiA== X-IsSubscribed: yes Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org X-SW-Source: 2009-09/txt/msg00218.txt.bz2 On Fri, Sep 04, 2009 at 09:09:53PM -0400, DJ Delorie wrote: > > > we can tag them as XFAIL in the branch though ... > > Those tests don't use the usual dejagnu framework - they're run > manually by all/gas.exp. There doesn't seem to be XFAIL support in > that code. We can easily just not run the tests. * gas/all/gas.exp (do_comment): Don't run on m32c. * gas/all/align.d: Likewise. * gas/all/incbin.d: Likewise. * gas/macros/semi.d: Likewise. * gas/elf/ifunc-1.d: Don't run on alpha. Index: gas/testsuite/gas/all/align.d =================================================================== RCS file: /cvs/src/src/gas/testsuite/gas/all/align.d,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 align.d --- gas/testsuite/gas/all/align.d 3 May 1999 07:28:47 -0000 1.1.1.1 +++ gas/testsuite/gas/all/align.d 8 Sep 2009 02:15:47 -0000 @@ -1,5 +1,6 @@ #objdump: -s -j .text #name: align +#not-target: m32c-* # Test the alignment pseudo-op. Index: gas/testsuite/gas/all/gas.exp =================================================================== RCS file: /cvs/src/src/gas/testsuite/gas/all/gas.exp,v retrieving revision 1.57 diff -u -p -r1.57 gas.exp --- gas/testsuite/gas/all/gas.exp 16 Apr 2009 04:24:06 -0000 1.57 +++ gas/testsuite/gas/all/gas.exp 8 Sep 2009 02:15:48 -0000 @@ -144,7 +144,13 @@ proc do_comment {} { if [all_ones $x1 $x2 $x3] then { pass $testname } else { fail $testname } } -do_comment +# m32c pads out sections, even empty ones. +case $target_triplet in { + { m32c-*-* } { } + default { + do_comment + } +} # This test checks the output of the -ag switch. It must detect at least # the name of the input file, output file, and options passed. Index: gas/testsuite/gas/all/incbin.d =================================================================== RCS file: /cvs/src/src/gas/testsuite/gas/all/incbin.d,v retrieving revision 1.3 diff -u -p -r1.3 incbin.d --- gas/testsuite/gas/all/incbin.d 21 Dec 2001 11:40:53 -0000 1.3 +++ gas/testsuite/gas/all/incbin.d 8 Sep 2009 02:15:48 -0000 @@ -1,6 +1,7 @@ #as: -I$srcdir/$subdir #objdump: -s -j .text #name: incbin +#not-target: m32c-* # Test the incbin pseudo-op Index: gas/testsuite/gas/elf/ifunc-1.d =================================================================== RCS file: /cvs/src/src/gas/testsuite/gas/elf/ifunc-1.d,v retrieving revision 1.1 diff -u -p -r1.1 ifunc-1.d --- gas/testsuite/gas/elf/ifunc-1.d 22 May 2009 18:11:59 -0000 1.1 +++ gas/testsuite/gas/elf/ifunc-1.d 8 Sep 2009 02:15:48 -0000 @@ -1,5 +1,6 @@ #readelf: -s #name: .set with IFUNC +#not-target: alpha* #... [ ]+[0-9]+:[ ]+[0-9a-f]+[ ]+[0-9]+[ ]+IFUNC[ ]+GLOBAL[ ]+DEFAULT[ ]+[1-9] __GI_foo Index: gas/testsuite/gas/macros/semi.d =================================================================== RCS file: /cvs/src/src/gas/testsuite/gas/macros/semi.d,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 semi.d --- gas/testsuite/gas/macros/semi.d 3 May 1999 07:28:51 -0000 1.1.1.1 +++ gas/testsuite/gas/macros/semi.d 8 Sep 2009 02:15:49 -0000 @@ -1,5 +1,6 @@ #objdump: -s -j .text #name: semi +#not-target: m32c-* .*: .* -- Alan Modra Australia Development Lab, IBM