From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12426 invoked by alias); 12 Mar 2005 01:27:30 -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 12374 invoked from network); 12 Mar 2005 01:27:27 -0000 Received: from unknown (HELO mail.codesourcery.com) (65.74.133.9) by sourceware.org with SMTP; 12 Mar 2005 01:27:27 -0000 Received: (qmail 21184 invoked from network); 12 Mar 2005 01:27:26 -0000 Received: from localhost (HELO wren.home) (paul@127.0.0.1) by mail.codesourcery.com with SMTP; 12 Mar 2005 01:27:26 -0000 From: Paul Brook Organization: CodeSourcery To: gdb-patches@sources.redhat.com Subject: [patch] Stray "," in mi-support.exp Date: Sat, 12 Mar 2005 01:27:00 -0000 User-Agent: KMail/1.7.2 MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_7VkMCVo8AXQAKqY" Message-Id: <200503120127.23761.paul@codesourcery.com> X-SW-Source: 2005-03/txt/msg00186.txt.bz2 --Boundary-00=_7VkMCVo8AXQAKqY Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Content-length: 390 The attached patch removes what appears to be a stray "," in testsuite/lib/mi-support.exp I'd commit as obvious, but I never can be sure with dejagnu.The relevant excerpt from testsuite/gdb.log is: (gdb) ^M target remote tcp:localhost:2345^M &"target remote tcp:localhost:2345\n"^M ~"Remote debugging using tcp:localhost:2345\n"^M ~"0x00000000 in ?? ()\n"^M ^done^M (gdb) ^M Ok? Paul --Boundary-00=_7VkMCVo8AXQAKqY Content-Type: text/x-diff; charset="us-ascii"; name="patch.gdb_mi_exp" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="patch.gdb_mi_exp" Content-length: 662 Index: gdb/testsuite/lib/mi-support.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/lib/mi-support.exp,v retrieving revision 1.24 diff -u -p -r1.24 mi-support.exp --- gdb/testsuite/lib/mi-support.exp 18 Jan 2004 15:23:30 -0000 1.24 +++ gdb/testsuite/lib/mi-support.exp 12 Mar 2005 01:16:39 -0000 @@ -496,7 +496,7 @@ proc mi_gdb_load { arg } { # remote targets send_gdb "target [target_info gdb_protocol] [target_info netport]\n" gdb_expect 60 { - -re "\\^done,.*$mi_gdb_prompt$" { + -re "\\^done.*$mi_gdb_prompt$" { } timeout { perror "Unable to connect to remote target" --Boundary-00=_7VkMCVo8AXQAKqY--