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 63A533858D28 for ; Mon, 19 Jun 2023 09:49:22 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 63A533858D28 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 9CFE5210E7; Mon, 19 Jun 2023 09:49:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1687168161; 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=jQLLCWjVdQiPaZ6FWV6Gi2AKmxphJCwhYMbm9RbcXag=; b=xQTxpMpZer4Qv7IbjzXbk1LUXCFWKTg6pUAXoswlj0n+VkR9pNi/OOkrsBmAIOn8aArnRP lBF+sVE5e5VItFIzuDEiY9EuZIWYf549GAJkNOi617wGSrKA5J38WFJofwD6wDg8ZI1q47 K2rvZx3/ru9heagshPfZ8Oi+2VCqkWo= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1687168161; 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=jQLLCWjVdQiPaZ6FWV6Gi2AKmxphJCwhYMbm9RbcXag=; b=jVPzGGPfmIpcO8uRBJTLOesltRekSj0awCSX8EnHO3jkakiKFsEe8uw+FGHszeIt8S6Ka8 rWdyGxgvqiIfzjCA== 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 8AAC7138E8; Mon, 19 Jun 2023 09:49:21 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id WWKiIKEkkGTXMwAAMHmgww (envelope-from ); Mon, 19 Jun 2023 09:49:21 +0000 Message-ID: <53a146e6-a84a-da1d-93d0-e45a1222fdd7@suse.de> Date: Mon, 19 Jun 2023 11:49:17 +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 From: Tom de Vries 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> <475e195a-3bba-4d68-54d1-35a77a03f5c2@suse.de> In-Reply-To: <475e195a-3bba-4d68-54d1-35a77a03f5c2@suse.de> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-6.3 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 6/13/23 22:10, Tom de Vries wrote: > 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. Fixed by this commit ( https://sourceware.org/pipermail/gdb-patches/2023-June/200318.html ). Thanks, - Tom