From patchwork Fri Jul 22 16:28:48 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rainer Orth X-Patchwork-Id: 106328 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 4BE25B6F68 for ; Sat, 23 Jul 2011 02:29:18 +1000 (EST) Received: (qmail 13973 invoked by alias); 22 Jul 2011 16:29:15 -0000 Received: (qmail 13959 invoked by uid 22791); 22 Jul 2011 16:29:14 -0000 X-SWARE-Spam-Status: No, hits=-2.4 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from snape.CeBiTec.Uni-Bielefeld.DE (HELO smtp-relay.CeBiTec.Uni-Bielefeld.DE) (129.70.160.84) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 22 Jul 2011 16:29:00 +0000 Received: from localhost (localhost.CeBiTec.Uni-Bielefeld.DE [127.0.0.1]) by smtp-relay.CeBiTec.Uni-Bielefeld.DE (Postfix) with ESMTP id E81FEA62 for ; Fri, 22 Jul 2011 18:28:58 +0200 (CEST) Received: from smtp-relay.CeBiTec.Uni-Bielefeld.DE ([127.0.0.1]) by localhost (malfoy.CeBiTec.Uni-Bielefeld.DE [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 5-Z6z4gO1Sik for ; Fri, 22 Jul 2011 18:28:57 +0200 (CEST) Received: from manam.CeBiTec.Uni-Bielefeld.DE (manam.CeBiTec.Uni-Bielefeld.DE [129.70.161.120]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp-relay.CeBiTec.Uni-Bielefeld.DE (Postfix) with ESMTPS id DFE83A61 for ; Fri, 22 Jul 2011 18:28:56 +0200 (CEST) Received: (from ro@localhost) by manam.CeBiTec.Uni-Bielefeld.DE (8.14.5+Sun/8.14.5/Submit) id p6MGSmnJ003807; Fri, 22 Jul 2011 18:28:48 +0200 (MEST) From: Rainer Orth To: gcc-patches@gcc.gnu.org Subject: [testsuite] XFAIL g++.dg/debug/dwarf2/icf.C on IRIX (PR debug/47393) Date: Fri, 22 Jul 2011 18:28:48 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3 (usg-unix-v) MIME-Version: 1.0 X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org As described in the PR, some scan-assembler tests in g++.dg/debug/dwarf2/icf.C are FAILing on mips-sgi-irix6.5 since .debug_dcall isn't emitted at all. On mainline, the failures are gone since .debug_dcall support has been removed. Thus there's no point in trying to fix the bug on the 4.5 and 4.6 branches. I'm thus XFAILing the respective tests. Tested with the appropriate runtest invocations on mips-sgi-irix6.5, installed on 4.5 and 4.6 branches. Rainer 2011-07-22 Rainer Orth PR debug/47393 * g++.dg/debug/dwarf2/icf.C: XFAIL some scan-assembler on mips-sgi-irix*. Index: gcc/testsuite/g++.dg/debug/dwarf2/icf.C =================================================================== --- gcc/testsuite/g++.dg/debug/dwarf2/icf.C (revision 176633) +++ gcc/testsuite/g++.dg/debug/dwarf2/icf.C (working copy) @@ -40,11 +40,11 @@ // Verify that we get .debug_dcall and .debug_vcall tables generated // and that we see entries for both virtual calls. -// { dg-final { scan-assembler "\\.section.*\.debug_dcall" } } +// { dg-final { scan-assembler "\\.section.*\.debug_dcall" { xfail mips-sgi-irix* } } } // { dg-final { scan-assembler "\\.section.*\.debug_vcall" } } -// { dg-final { scan-assembler "New caller" } } -// { dg-final { scan-assembler "Caller DIE offset" } } +// { dg-final { scan-assembler "New caller" { xfail mips-sgi-irix* } } } +// { dg-final { scan-assembler "Caller DIE offset" { xfail mips-sgi-irix* } } } // { dg-final { scan-assembler "Point of call" } } -// { dg-final { scan-assembler "Callee DIE offset" } } +// { dg-final { scan-assembler "Callee DIE offset" { xfail mips-sgi-irix* } } } // { dg-final { scan-assembler "0x0.*Vtable slot" } } // { dg-final { scan-assembler "0x1.*Vtable slot" } }