From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out1.suse.de (smtp-out1.suse.de [IPv6:2001:67c:2178:6::1c]) by sourceware.org (Postfix) with ESMTPS id 732673858D33 for ; Tue, 29 Nov 2022 07:24:52 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 732673858D33 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=suse.de Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.de Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 98DC621B86; Tue, 29 Nov 2022 07:24:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1669706691; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=YDheKWCfRQBnVFaVZkbvEsHfCfU5okbEkCwNsj/Rcvw=; b=N+H0/VhbQTQKX0JH0y5/uRwlY2iiGEZvgtojOSJ6lS5cPrZTFyY4hKSyw67lurEsL9dZoh loFPF4sGZHonjjGkrazFlE2QSBWXw9SRltf0py883xVOB/C/Vyqd9dk/J3ZsRUQEBKp4ZQ 7PG5kpBN5wx1eXQzTUqKUMdxwzAGCTk= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1669706691; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=YDheKWCfRQBnVFaVZkbvEsHfCfU5okbEkCwNsj/Rcvw=; b=lLP+dqTywQtBE0aiRYBFEepzE3o/2YNAKzwpUn/eLjrx9ZpqE0wc191mzNKbLST/9rVeLt r4h16szTB8+3HzCA== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 6B6F113428; Tue, 29 Nov 2022 07:24:51 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id E1ouGcOzhWO6YwAAMHmgww (envelope-from ); Tue, 29 Nov 2022 07:24:51 +0000 Message-ID: <927c5ef2-d53d-6024-829e-b46eacc5368d@suse.de> Date: Tue, 29 Nov 2022 08:24:51 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.2.2 Subject: Re: [pushed] [gdb/testsuite] Fix gdb.ada/out_of_line_in_inlined.exp for ppc64le Content-Language: en-US To: Carl Love , gdb-patches@sourceware.org Cc: Ulrich Weigand , Tom Tromey , Will Schmidt References: <20221128162134.20424-1-tdevries@suse.de> <3d15ada9-ea26-e77a-26ed-5860bb83c113@suse.de> <42f0be03aa35e0f6163493ab57cd049b83db47a2.camel@us.ibm.com> <79e6af35f8f7731809833267bdbeb5f1a80a5672.camel@us.ibm.com> From: Tom de Vries In-Reply-To: <79e6af35f8f7731809833267bdbeb5f1a80a5672.camel@us.ibm.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-6.7 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On 11/29/22 00:01, Carl Love wrote: > Tom: > > On Mon, 2022-11-28 at 23:09 +0100, Tom de Vries wrote: >> Yes, that also works for me as well as $bkptno_num_re which I >> mentioned >>> in my previous email work for me. I guess my preference would be >>> $bkptno_num_re if it also works for you. >> >> That one doesn't work. As mentioned in the comment, it attempts to >> match: >> ... >> # A regular expression that matches a breakpoint hit with a >> breakpoint >> >> # having several code locations. >> >> set bkptno_num_re "$decimal\\.$decimal" >> ... >> in other words, "1.1" and in my case there's only one code location, >> in >> other words, "1". > > Yea, right. So I think we are down to the following patch that works > on my Power 10 with no regressions. It sounds like this one works for > you as well. > LGTM. Approved-By: Tom de Vries Thanks, - Tom