From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28584 invoked by alias); 9 Nov 2005 15:47:29 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 28569 invoked by uid 22791); 9 Nov 2005 15:47:25 -0000 Received: from ip127.bb146.pacific.net.hk (HELO stl.com.hk) (202.64.146.127) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Wed, 09 Nov 2005 15:47:25 +0000 Received: from 86.194.17.210.dyn.pacific.net.hk ([210.17.194.86] helo=[192.168.1.10]) by stl.com.hk with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.50) id 1EZs87-0001gs-NR for gdb-patches@sources.redhat.com; Wed, 09 Nov 2005 23:44:55 +0800 Message-ID: <43721A06.6090204@tausq.org> Date: Wed, 09 Nov 2005 17:56:00 -0000 From: Randolph Chung User-Agent: Debian Thunderbird 1.0.2 (X11/20050331) MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: Re: [patch/RFA] Remove xfail for hppa*-* for gdb.base/structs2.exp References: <4371A5C1.30406@tausq.org> In-Reply-To: <4371A5C1.30406@tausq.org> Content-Type: multipart/mixed; boundary="------------040707030205030805060604" X-SW-Source: 2005-11/txt/msg00109.txt.bz2 This is a multi-part message in MIME format. --------------040707030205030805060604 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 270 Randolph Chung wrote: > gdb.base/structs2.exp had an xfail for hppa*-* due to a gcc bug. The gcc > bug has been fixed for some time (since October 2004), so we might want > to remove this xfail. Based on Mark's feedback, I've checked in the attached instead. randolph --------------040707030205030805060604 Content-Type: text/plain; name="d" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="d" Content-length: 916 2005-11-09 Randolph Chung * gdb.base/structs2.exp: Update xfail to only trigger for gcc-3.x. Index: gdb.base/structs2.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/structs2.exp,v retrieving revision 1.3 diff -u -p -r1.3 structs2.exp --- gdb.base/structs2.exp 11 Jun 2004 23:42:49 -0000 1.3 +++ gdb.base/structs2.exp 9 Nov 2005 15:45:30 -0000 @@ -70,14 +70,14 @@ gdb_test "break param_reg" \ "Breakpoint .* at .*" \ "structs2 breakpoint set" -if [test_compiler_info gcc-*-*] { +if [test_compiler_info gcc-3-*] { setup_xfail hppa*-* gcc/15860 } gdb_test "continue" \ ".*pr_char=120.*pr_uchar=130.*pr_short=32000.*pr_ushort=33000.*bkpt = 1.*" \ "structs2 continue1" -if [test_compiler_info gcc-*-*] { +if [test_compiler_info gcc-3-*] { setup_xfail hppa*-* gcc/15860 } gdb_test "continue" \ --------------040707030205030805060604--