From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mx.groups.io with SMTP id smtpd.web12.2689.1665712829903096356 for ; Thu, 13 Oct 2022 19:00:39 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=eKIjwpBe; spf=pass (domain: intel.com, ip: 192.55.52.151, mailfrom: dun.tan@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1665712839; x=1697248839; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=kWLCJ+aa8mFFNT42aaLIfE9KiYp53xCBqMESeWGWShg=; b=eKIjwpBeJ8ylnnTDx3YZ/cUWNViqyOAjH4+y9IDbt1mVFBtYKDWwlVj0 sssIgmma7VZTgydyriG27jUdi0bTV7RVdAYYlYs79I4jmzhCpZfS4EpEX tdqogFrcwmbvK0PKTp2AYXK2fudkHbQGRFDpSRvzVvsDibnCK894K4hY0 ES7FMv2vrUPgk2HDob3ReIphrywLkoTXfyUqpNy8rnGQLNbcNlMww1QlJ nzhpf9T9KhoWLLTqFSzvT/9wcq09KEyqxkUZ0qg9g1XpBw4VcXo7RFWHO IxKh3wALUtn97LPFl5IeMGqs+qwEBYcOxzPJr8VmechOUXYq7K3LDE6DW A==; X-IronPort-AV: E=McAfee;i="6500,9779,10499"; a="285641766" X-IronPort-AV: E=Sophos;i="5.95,182,1661842800"; d="scan'208";a="285641766" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Oct 2022 19:00:39 -0700 X-IronPort-AV: E=McAfee;i="6500,9779,10499"; a="629767667" X-IronPort-AV: E=Sophos;i="5.95,182,1661842800"; d="scan'208";a="629767667" Received: from shwdeopenlab702.ccr.corp.intel.com ([10.239.56.220]) by fmsmga007-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Oct 2022 19:00:38 -0700 From: "duntan" To: devel@edk2.groups.io Cc: Eric Dong , Ray Ni , Rahul Kumar Subject: [Patch V2 3/3] UefiCpuPkg: Add Pei/DxeCpuExceptionHandlerLibUnitTest in dsc Date: Fri, 14 Oct 2022 09:54:00 +0800 Message-Id: <20221014015400.440-4-dun.tan@intel.com> X-Mailer: git-send-email 2.31.1.windows.1 In-Reply-To: <20221014015400.440-1-dun.tan@intel.com> References: <20221014015400.440-1-dun.tan@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Add Pei/DxeCpuExceptionHandlerLibUnitTest module in UefiCpuPkg.dsc Signed-off-by: Dun Tan Cc: Eric Dong Cc: Ray Ni Cc: Rahul Kumar --- UefiCpuPkg/UefiCpuPkg.dsc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/UefiCpuPkg/UefiCpuPkg.dsc b/UefiCpuPkg/UefiCpuPkg.dsc index f694b3a77c..31145dbe7e 100644 --- a/UefiCpuPkg/UefiCpuPkg.dsc +++ b/UefiCpuPkg/UefiCpuPkg.dsc @@ -63,6 +63,9 @@ MicrocodeLib|UefiCpuPkg/Library/MicrocodeLib/MicrocodeLib.inf SmmCpuRendezvousLib|UefiCpuPkg/Library/SmmCpuRendezvousLib/SmmCpuRendezvousLib.inf CpuPageTableLib|UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableLib.inf + UnitTestLib|UnitTestFrameworkPkg/Library/UnitTestLib/UnitTestLib.inf + UnitTestPersistenceLib|UnitTestFrameworkPkg/Library/UnitTestPersistenceLibNull/UnitTestPersistenceLibNull.inf + UnitTestResultReportLib|UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultReportLibDebugLib.inf [LibraryClasses.common.SEC] PlatformSecLib|UefiCpuPkg/Library/PlatformSecLibNull/PlatformSecLibNull.inf @@ -177,6 +180,10 @@ UefiCpuPkg/ResetVector/Vtf0/Bin/ResetVector.inf UefiCpuPkg/Library/SmmCpuRendezvousLib/SmmCpuRendezvousLib.inf UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableLib.inf + UefiCpuPkg/CpuExceptionHandlerUnitTest/PeiCpuExceptionHandlerLibUnitTest.inf + +[Components.X64] + UefiCpuPkg/CpuExceptionHandlerUnitTest/DxeCpuExceptionHandlerLibUnitTest.inf [BuildOptions] *_*_*_CC_FLAGS = -D DISABLE_NEW_DEPRECATED_INTERFACES -- 2.31.1.windows.1