From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) by sourceware.org (Postfix) with ESMTPS id D14613858D39 for ; Thu, 5 Jan 2023 13:35:33 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org D14613858D39 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-out2.suse.de (Postfix) with ESMTPS id B50DF24083; Thu, 5 Jan 2023 13:35:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1672925731; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=a7PC1tuMF5mLhJU3pef7kkTsxgjRrJ7aNhKjxlWaO6k=; b=EU+L/gxrS06jITx/ZGL9h6JX6JtX406aGEZI9END1LasYfhOfkeaHeDILgOdWNH+wVhKU/ qZPmDcK0PJd+n8IEArP8tLag2ExlPQGgD67+jRs+NzBi4AqqeLuDaqRU6zzhCTZtA3e7ue IRo4dvetGsWK1o8cUolW3IyBx2/Rs/Y= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1672925731; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=a7PC1tuMF5mLhJU3pef7kkTsxgjRrJ7aNhKjxlWaO6k=; b=CT3/Nxena9ePWwYhR9DyrQJDshiuiQZTGNTPw5TaikIZtLxkthXg4zpyn9r5EAgOYDebj7 zwOkmeOUIgdCKGBQ== 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 9731913338; Thu, 5 Jan 2023 13:35:31 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id nRG9IyPStmP1bwAAMHmgww (envelope-from ); Thu, 05 Jan 2023 13:35:31 +0000 Message-ID: <5c14a49e-0ed4-f99d-17f7-c89dffd9f68a@suse.de> Date: Thu, 5 Jan 2023 14:35:31 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.5.1 Subject: Re: [PATCH v3 0/7] glibc-2.34: Fix gdb.base/gdb-sigterm.exp failure/error Content-Language: en-US To: Simon Marchi , Kevin Buettner , gdb-patches@sourceware.org, Pedro Alves References: <20220227000051.3336149-1-kevinb@redhat.com> From: Tom de Vries In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-8.0 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 7/20/22 03:53, Simon Marchi via Gdb-patches wrote: > > > On 2022-02-26 19:00, Kevin Buettner via Gdb-patches wrote: >> This series addresses Pedro's concerns regarding the v2 series posted >> last year: >> >> https://sourceware.org/pipermail/gdb-patches/2021-August/181575.html >> >> In particular, it introduces a new exception which will be thrown >> when GDB receives a SIGTERM. That exception is handled at the >> top level when possible, though for the extension languages, Python >> and Guile, a somewhat different approach had to be taken. In order to >> ensure that this new exception isn't inadvertently swallowed on its >> way up to the top level, I also did an audit of the try / catch code >> involving gdb_exception, making adjustments where necessary. > > I started to look at a gdb.base/gdb-sigterm.exp failure, searched the > list for mentions of that test, and found this series which I think > addresses exactly the failure I am seeing. I'm just mentioning this to > bump the thread :). Hi, likewise bumping the thread, and noting that the series can claim to fix PR https://sourceware.org/bugzilla/show_bug.cgi?id=26761 . Thanks, - Tom