From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4359 invoked by alias); 29 Apr 2002 22:18:56 -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 4352 invoked from network); 29 Apr 2002 22:18:55 -0000 Received: from unknown (HELO touchme.toronto.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 29 Apr 2002 22:18:55 -0000 Received: from tooth.toronto.redhat.com (unknown [172.16.14.29]) by touchme.toronto.redhat.com (Postfix) with ESMTP id B639DB8013; Mon, 29 Apr 2002 18:18:54 -0400 (EDT) Received: (from bje@localhost) by tooth.toronto.redhat.com (8.11.6/8.11.6) id g3TMIsD31210; Mon, 29 Apr 2002 18:18:54 -0400 From: Ben Elliston MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15565.50894.249002.589173@tooth.toronto.redhat.com> Date: Mon, 29 Apr 2002 15:18:00 -0000 To: gdb-patches@sources.redhat.com Cc: Graydon Hoare Subject: [RFA] patch to testsuite/config/sid.exp X-SW-Source: 2002-04/txt/msg01141.txt.bz2 The following patch (submitted on behalf of Graydon Hoare) adds support for testing GDB on SID simulators using a new mode of invocation. Okay to commit? Ben 2002-02-14 Graydon Hoare * config/sid.exp: Include support for "rawsid" protocol. Index: config/sid.exp =================================================================== RCS file: /cvs/cvsfiles/devo/gdb/testsuite/config/sid.exp,v retrieving revision 1.25 diff -u -p -r1.25 sid.exp --- 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]" } @@ -67,6 +69,8 @@ proc sid_start {} { # FIXME: sim,options may be from the build tree, should find # it in the install tree. set spawncmd "sid [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 "[target_info sim] $sidendian --gdb=$port [target_info sim,options]" }