From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12411 invoked by alias); 29 Jan 2014 11:28:59 -0000 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 Received: (qmail 12401 invoked by uid 89); 29 Jan 2014 11:28:59 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.1 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 29 Jan 2014 11:28:58 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s0TBSuJd018594 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 29 Jan 2014 06:28:57 -0500 Received: from localhost (ovpn-116-72.ams2.redhat.com [10.36.116.72]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s0TBSt6i007711 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 29 Jan 2014 06:28:56 -0500 Received: by localhost (Postfix, from userid 1000) id 645311632FB; Wed, 29 Jan 2014 12:28:54 +0100 (CET) From: Dodji Seketeli To: "H.J. Lu" Cc: Markus Trippelsdorf , Jakub Jelinek , Bernd Edlinger , GCC Patches , Tom Tromey , Manuel =?utf-8?B?TMOzcGV6LUliw6HDsWV6?= Subject: Re: [PATCH] preprocessor/58580 - preprocessor goes OOM with warning for zero literals References: <878uwt63e2.fsf@redhat.com> <20131113081610.GH27813@tucnak.zalov.cz> <87zjp7t73c.fsf@redhat.com> <87vbxcig8t.fsf@redhat.com> <20140124150532.GB396@x4> <87iot9qtff.fsf@redhat.com> <20140124154419.GQ892@tucnak.redhat.com> <878uu5qs3q.fsf@redhat.com> <20140124230239.GH396@x4> <20140124232038.GI396@x4> <87d2jc2qgy.fsf@redhat.com> <878uu02qbk.fsf@redhat.com> X-URL: http://www.redhat.com Date: Wed, 29 Jan 2014 11:28:00 -0000 In-Reply-To: (H. J. Lu's message of "Tue, 28 Jan 2014 10:40:05 -0800") Message-ID: <87a9efqb61.fsf@redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-SW-Source: 2014-01/txt/msg01850.txt.bz2 "H.J. Lu" writes: > The new tests failed on Linux/x86: Woops. I have committed the patch below under the obvious rule for this. Sorry for the inconvenience. gcc/testsuite/ChangeLog: * c-c++-common/cpp/warning-zero-location-2.c: Fix error message specifier. diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index a468447..27777da 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2014-01-29 Dodji Seketeli + + * c-c++-common/cpp/warning-zero-location-2.c: Fix error message + selector. + 2014-01-29 Jakub Jelinek PR middle-end/59917 diff --git a/gcc/testsuite/c-c++-common/cpp/warning-zero-location-2.c b/gcc/testsuite/c-c++-common/cpp/warning-zero-location-2.c index c0e0bf7..e919bca 100644 --- a/gcc/testsuite/c-c++-common/cpp/warning-zero-location-2.c +++ b/gcc/testsuite/c-c++-common/cpp/warning-zero-location-2.c @@ -7,4 +7,4 @@ #include int main() { return 0; } -/* { dg-error "No such file or directory" { target *-*-* } 4636 } */ +/* { dg-message "" "#include" {target *-*-* } 0 } -- Dodji