From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19272 invoked by alias); 9 Nov 2005 07:31:07 -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 19233 invoked by uid 22791); 9 Nov 2005 07:31:00 -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 07:31:00 +0000 Received: from rccomp.stl.com.hk ([192.168.100.200]) by stl.com.hk with esmtp (Exim 4.50) id 1EZkNn-0007tC-3K for gdb-patches@sources.redhat.com; Wed, 09 Nov 2005 15:28:35 +0800 Message-ID: <4371A5C1.30406@tausq.org> Date: Wed, 09 Nov 2005 15:47:00 -0000 From: Randolph Chung User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050805) MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: [patch/RFA] Remove xfail for hppa*-* for gdb.base/structs2.exp Content-Type: multipart/mixed; boundary="------------080002080700070907020603" X-SW-Source: 2005-11/txt/msg00106.txt.bz2 This is a multi-part message in MIME format. --------------080002080700070907020603 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-length: 342 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. gcc bug is: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15860 ok to check in? randolph -- Randolph Chung Debian GNU/Linux Developer, hppa/ia64 ports http://www.tausq.org/ --------------080002080700070907020603 Content-Type: text/plain; name="d" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="d" Content-length: 1005 2005-11-09 Randolph Chung * gdb.base/structs2.exp: Remove a xfail due to a gcc bug that has since been fixed. 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 07:26:27 -0000 @@ -70,16 +70,10 @@ gdb_test "break param_reg" \ "Breakpoint .* at .*" \ "structs2 breakpoint set" -if [test_compiler_info gcc-*-*] { - 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-*-*] { - setup_xfail hppa*-* gcc/15860 -} gdb_test "continue" \ ".*pr_char=-126.*pr_uchar=120.*pr_short=-32536.*pr_ushort=32000.*bkpt = 1.* " \ "structs2 continue2" --------------080002080700070907020603--