From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.220.28]) by sourceware.org (Postfix) with ESMTPS id AB3183858D38 for ; Tue, 13 Jun 2023 20:10:36 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org AB3183858D38 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 705FD224FD; Tue, 13 Jun 2023 20:10:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1686687035; 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=Fo8fINY/h1drGxIsVmsskn4dq6XCWFK7CUGpeNQWA68=; b=jsmg92Mgkzk/RBqOhJxRcxCT7Cki2oWBv5+2tSk5pPONkdMmz2MlDP+A70gERo5vxEicET gof2JTAViV2LgUyj5pYmb2M1WOh+JIsluL/KqjkAt9TW966AAPg7IgqHL4q8ruEKosqdpR CWNtpdsAjWXd8+gUlkdCCxRCKgPz0kg= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1686687035; 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=Fo8fINY/h1drGxIsVmsskn4dq6XCWFK7CUGpeNQWA68=; b=Or+Ic6gNFPLaHxoeoKL4IAOlq4rAcdrDIv4SM7ybvW2QewSxcP6sWyVQ2G3cgQa2t6ukSy jHRlyZLhv0fNq0Dw== 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 5D62B13483; Tue, 13 Jun 2023 20:10:35 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id Bk+CFTvNiGT+GwAAMHmgww (envelope-from ); Tue, 13 Jun 2023 20:10:35 +0000 Message-ID: <475e195a-3bba-4d68-54d1-35a77a03f5c2@suse.de> Date: Tue, 13 Jun 2023 22:10:55 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.11.0 Subject: Re: [PATCH 02/25] Use gnat_runtime_has_debug_info in Ada catchpoint tests Content-Language: en-US To: Tom Tromey , gdb-patches@sourceware.org References: <20230427-ada-catch-exception-v1-0-947caa9905e3@adacore.com> <20230427-ada-catch-exception-v1-2-947caa9905e3@adacore.com> From: Tom de Vries In-Reply-To: <20230427-ada-catch-exception-v1-2-947caa9905e3@adacore.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-6.4 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,T_SCC_BODY_TEXT_LINE 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 5/24/23 18:36, Tom Tromey via Gdb-patches wrote: > This changes the Ada catchpoint tests to use > gnat_runtime_has_debug_info. This simplifies the code. I see this regression: ... FAIL: gdb.ada/catch_ex_std.exp: catch exception some_kind_of_error FAIL: gdb.ada/catch_ex_std.exp: caught the exception (the program exited) FAIL: gdb.ada/catch_ex_std.exp: print $_ada_exception = some_package.some_kind_of_error'Address ... I'm assuming it's due to this commit. At first glance, this PR ( https://sourceware.org/bugzilla/show_bug.cgi?id=30094 ) explains why. Thanks, - Tom