From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22921 invoked by alias); 30 Apr 2002 18:51:47 -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 22909 invoked from network); 30 Apr 2002 18:51:46 -0000 Received: from unknown (HELO touchme.toronto.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 30 Apr 2002 18:51:46 -0000 Received: from tooth.toronto.redhat.com (unknown [172.16.14.29]) by touchme.toronto.redhat.com (Postfix) with ESMTP id 07696B8036; Tue, 30 Apr 2002 14:51:46 -0400 (EDT) Received: (from bje@localhost) by tooth.toronto.redhat.com (8.11.6/8.11.6) id g3UIpjO10960; Tue, 30 Apr 2002 14:51:45 -0400 From: Ben Elliston MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15566.59329.845998.475487@tooth.toronto.redhat.com> Date: Tue, 30 Apr 2002 11:51:00 -0000 To: Michael Snyder Cc: gdb-patches@sources.redhat.com, Graydon Hoare Subject: Re: [RFA] patch to testsuite/config/sid.exp In-Reply-To: <3CCDDAAA.96039FF6@redhat.com> References: <15565.50894.249002.589173@tooth.toronto.redhat.com> <3CCDDAAA.96039FF6@redhat.com> X-SW-Source: 2002-04/txt/msg01161.txt.bz2 >>>>> "Michael" == Michael Snyder writes: Michael> It all looks ok to me, except I have a question about... >> --- sid.exp 2002/04/05 23:31:59 1.25 >> +++ sid.exp 2002/04/29 22:16:49 >> @@ -53,6 +53,8 @@ proc sid_start {} { >> } >> if { [board_info target sim,protocol] == "sid" } { >> set spawncmd "[target_info sim] [target_info sim,options] $sidendian2 -e \"set cpu-gdb-socket sockaddr-local 0.0.0.0:$port\"" >> + } elseif { [board_info target sim,protocol] == "rawsid" } { >> + set spawncmd "[target_info sim] [target_info sim,options] -$sidendian --gdb=$port" >> } else { >> set spawncmd "../../sid/bsp/[target_info sim] $sidendian --gdb=$port [target_info sim,options]" Michael> one of the diffs between these two spawncmds, namely, that the old one Michael> specifies a path before [target_info sim], but your new one doesn't. Michael> Is that intentional? Yes. Ben