From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22540 invoked by alias); 22 Aug 2003 19:48:54 -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 22448 invoked from network); 22 Aug 2003 19:48:49 -0000 Received: from unknown (HELO touchme.toronto.redhat.com) (207.219.125.105) by sources.redhat.com with SMTP; 22 Aug 2003 19:48:49 -0000 Received: from redhat.com (toocool.toronto.redhat.com [172.16.14.72]) by touchme.toronto.redhat.com (Postfix) with ESMTP id CB515800340 for ; Fri, 22 Aug 2003 15:48:48 -0400 (EDT) Message-ID: <3F4673A0.3040507@redhat.com> Date: Fri, 22 Aug 2003 19:48:00 -0000 From: "J. Johnston" Organization: Red Hat Inc. User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 X-Accept-Language: en-us, en MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: RFA: patch to ignore dump.exp for ia64 Content-Type: multipart/mixed; boundary="------------070700020009060406020709" X-SW-Source: 2003-08/txt/msg00402.txt.bz2 This is a multi-part message in MIME format. --------------070700020009060406020709 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 409 The dump.exp testcase doesn't run on ia64 because a number of the output formats tested do not handle 64-bit addresses. The following patch causes the test to be ignored for ia64. I tried unsuccessfully to move the data below the 32-bit line as is done for the alpha. Ok to commit? If so, ok for gdb 6.0? -- Jeff J. 2003-08-22 Jeff Johnston * gdb.base/dump.exp: Skip for ia64. --------------070700020009060406020709 Content-Type: text/plain; name="dump.exp.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="dump.exp.patch" Content-length: 700 Index: gdb.base/dump.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/dump.exp,v retrieving revision 1.3 diff -u -r1.3 dump.exp --- gdb.base/dump.exp 2 Jun 2003 15:51:24 -0000 1.3 +++ gdb.base/dump.exp 22 Aug 2003 19:45:23 -0000 @@ -39,6 +39,11 @@ lappend options "additional_flags=-Wl,-taso" } +if [istarget "ia64*-*-*"] then { + # SREC etc cannot handle 64-bit addresses. Skip the test + return 0; +} + if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable ${options}] != "" } { gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail." } --------------070700020009060406020709--