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 A1C043858D38 for ; Mon, 26 Dec 2022 08:02:56 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org A1C043858D38 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 3AB2D33FCD; Mon, 26 Dec 2022 08:02:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1672041774; 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=K6ACnTb6d5l+Pp52UbiVfFWAT2ywaXLPmVPOYD/yuSc=; b=e/lLJJjedEsvaeTBifGRmA2lDleQ2yC44mCrKkqHUTgaromuTfQtn4Rhan1gfVO/oUJM9v 4LvRCLdbMQ3QrhJi931LekLhlNeI4EMg1nKI+RbIpntesRcquK+1XLoKBpukrXBEbnYwxc /NN7+OnxGYwpAx/DHDjMU1wT1G8lvyQ= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1672041774; 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=K6ACnTb6d5l+Pp52UbiVfFWAT2ywaXLPmVPOYD/yuSc=; b=YHHkeOebUeP7H7VASoh52bY/rF4dZGWuu87vfIm4BQgarnlJeHUoBO5y9TOLHHN0oHBMa8 eYLujK+9ubM4ZKDQ== 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 From: tdevries 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-Spam-Status: No, score=-6.5 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,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 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