From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30535 invoked by alias); 1 Dec 2005 05:53:09 -0000 Received: (qmail 30525 invoked by uid 22791); 1 Dec 2005 05:53:09 -0000 X-Spam-Check-By: sourceware.org Received: from ip127.bb146.pacific.net.hk (HELO stl.com.hk) (202.64.146.127) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 01 Dec 2005 05:53:04 +0000 Received: from rccomp.stl.com.hk ([192.168.100.200]) by stl.com.hk with esmtp (Exim 4.50) id 1EhhH9-0002qe-T6 for gdb-patches@sources.redhat.com; Thu, 01 Dec 2005 13:46:35 +0800 Message-ID: <438E8FD0.6060100@tausq.org> Date: Thu, 01 Dec 2005 05:53:00 -0000 From: Randolph Chung User-Agent: Thunderbird 1.5 (Windows/20051025) MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: [RFA] gdb.base/dump.exp: Mark hppa64-*-* as 64-bit target Content-Type: multipart/mixed; boundary="------------080308080300050301010403" 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 X-SW-Source: 2005-12/txt/msg00004.txt.bz2 This is a multi-part message in MIME format. --------------080308080300050301010403 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-length: 189 dump.exp tests srec loading which only support 32-bit. Disable those tests for hppa64-*-* ok? randolph -- Randolph Chung Debian GNU/Linux Developer, hppa/ia64 ports http://www.tausq.org/ --------------080308080300050301010403 Content-Type: text/plain; name="hpux-srec.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="hpux-srec.diff" Content-length: 633 2005-12-01 Randolph Chung * gdb.base/dump.exp: Mark hppa64-*-* as 64-bit target. Index: dump.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/dump.exp,v retrieving revision 1.7 diff -u -p -r1.7 dump.exp --- dump.exp 2 Aug 2004 03:13:56 -0000 1.7 +++ dump.exp 1 Dec 2005 05:49:53 -0000 @@ -41,7 +41,7 @@ if [istarget "alpha*-*-*"] then { lappend options "additional_flags=-Wl,-taso" } -if [istarget "ia64*-*-*"] then { +if {[istarget "ia64*-*-*"] || [istarget "hppa64-*-*"]} then { set is64bitonly "yes" } --------------080308080300050301010403--