From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15041 invoked by alias); 20 Nov 2003 18:23:32 -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 15033 invoked from network); 20 Nov 2003 18:23:32 -0000 Received: from unknown (HELO localhost.redhat.com) (207.219.125.105) by sources.redhat.com with SMTP; 20 Nov 2003 18:23:32 -0000 Received: from redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id EB29C2B8F for ; Thu, 20 Nov 2003 13:23:27 -0500 (EST) Message-ID: <3FBD069F.9000504@redhat.com> Date: Thu, 20 Nov 2003 18:23:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.2) Gecko/20030820 X-Accept-Language: en-us, en MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: [rfa/x86-64] Supress x86-64 structs.exp test? Content-Type: multipart/mixed; boundary="------------030005020706090207080108" X-SW-Source: 2003-11/txt/msg00424.txt.bz2 This is a multi-part message in MIME format. --------------030005020706090207080108 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 273 I just ran the new structs.exp on amd64. Turns out amd digs a hole so deep that GDB gets stuck in free fall (an infinite loop resuming the target?). The attached supresses the testfile until someone gets the chance to see whats really happening. thoughts? ok? Andrew --------------030005020706090207080108 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 706 2003-11-20 Andrew Cagney * gdb.base/structs.exp: Suppress when "x86_64-*-*". Index: gdb.base/structs.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/structs.exp,v retrieving revision 1.9 diff -u -r1.9 structs.exp --- gdb.base/structs.exp 20 Nov 2003 18:03:48 -0000 1.9 +++ gdb.base/structs.exp 20 Nov 2003 18:15:50 -0000 @@ -35,6 +35,13 @@ continue } +# struct return on x86-64 is very broken +switch -glob -- [istarget] { + "x86_64-*-*" { + gdb_suppress_entire_file "amd64 is really broken" + } +} + set testfile "structs" set srcfile ${testfile}.c set binfile ${objdir}/${subdir}/${testfile} --------------030005020706090207080108--