From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25108 invoked by alias); 19 Apr 2004 18:32:48 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 25084 invoked from network); 19 Apr 2004 18:32:47 -0000 Received: from unknown (HELO walton.kettenis.dyndns.org) (213.93.77.109) by sources.redhat.com with SMTP; 19 Apr 2004 18:32:47 -0000 Received: from elgar.kettenis.dyndns.org (elgar.kettenis.dyndns.org [192.168.0.2]) by walton.kettenis.dyndns.org (8.12.6p3/8.12.6) with ESMTP id i3JIW0xR000255; Mon, 19 Apr 2004 20:32:00 +0200 (CEST) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: from elgar.kettenis.dyndns.org (localhost [127.0.0.1]) by elgar.kettenis.dyndns.org (8.12.6p3/8.12.6) with ESMTP id i3JIVxUJ000704; Mon, 19 Apr 2004 20:31:59 +0200 (CEST) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: (from kettenis@localhost) by elgar.kettenis.dyndns.org (8.12.6p3/8.12.6/Submit) id i3JIVrko000701; Mon, 19 Apr 2004 20:31:53 +0200 (CEST) Date: Tue, 20 Apr 2004 13:46:00 -0000 Message-Id: <200404191831.i3JIVrko000701@elgar.kettenis.dyndns.org> From: Mark Kettenis To: drow@false.org CC: gdb@sources.redhat.com In-reply-to: <20040419034459.GA3674@nevyn.them.org> (message from Daniel Jacobowitz on Sun, 18 Apr 2004 23:44:59 -0400) Subject: Re: Odd test failures - weird.exp, mi-cli.exp References: <20040419031150.GA14124@nevyn.them.org> <20040419034459.GA3674@nevyn.them.org> X-SW-Source: 2004-04/txt/msg00107.txt.bz2 Date: Sun, 18 Apr 2004 23:44:59 -0400 From: Daniel Jacobowitz On Sun, Apr 18, 2004 at 11:11:50PM -0400, Daniel Jacobowitz wrote: > (gdb) file object.o > Reading symbols from > /opt/src/binutils/x86-as/gdb/testsuite/object.o...done. > Using host libthread_db library "/lib/tls/i686/cmov/libthread_db.so.1". > (gdb) FAIL: gdb.stabs/weird.exp: Errors reading weirdx.o > > I can't figure out what causes this. Presumably it is griping about > the libthread_db message, but GDB 6.1 appears to generate the same > thing, and I haven't been getting this failure in the past. Does > anyone else see this? Yes, I'm seeing this on at least i386-unknown-freebsd4.7, amd64-unknown-openbsd3.5 and sparc-unknown-openbsd3.5. This one appears to be: (gdb) file object.o Reading symbols from /opt/src/binutils/x86-as/gdb/testsuite/object.o...done. (gdb) FAIL: gdb.stabs/weird.exp: Errors reading weirdx.o vs. Reading symbols from object.o...done. Using host libthread_db library "/lib/tls/i686/cmov/libthread_db.so.1". (gdb) PASS: gdb.stabs/weird.exp: weirdx.o read without error Yup, although the libthread_db has nothing to do it, so on FreeBSD and OpenBSD I'm seeing: (gdb) file object.o Reading symbols from /opt/src/binutils/x86-as/gdb/testsuite/object.o...done. (gdb) FAIL: gdb.stabs/weird.exp: Errors reading weirdx.o vs. (gdb) file object.o Reading symbols from object.o...done. (gdb) PASS: gdb.stabs/weird.exp: weirdx.o read without error I guess this is a testsuite bug. I'll fix it once we decide what to do about the fluky mi-cli.exp failures in the previous message. Yes please! Mark