From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25123 invoked by alias); 22 Jan 2016 16:44:36 -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 25108 invoked by uid 89); 22 Jan 2016 16:44:35 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:947, n*, UD:watchpoint-hw-hit-once.exp, sk:watchpo X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Fri, 22 Jan 2016 16:44:34 +0000 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (Postfix) with ESMTPS id 7F6773B70B for ; Fri, 22 Jan 2016 16:44:33 +0000 (UTC) Received: from host1.jankratochvil.net (ovpn-116-93.ams2.redhat.com [10.36.116.93]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u0MGiT6B032612 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 22 Jan 2016 11:44:32 -0500 Date: Fri, 22 Jan 2016 16:44:00 -0000 From: Jan Kratochvil To: Pedro Alves Cc: gdb-patches@sourceware.org Subject: Re: [PATCH+doc] Fix PR threads/19422 - show which thread caused stop Message-ID: <20160122164429.GA28687@host1.jankratochvil.net> References: <1451950202-18024-1-git-send-email-palves@redhat.com> <5697ABE8.7060705@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5697ABE8.7060705@redhat.com> User-Agent: Mutt/1.5.24 (2015-08-30) X-IsSubscribed: yes X-SW-Source: 2016-01/txt/msg00571.txt.bz2 On Thu, 14 Jan 2016 15:08:40 +0100, Pedro Alves wrote: [...] > * gdb.base/watchpoint-hw-hit-once.exp: Adjust expected output. [...] > diff --git a/gdb/testsuite/gdb.base/watchpoint-hw-hit-once.exp b/gdb/testsuite/gdb.base/watchpoint-hw-hit-once.exp > index 5c1be00..46d5c62 100644 > --- a/gdb/testsuite/gdb.base/watchpoint-hw-hit-once.exp > +++ b/gdb/testsuite/gdb.base/watchpoint-hw-hit-once.exp > @@ -31,7 +31,7 @@ gdb_test "rwatch watchee" > > gdb_breakpoint [gdb_get_line_number "dummy = 2"] > > -gdb_test "continue" "Continuing.\r\nHardware read watchpoint \[0-9\]+: watchee\r\n\r\nValue = 0\r\n.*" > +gdb_test "continue" "Continuing.\r\n\r\nHardware read watchpoint \[0-9\]+: watchee\r\n\r\nValue = 0\r\n.*" I haven't seen a comment why such change is necessary. It probably happens from some of the changes involved but not sure if it was really required. Thanks, Jan