From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-f41.google.com (mail-wm1-f41.google.com [209.85.128.41]) by sourceware.org (Postfix) with ESMTPS id EFF5C395B43D for ; Tue, 10 Jan 2023 15:19:39 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org EFF5C395B43D Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=palves.net Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-wm1-f41.google.com with SMTP id j16-20020a05600c1c1000b003d9ef8c274bso5917219wms.0 for ; Tue, 10 Jan 2023 07:19:39 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:content-language:in-reply-to:mime-version :user-agent:date:message-id:from:references:to:subject :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=EBQ6qPpiLeH7esG0awgEZ4tUE0D9twb/VOIkmNT1JVk=; b=EDvdK8iL6HhYD7nhSXgyfa+WY28JN4qIqwYcC6u3KProAhhnVRzInCdFC6S8MoxexA HDbQEeKtdaxLGYfGVU5CtLHuGNIv313IanRdcqq8KsV1oxiGC3isSnFuRsmclQugms19 Y8oT3vyfNAFREhSkQTdYH8C2wAHKMDTH1ir1CZJor+pYnrIrxBa8PkYoYDLmXoE0yvzV lbHHy5HU3FpjsGMS1uuhQX49YyAWyr9mC6j0z1LEj9URvfvu5TzTqlMmVekCZYGNO2tr 8YgnARti8gxKCpucgxkQtY4yMkO+Vj0ypaJkHtthNCADg3VmYMIFCB86CCv6I7jdlLKy DI4A== X-Gm-Message-State: AFqh2kpCC1EKZk5dobA/ggzXnm7SlPyAn5xKCgOhCkAa8OJU3BrmsnhM NwlArgE2GBqTEDfTNFv9X8Tsp95AX9uOWgSJ X-Google-Smtp-Source: AMrXdXu90+LF4uUo8R5WFvUU3BwzAtqz8If1/p63EFYjS8f9ogHg8zankqQCCrGBPriM6GJvEt98Ug== X-Received: by 2002:a1c:4b04:0:b0:3c6:f0b8:74e6 with SMTP id y4-20020a1c4b04000000b003c6f0b874e6mr50622411wma.4.1673363978494; Tue, 10 Jan 2023 07:19:38 -0800 (PST) Received: from ?IPv6:2001:8a0:f92b:9e00::1fe? ([2001:8a0:f92b:9e00::1fe]) by smtp.gmail.com with ESMTPSA id bg23-20020a05600c3c9700b003d1de805de5sm17547508wmb.16.2023.01.10.07.19.37 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Tue, 10 Jan 2023 07:19:38 -0800 (PST) Subject: Re: [PATCH v3 0/7] glibc-2.34: Fix gdb.base/gdb-sigterm.exp failure/error To: Tom de Vries , Simon Marchi , Kevin Buettner , gdb-patches@sourceware.org References: <20220227000051.3336149-1-kevinb@redhat.com> <5c14a49e-0ed4-f99d-17f7-c89dffd9f68a@suse.de> From: Pedro Alves Message-ID: <51c077b4-f2e2-58f4-9ca9-8a556e67d3e7@palves.net> Date: Tue, 10 Jan 2023 15:19:36 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.10.1 MIME-Version: 1.0 In-Reply-To: <5c14a49e-0ed4-f99d-17f7-c89dffd9f68a@suse.de> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-3.5 required=5.0 tests=BAYES_00,FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM,HEADER_FROM_DIFFERENT_DOMAINS,KAM_DMARC_STATUS,NICE_REPLY_A,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hi, On 2023-01-05 1:35 p.m., Tom de Vries wrote: > 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 . > I'm taking a look at this one. > Thanks, > - Tom