From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26860 invoked by alias); 23 Sep 2007 11:39:15 -0000 Received: (qmail 26850 invoked by uid 22791); 23 Sep 2007 11:39:15 -0000 X-Spam-Check-By: sourceware.org Received: from ug-out-1314.google.com (HELO ug-out-1314.google.com) (66.249.92.169) by sourceware.org (qpsmtpd/0.31) with ESMTP; Sun, 23 Sep 2007 11:39:09 +0000 Received: by ug-out-1314.google.com with SMTP id o2so795338uge for ; Sun, 23 Sep 2007 04:39:06 -0700 (PDT) Received: by 10.67.20.3 with SMTP id x3mr6604277ugi.1190547546328; Sun, 23 Sep 2007 04:39:06 -0700 (PDT) Received: from ?88.210.73.26? ( [88.210.73.26]) by mx.google.com with ESMTPS id e33sm6073452ugd.2007.09.23.04.38.56 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 23 Sep 2007 04:38:58 -0700 (PDT) Message-ID: <46F65040.8050203@portugalmail.pt> Date: Sun, 23 Sep 2007 11:39:00 -0000 From: Pedro Alves User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; pt-BR; rv:1.8.1.6) Gecko/20070728 Thunderbird/2.0.0.6 Mnenhy/0.7.5.0 MIME-Version: 1.0 To: Joel Brobecker , Pedro Alves , Pierre Muller , gdb-patches@sourceware.org Subject: Re: [RFC] Stabs parsing regression from GDB 6.6 to GDB 6.6.90 References: <000e01c7fb9b$22e600f0$68b202d0$@u-strasbg.fr> <000601c7fc25$98110430$c8330c90$@u-strasbg.fr> <46F486B4.6050900@portugalmail.pt> <46F56F04.6070601@portugalmail.pt> <20070922225808.GD3963@adacore.com> <20070922230806.GA30487@caradoc.them.org> In-Reply-To: <20070922230806.GA30487@caradoc.them.org> Content-Type: multipart/mixed; boundary="------------040301010709090805020800" X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2007-09/txt/msg00325.txt.bz2 This is a multi-part message in MIME format. --------------040301010709090805020800 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 552 Daniel Jacobowitz wrote: > There is already a gdb.stabs directory. ... and all this time, it wasn't running on Cygwin, although the official compiler uses stabs. This patch fixes it. This is what I get from running weird.exp # of expected passes 190 # of expected failures 7 This is what I get from running exclfwd.exp # of expected passes 1 # of known failures 2 Both with and without the read_huge_number patch. weird.def seems like a good place to add a new testcase. OK? Cheers, Pedro Alves --------------040301010709090805020800 Content-Type: text/x-diff; name="stabs_default.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="stabs_default.diff" Content-length: 1119 2007-09-23 Pedro Alves * configure.ac: Do gdb.stabs tests by default on Cygwin and MinGW targets. * configure: Regenerate. --- gdb/testsuite/configure | 2 ++ gdb/testsuite/configure.ac | 2 ++ 2 files changed, 4 insertions(+) Index: src/gdb/testsuite/configure =================================================================== --- src.orig/gdb/testsuite/configure 2007-03-31 18:35:56.000000000 +0100 +++ src/gdb/testsuite/configure 2007-09-23 12:31:32.000000000 +0100 @@ -1457,6 +1457,8 @@ case $target in | *-sun-* \ | hppa*-*-* \ | *-*-elf* \ + | *-pc-cygwin* \ + | *-pc-mingw* \ ) with_stabs=yes ;; *) Index: src/gdb/testsuite/configure.ac =================================================================== --- src.orig/gdb/testsuite/configure.ac 2007-09-22 17:09:56.000000000 +0100 +++ src/gdb/testsuite/configure.ac 2007-09-23 12:29:14.000000000 +0100 @@ -46,6 +46,8 @@ case $target in | *-sun-* \ | hppa*-*-* \ | *-*-elf* \ + | *-pc-cygwin* \ + | *-pc-mingw* \ ) with_stabs=yes ;; *) --------------040301010709090805020800--