From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17523 invoked by alias); 8 Jun 2013 01:53:46 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 17513 invoked by uid 89); 8 Jun 2013 01:53:45 -0000 X-Spam-SWARE-Status: No, score=-6.6 required=5.0 tests=AWL,BAYES_00,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.1 Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Sat, 08 Jun 2013 01:53:45 +0000 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r581rhtH011575 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 7 Jun 2013 21:53:43 -0400 Received: from host2.jankratochvil.net (ovpn-116-66.ams2.redhat.com [10.36.116.66]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id r581rd8X032612 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Fri, 7 Jun 2013 21:53:42 -0400 Date: Sat, 08 Jun 2013 01:56:00 -0000 From: Jan Kratochvil To: Pedro Alves Cc: gdb-patches@sourceware.org Subject: gdbserver regression [Re: [COMMIT PATCH][GDBserver] Multi-process + multi-arch] Message-ID: <20130608015339.GA10329@host2.jankratochvil.net> References: <20130530121335.15047.12654.stgit@brno.lan> <51B1BB04.9020304@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <51B1BB04.9020304@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes X-SW-Source: 2013-06/txt/msg00186.txt.bz2 On Fri, 07 Jun 2013 12:50:44 +0200, Pedro Alves wrote: > I've now squashed everything into a single patch, and checked it in, > as below. 412f6d9c3dd9bf3049d1b78aefdc7391f95b5484 is the first bad commit commit 412f6d9c3dd9bf3049d1b78aefdc7391f95b5484 Author: Pedro Alves Date: Fri Jun 7 10:46:57 2013 +0000 [GDBserver] Multi-process + multi-arch cd gdb/testsuite/ ../gdbserver/gdbserver :1234 ~/t/hello & echo p=$! ../gdb -nx ~/t/hello -ex 'set debug remote 1' -ex 'target remote localhost:1234' -ex c -ex 'set confirm no' -ex q 2>&1|tee log kill -9 $p grep 'Inferior .* exited normally' log ~/t/hello is hello world: int main () { puts("hello"); } [...] Sending packet: $vCont?#49...Packet received: vCont;c;C;s;S;t;r Packet vCont (verbose-resume) is supported Sending packet: $vCont;c#a8...Packet received: T0506:0000000000000000;07:0000000000000000;10:0000000000000000;thread:p54b6.54b6;core:1; Sending packet: $z0,39e6403f92,1#a2...Packet received: OK Sending packet: $z0,39e6413355,1#6f...Packet received: OK Sending packet: $z0,39e6414285,1#72...Packet received: OK Sending packet: $m0,1#fa...Packet received: E01 Sending packet: $m0,1#fa...Packet received: E01 Sending packet: $m0,9#02...Packet received: E01 Program received signal SIGTRAP, Trace/breakpoint trap. 0x0000000000000000 in ?? () Jan