From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8A73CEB64D7 for ; Mon, 26 Jun 2023 06:18:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229693AbjFZGSw (ORCPT ); Mon, 26 Jun 2023 02:18:52 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40504 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229523AbjFZGSs (ORCPT ); Mon, 26 Jun 2023 02:18:48 -0400 Received: from out-38.mta1.migadu.com (out-38.mta1.migadu.com [IPv6:2001:41d0:203:375::26]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1C5CFFE for ; Sun, 25 Jun 2023 23:18:46 -0700 (PDT) Date: Mon, 26 Jun 2023 08:18:41 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1687760324; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=OhZJ/PNAy1sS5Vv5/AA6dJUQlC5FYTgnnv+RdIErFtU=; b=Ifc9lbTcTU260O65sBkCBg0/4eXB3WhECvcP/cZ1sySn4dBcOoHlIlr38AXTN2Rp+tuceZ rr17UH0swxSyz6BckhoWRhKVqatHfTfBI3AHf2mUB1GNKJTM/dfCVfKepyvDHS/jmPN1s7 u3z9+FLsJfoehJyg0rxb+SIcCODhyX8= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Andrew Jones To: Nadav Amit Cc: kvmarm@lists.linux.dev, kvm@vger.kernel.org, Nikos Nikoleris , Paolo Bonzini , Nadav Amit Subject: Re: [kvm-unit-tests PATCH v2 1/6] efi: keep efi debug information in a separate file Message-ID: <20230626-74deb6543bf4c51ef9b723f2@orel> References: <20230625230716.2922-1-namit@vmware.com> <20230625230716.2922-2-namit@vmware.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230625230716.2922-2-namit@vmware.com> X-Migadu-Flow: FLOW_OUT Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org On Sun, Jun 25, 2023 at 11:07:11PM +0000, Nadav Amit wrote: > From: Nadav Amit > > Debugging tests that run on EFI is hard because the debug information is > not included in the EFI file. Dump it into a separeate .debug file to > allow the use of gdb or pretty_print_stacks script. > > Signed-off-by: Nadav Amit > > --- > > v1->v2: > * Making clean should remove .debug [Andrew] I forgot to point out in the previous review that not only do we need to clean but also add *.debug to .gitignore Thanks, drew