From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31010 invoked by alias); 13 Apr 2003 19:46:09 -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 31003 invoked from network); 13 Apr 2003 19:46:08 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 13 Apr 2003 19:46:08 -0000 Received: from int-mx2.corp.redhat.com (nat-pool-rdu-dmz.redhat.com [172.16.52.200] (may be forged)) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id h3DJk8D19137 for ; Sun, 13 Apr 2003 15:46:08 -0400 Received: from potter.sfbay.redhat.com (potter.sfbay.redhat.com [172.16.27.15]) by int-mx2.corp.redhat.com (8.11.6/8.11.6) with ESMTP id h3DJk7W04239; Sun, 13 Apr 2003 15:46:07 -0400 Received: from redhat.com (reddwarf.sfbay.redhat.com [172.16.24.50]) by potter.sfbay.redhat.com (8.11.6/8.11.6) with ESMTP id h3DJk7S24352; Sun, 13 Apr 2003 12:46:07 -0700 Message-ID: <3E99BE7F.1B2584E8@redhat.com> Date: Sun, 13 Apr 2003 19:46:00 -0000 From: Michael Snyder Organization: Red Hat, Inc. X-Accept-Language: en MIME-Version: 1.0 To: Andrew Cagney CC: Kevin Buettner , gdb-patches@sources.redhat.com Subject: Re: [RFC] gdb.base/args.exp: Invoke gdb_load for simulator targets References: <1030408222709.ZM13182@localhost.localdomain> <3E942C6E.50003@redhat.com> <1030409160731.ZM16357@localhost.localdomain> <3E944728.2070005@redhat.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-SW-Source: 2003-04/txt/msg00273.txt.bz2 Andrew Cagney wrote: > > > On Apr 9, 10:21am, Andrew Cagney wrote: > > > > > >> > * gdb.base/args.exp: Invoke gdb_load for simulator targets. > >> > Modify regexps to match extra output after program exit in a > >> > simulator. > > > >> > >> What's the extra output? That part may be a bug. > > > > > > When running on a simulator, I see: > > > > (gdb) target sim > > Connected to the simulator. > > (gdb) load gdb.base/args > > (gdb) run > > Starting program: .../gdb.base/args 1 3 > > 3 > > .../gdb.base/args > > 1 > > 3 > > > > Program exited normally. > > [Switching to process 0] > > Current language: auto; currently asm > > (gdb) > > > > When running with a native gdb, I see: > > > > (gdb) run > > Starting program: .../gdb.base/args 1 3 > > 3 > > .../gdb.base/args > > 1 > > 3 > > > > Program exited normally. > > (gdb) > > > > The extra output is the bit about switching to process 0 and reporting > > the current language. I figured it was a feature, but it may well be > > a bug. (It seems pretty harmless...) > > I recall that mysteriously appearing at some stage. I don't think it is > a feature since `Switching to process 0' doesn't make any sense - if the > program exited normally then there are no processes. > > I suspect that it is related to the SIM trying to simultaneously be an > embedded board (which can't exit) and a normal UNIX process (which does > exit). I'd be more inclined to attribute it to some recent change in infrun or close associates. It thinks the inferior_pid has changed.