From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 715 invoked by alias); 25 Feb 2012 15:40:28 -0000 Received: (qmail 588 invoked by uid 22791); 25 Feb 2012 15:40:26 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 25 Feb 2012 15:40:11 +0000 Received: from svr-orw-fem-01.mgc.mentorg.com ([147.34.98.93]) by relay1.mentorg.com with esmtp id 1S1JjG-0003Nv-I9 from Luis_Gustavo@mentor.com ; Sat, 25 Feb 2012 07:40:10 -0800 Received: from NA1-MAIL.mgc.mentorg.com ([147.34.98.181]) by svr-orw-fem-01.mgc.mentorg.com with Microsoft SMTPSVC(6.0.3790.4675); Sat, 25 Feb 2012 07:40:10 -0800 Received: from [0.0.0.0] ([172.16.63.104]) by NA1-MAIL.mgc.mentorg.com with Microsoft SMTPSVC(6.0.3790.4675); Sat, 25 Feb 2012 07:39:58 -0800 Message-ID: <4F4900CB.8010606@mentor.com> Date: Sat, 25 Feb 2012 15:57:00 -0000 From: Luis Gustavo Reply-To: "Gustavo, Luis" User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.23) Gecko/20110922 Lightning/1.0b2 Thunderbird/3.1.15 MIME-Version: 1.0 To: Jan Kratochvil CC: gdb-patches@sourceware.org Subject: Re: General regressions in gdbserver mode [Re: [rfc target-side break conditions 0/5 v2] General info] References: <4F2309F1.1020703@mentor.com> <4F47ABCF.9020305@mentor.com> <20120225142037.GA26330@host2.jankratochvil.net> In-Reply-To: <20120225142037.GA26330@host2.jankratochvil.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes 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 X-SW-Source: 2012-02/txt/msg00610.txt.bz2 Hi Jan, On 02/25/2012 12:20 PM, Jan Kratochvil wrote: > Hi Luis, > > On Fri, 24 Feb 2012 16:25:03 +0100, Luis Gustavo wrote: >> I've checked this whole series in now. > > while thanks for this new feature the testsuite results broke in > http://sourceware.org/gdb/wiki/TestingGDB#Testing_gdbserver_in_a_native_configuration > mode such as: > > (gdb) continue > Continuing. > Breakpoint 1, main (argc=1, argv=0x7fffffffdbd8, envp=0x7fffffffdbe8) at ./gdb.base/break.c:89 > 89 if (argc == 12345) { /* an unlikely value< 2^16, in case uninited */ /* set breakpoint 6 here */ > (gdb) PASS: gdb.base/condbreak.exp: rerun to main > > -> > > (gdb) continue > Continuing. > Found breakpoint condition. > Found breakpoint condition. > Found breakpoint condition. > Remote connection closed > (gdb) FAIL: gdb.base/condbreak.exp: rerun to main > > I do not have exact results today (offtopic) but the regression spans across > the testsuite in general. > > > Thanks, > Jan What kind of setup you're using? I have full passes for this testcase using the native gdbserver mode on x86-32 for example. Breakpoint 1, main (argc=1, argv=0xbfffdef4, envp=0xbfffdefc) at ../../../gdb/gdb/testsuite/gdb.base/break.c:89^M 89 if (argc == 12345) { /* an unlikely value < 2^16, in case uninited */ /* set breakpoint 6 here */^M (gdb) PASS: gdb.base/condbreak.exp: rerun to main continue^M Continuing.^M ^M Breakpoint 5, main (argc=1, argv=0xbfffdef4, envp=0xbfffdefc) at ../../../gdb/gdb/testsuite/gdb.base/break.c:93^M 93 printf ("%d\n", factorial (atoi ("6"))); /* set breakpoint 1 here */^M (gdb) PASS: gdb.base/condbreak.exp: run until breakpoint set at a line number Found breakpoint condition.^M Found breakpoint condition.^M Found breakpoint condition.^M Found breakpoint condition.^M Found breakpoint condition.^M Found breakpoint condition.^M 720^M continue^M Continuing.^M I wonder if it's something wrong with agent expression parsing. Luis