From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27993 invoked by alias); 12 Jun 2012 16:21:08 -0000 Received: (qmail 27977 invoked by uid 22791); 12 Jun 2012 16:21:04 -0000 X-SWARE-Spam-Status: No, hits=-7.5 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_THREADED,RCVD_IN_DNSWL_HI,RCVD_IN_HOSTKARMA_W,SPF_HELO_PASS,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 12 Jun 2012 16:20:51 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q5CGKW4u030458 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 12 Jun 2012 12:20:32 -0400 Received: from [127.0.0.1] (ovpn01.gateway.prod.ext.ams2.redhat.com [10.39.146.11]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q5CGKUVp009509; Tue, 12 Jun 2012 12:20:31 -0400 Message-ID: <4FD76C4E.20107@redhat.com> Date: Tue, 12 Jun 2012 16:21:00 -0000 From: Pedro Alves User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20120430 Thunderbird/12.0.1 MIME-Version: 1.0 To: Yao Qi CC: gdb-patches@sourceware.org Subject: Re: [PATCH 4/4] gdb: kfail for PR14161 References: <1339246002-1987-1-git-send-email-yao@codesourcery.com> <1339246002-1987-5-git-send-email-yao@codesourcery.com> In-Reply-To: <1339246002-1987-5-git-send-email-yao@codesourcery.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit 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-06/txt/msg00360.txt.bz2 On 06/09/2012 01:46 PM, Yao Qi wrote: > GDB doesn't have something equivalent to pause_all/unpause_all in GDBserver, > so GDB is unable to control the threads correctly after sending commands > to agent. Yeah, my ideal would be to merge gdb/gdbserver's backends, but you've been distracting me from that goal. ;-) > KFAIL this first. > gdb/testsuite: > > 2012-06-09 Yao Qi > > KFAIL for PR14161. > * gdb.trace/strace.exp (strace_remove_socket): kfail for native. > Cleanup socket files. > --- > gdb/testsuite/gdb.trace/strace.exp | 11 +++++++++++ > 1 files changed, 11 insertions(+), 0 deletions(-) > > diff --git a/gdb/testsuite/gdb.trace/strace.exp b/gdb/testsuite/gdb.trace/strace.exp > index f141e9b..00a3fad 100644 > --- a/gdb/testsuite/gdb.trace/strace.exp > +++ b/gdb/testsuite/gdb.trace/strace.exp > @@ -92,6 +92,10 @@ proc strace_remove_socket { action } { > > sleep 2 > > + if { ![is_remote target] && ! [string equal $action "detach"] } { > + setup_kfail gdb/14161 *-*-* > + } > + > set test "socket file removed" > if { [file exists $socket_file] } { > fail $test > @@ -318,6 +322,13 @@ if { ![is_remote target] > strace_remove_socket "quit" > strace_remove_socket "detach" > strace_remove_socket "continue" > + > + # Due to PR gdb/14161, sockets files are not removed when agent exists. > + # However this problem only affects native gdb, so we don't have to bother > + # 'remote_file target delete'. Simple tcl command 'file delete' should > + # be OK. > + eval file delete [glob "/tmp/gdb_ust*"] > + "bother with". But note this doesn't work with remote host testing. > return > } > -- Pedro Alves