From patchwork Mon Jan 17 17:12:57 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rainer Orth X-Patchwork-Id: 79195 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 452DFB712D for ; Tue, 18 Jan 2011 04:13:12 +1100 (EST) Received: (qmail 26165 invoked by alias); 17 Jan 2011 17:13:10 -0000 Received: (qmail 26125 invoked by uid 22791); 17 Jan 2011 17:13:09 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL, BAYES_00, TW_CX, T_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; Mon, 17 Jan 2011 17:13:01 +0000 Received: from localhost (localhost.CeBiTec.Uni-Bielefeld.DE [127.0.0.1]) by smtp-relay.CeBiTec.Uni-Bielefeld.DE (Postfix) with ESMTP id 4197183B for ; Mon, 17 Jan 2011 18:12:59 +0100 (CET) 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 N669P8dG2sQe for ; Mon, 17 Jan 2011 18:12:57 +0100 (CET) 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 E67EE83A for ; Mon, 17 Jan 2011 18:12:57 +0100 (CET) Received: (from ro@localhost) by manam.CeBiTec.Uni-Bielefeld.DE (8.14.4+Sun/8.14.4/Submit) id p0HHCv26004357; Mon, 17 Jan 2011 18:12:57 +0100 (MET) From: Rainer Orth To: gcc-patches@gcc.gnu.org Subject: [testsuite] Don't XFAIL g++.old-deja/g++.other/init19.C on IRIX Date: Mon, 17 Jan 2011 18:12:57 +0100 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (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 g++.old-deja/g++.other/init19.C XPASSes on both IRIX 5.3 and 6.5 on mainline and 4.4/4.5 branches. The following patch fixes this. Tested with the appropriate runtest invocation on mips-sgi-irix6.5, alpha-dec-osf5.1b, and i386-pc-solaris2.11, applied to mainline, 4.4 and 4.5 branches. Rainer 2011-01-14 Rainer Orth * g++.old-deja/g++.other/init19.C: Don't XFAIL on mips-sgi-irix*. diff -r 914e3d69d206 gcc/testsuite/g++.old-deja/g++.other/init19.C --- a/gcc/testsuite/g++.old-deja/g++.other/init19.C Fri Jan 14 21:33:57 2011 +0100 +++ b/gcc/testsuite/g++.old-deja/g++.other/init19.C Fri Jan 14 21:44:51 2011 +0100 @@ -1,4 +1,4 @@ -// { dg-do run { xfail { { ! cxa_atexit } && { ! *-*-solaris2* } } } } +// { dg-do run { xfail { { ! cxa_atexit } && { ! { mips-sgi-irix* *-*-solaris2* } } } } } #include #define assert(x) do { if (! (x)) abort(); } while (0)