From nobody Tue May 7 22:46:25 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+40190+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+40190+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=intel.com ARC-Seal: i=1; a=rsa-sha256; t=1557308982; cv=none; d=zoho.com; s=zohoarc; b=PUK6HQKzA1tfBIAKVKUdQYKt1L/J4BVKtwk5KezPHCWuCiBLjOl0Ctplz/DjMsD5V9czNjva+zV2JVd5zzOq6GufX+Qs3TQdT+vO49mMl543MaqX0Uvj90yVHngAlp9n7ScXLoCvsLiavgAi4mN7iqn0+kXj7EUCfV8A+0SJQT0= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1557308982; h=Content-Transfer-Encoding:Cc:Date:From:List-Id:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:Sender:Subject:To:ARC-Authentication-Results; bh=aiU2OLmX8QTtvghpHediKVYUwsP0k5Z2RwNAZszNMRY=; b=LzAgM0RvXCVcPWhQ6Vfn9K+0MWw7BjqYqQ19xn9pj9CF+ky4n4r0EyW+LHujWloVHzXqIcGXQm0DNTHf+FbcTRBYMDcRTY83Z19LLBr3lzB2nW03HpExr/fUNYnpAoOJqP6mDl1sNdA4CGEQnswJ95p+ukVAPgFCQNS6S+DDHew= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+40190+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) header.from= Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 1557308981686173.51549439716177; Wed, 8 May 2019 02:49:41 -0700 (PDT) Return-Path: X-Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by groups.io with SMTP; Wed, 08 May 2019 02:46:39 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 May 2019 02:46:38 -0700 X-ExtLoop1: 1 X-Received: from shwdepsi1121.ccr.corp.intel.com ([10.239.158.47]) by orsmga007.jf.intel.com with ESMTP; 08 May 2019 02:46:37 -0700 From: "Bob Feng" To: devel@edk2.groups.io Cc: Bob Feng , Liming Gao Subject: [edk2-devel] [Patch] BaseTools: Fix the issue that build report missing Module Size Date: Wed, 8 May 2019 17:46:30 +0800 Message-Id: <20190508094630.21096-1-bob.c.feng@intel.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,bob.c.feng@intel.com Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1557308980; bh=PbGEO9YF3bBai2bJqWmC8EAF3lmqAOmuS9T6HcwtVns=; h=Cc:Date:From:Reply-To:Subject:To; b=LuKYq0q2by5sdUDyPlGl0iI/y6EV/Eh+3vXgIRe8TjndfGL1wEH64kG/ea7uOVupJGG t0pLye6JPbOPSfwczW3BPDeRGKnH6du6Q/ekCf3p5R20ZRGGtXnLjfE3HDDapZi5RvQbZ aaFFLJLyilIHNHLrXW18crw+m1ag7BRN7K8= X-ZohoMail-DKIM: pass (identity @groups.io) Content-Type: text/plain; charset="utf-8" BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=3D1786 commit b1e27d changed GENFW output folder from DEBUG to OUTPUT, but that commit missed updating the buildreport.py for FwReportFileName. This patch is going to fix this issue. Signed-off-by: Bob Feng Cc: Liming Gao Reviewed-by: Liming Gao --- BaseTools/Source/Python/build/BuildReport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseTools/Source/Python/build/BuildReport.py b/BaseTools/Sourc= e/Python/build/BuildReport.py index 942631c879..a3eb3b2383 100644 --- a/BaseTools/Source/Python/build/BuildReport.py +++ b/BaseTools/Source/Python/build/BuildReport.py @@ -618,11 +618,11 @@ class ModuleReport(object): # @param ReportType The kind of report items in the final = report file # def GenerateReport(self, File, GlobalPcdReport, GlobalPredictionReport= , GlobalDepexParser, ReportType): FileWrite(File, gSectionStart) =20 - FwReportFileName =3D os.path.join(self._BuildDir, "DEBUG", self.Mo= duleName + ".txt") + FwReportFileName =3D os.path.join(self._BuildDir, "OUTPUT", self.M= oduleName + ".txt") if os.path.isfile(FwReportFileName): try: FileContents =3D open(FwReportFileName).read() Match =3D gModuleSizePattern.search(FileContents) if Match: --=20 2.20.1.windows.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#40190): https://edk2.groups.io/g/devel/message/40190 Mute This Topic: https://groups.io/mt/31541596/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-