From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id nyE9H0VVqWNTbAkAWB0awg (envelope-from ) for ; Mon, 26 Dec 2022 03:03:17 -0500 Received: by simark.ca (Postfix, from userid 112) id 70D401E222; Mon, 26 Dec 2022 03:03:17 -0500 (EST) Authentication-Results: simark.ca; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha256 header.s=default header.b=rA2FgIsi; dkim-atps=neutral X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-7.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI, RDNS_DYNAMIC,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 2376A1E110 for ; Mon, 26 Dec 2022 03:03:17 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 318883858C66 for ; Mon, 26 Dec 2022 08:03:16 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 318883858C66 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1672041796; bh=K6ACnTb6d5l+Pp52UbiVfFWAT2ywaXLPmVPOYD/yuSc=; h=Date:To:Cc:Subject:In-Reply-To:References:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From:Reply-To:From; b=rA2FgIsig/j9Nli6CaIwEKfOC3IDXgfugjgtpPXZOpiWUyvz+yIJRnG3fDD0FkjN1 mkscG13sVa1WDXsg/pR6rm0qxtzyVlFQjYyeaMOvJuhdGHzSQaXlwmjuYas2F2gEgg RxLY6gAROi7p4U1gFFFSbOfxLCq9gW1QK5GVjlRI= Received: from smtp-out1.suse.de (smtp-out1.suse.de [IPv6:2001:67c:2178:6::1c]) by sourceware.org (Postfix) with ESMTPS id A1C043858D38 for ; Mon, 26 Dec 2022 08:02:56 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org A1C043858D38 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 3AB2D33FCD; Mon, 26 Dec 2022 08:02:54 +0000 (UTC) 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 3280E13456; Mon, 26 Dec 2022 08:02:54 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id /DciDC5VqWMfcQAAMHmgww (envelope-from ); Mon, 26 Dec 2022 08:02:54 +0000 MIME-Version: 1.0 Date: Mon, 26 Dec 2022 08:02:53 +0000 To: Tom Tromey Cc: gdb-patches@sourceware.org Subject: Re: [PATCH] Handle SIGSEGV in gdb selftests In-Reply-To: <87pmcjba6j.fsf@tromey.com> References: <20221215211442.2515108-1-tromey@adacore.com> <7fca4280-a259-9785-fdd1-ac802b886804@suse.de> <87pmcjba6j.fsf@tromey.com> User-Agent: Roundcube Webmail Message-ID: <375589413f851bebcc3b1256273ab784@suse.de> X-Sender: tdevries@suse.de Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: tdevries via Gdb-patches Reply-To: tdevries Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" On 2022-12-16 16:11, Tom Tromey via Gdb-patches wrote: >>>>>> "Tom" == Tom de Vries writes: > > Tom> On 12/15/22 22:14, Tom Tromey via Gdb-patches wrote: >>> The gdb.gdb self-tests were timing out for me. Looking into it, the >>> problem is that the version of the Boehm GC that is used by Guile on >>> my machine causes a SEGV during stack probing. This unexpected stop >>> confuses the tests and causes repeated timeouts. >>> > > Tom> FWIW, that's https://sourceware.org/bugzilla/show_bug.cgi?id=29325 > . > > Thanks, I updated the commit message. I ran into this again, tried out the patch and checked that it fixes the problem. LGTM. Thanks, - Tom