From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3455 invoked by alias); 14 Oct 2004 19:14:06 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 3448 invoked from network); 14 Oct 2004 19:14:06 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 14 Oct 2004 19:14:06 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.10) with ESMTP id i9EJE595022782 for ; Thu, 14 Oct 2004 15:14:06 -0400 Received: from localhost.redhat.com (porkchop.devel.redhat.com [172.16.58.2]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i9EJE5r27304; Thu, 14 Oct 2004 15:14:05 -0400 Received: from gnu.org (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 3A90B28CF; Thu, 14 Oct 2004 15:13:55 -0400 (EDT) Message-ID: <416ECFF2.6030603@gnu.org> Date: Thu, 14 Oct 2004 19:14:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-GB; rv:1.4.1) Gecko/20041009 MIME-Version: 1.0 To: Michael Chastain Cc: zack@codesourcery.com, gdb-patches@sources.redhat.com Subject: Re: testsuite fixes for bleeding edge gcc References: <87brf5n3c4.fsf@codesourcery.com> <416E6B8F.nail1FK2IQHOI@mindspring.com> In-Reply-To: <416E6B8F.nail1FK2IQHOI@mindspring.com> Content-Type: multipart/mixed; boundary="------------020906010209020702030007" X-SW-Source: 2004-10/txt/msg00254.txt.bz2 This is a multi-part message in MIME format. --------------020906010209020702030007 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 313 > Except for gdb.mi/gdb701, these are all fixed in gdb HEAD. > Also fixed in gdb HEAD are gdb.thread/*.exp, plus two tests > that check the gcc version number that needed 'gcc-4-*'. > > gdb_6_2-branch is dead. Andrew is going to create gdb_6_3-branch > in a few more days or so. I've checked this in. Andrew --------------020906010209020702030007 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 479 2004-10-14 Andrew Cagney * gdb.mi/gdb701.c (main): Return 0. Index: gdb.mi/gdb701.c =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.mi/gdb701.c,v retrieving revision 1.1 diff -p -u -r1.1 gdb701.c --- gdb.mi/gdb701.c 16 Sep 2002 19:01:43 -0000 1.1 +++ gdb.mi/gdb701.c 14 Oct 2004 19:12:43 -0000 @@ -11,5 +11,5 @@ int main (int argc, char *argv[]) { Foo *foo = 0; - exit (0); + return 0; } --------------020906010209020702030007--