From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 9I22D2WDIWTKFRsAWB0awg (envelope-from ) for ; Mon, 27 Mar 2023 07:52:05 -0400 Received: by simark.ca (Postfix, from userid 112) id 31AE11E4A3; Mon, 27 Mar 2023 07:52:05 -0400 (EDT) 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=K2TgVGci; 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=-8.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,NICE_REPLY_A, 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 DF7981E0D3 for ; Mon, 27 Mar 2023 07:52:04 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 1FD563858C62 for ; Mon, 27 Mar 2023 11:52:04 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 1FD563858C62 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1679917924; bh=g0rtTLfueREVNzBGJjlIhIvI2e9ieSuNVz9VcjYCXy8=; h=Date:Subject:To:Cc:References:In-Reply-To:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From:Reply-To:From; b=K2TgVGciV0xmWJkdOoKbVTKUaCFnv+LL8a8fwY3P/wG8QZrFvhwZ6L36kh6xae9Ll jPVUfemuyV3vxK9OokDGKyeApy7naa62F6IzXR/o6EzC1J22cytycG6b9ukxEd+9SD Pkdda/hVGmTGu/neTAoCXlvSBgkFvoRONg4gBFJg= Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) by sourceware.org (Postfix) with ESMTPS id 1A8153858C54 for ; Mon, 27 Mar 2023 11:51:42 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 1A8153858C54 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-out2.suse.de (Postfix) with ESMTPS id 2B8E31FDB9; Mon, 27 Mar 2023 11:51:41 +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 14F8E13482; Mon, 27 Mar 2023 11:51:41 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id Z57kA02DIWRVNgAAMHmgww (envelope-from ); Mon, 27 Mar 2023 11:51:41 +0000 Message-ID: Date: Mon, 27 Mar 2023 13:51:40 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.8.0 Subject: Re: [RFC] [gdb/testsuite] Use dwarf assembly in gdb.dlang/dlang-start.exp Content-Language: en-US To: gdb-patches@sourceware.org Cc: Tom Tromey References: <20230220134839.1944-1-tdevries@suse.de> In-Reply-To: <20230220134839.1944-1-tdevries@suse.de> Content-Type: text/plain; charset=UTF-8; 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: Tom de Vries via Gdb-patches Reply-To: Tom de Vries Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" On 2/20/23 14:48, Tom de Vries via Gdb-patches wrote: > so let's rewrite the test-case using dwarf assembly > (though arguably, it's not a bad idea to have test-cases excercising > actual compilers). I ended up solving this conundrum by moving the dwarf assembly into a separate test-case ( https://sourceware.org/pipermail/gdb-patches/2023-March/198314.html ). Thanks, - Tom