From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mx.groups.io with SMTP id smtpd.web08.5230.1665739248923167542 for ; Fri, 14 Oct 2022 02:20:52 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=H2syC8AR; spf=pass (domain: intel.com, ip: 192.55.52.43, 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=1665739252; x=1697275252; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=nc3TuHHBCMZTq/pN0WlPBWQt5P5FbuztcS4vMazurKo=; b=H2syC8AREp6hG9hgMxZQsLKDtJ6j4JIOMGgk7zs1kHr1yJJQBlVh17or juukdzfucAeB4Y9Wv+UL4wEJlvDS2f6dJRnLANC9LHnvbtp3fHdkAGi6/ KDB2dzRwcwABYYdgaIA8pM5SeKddjdPgPR+f1lMPzW3srCNttopPOyCOH WC6THT8amIVvPNHKrjz9lmBEbr+nrPIt20/G6r9TSrgLO2J0RgyghEoCc PyR4GkcdMQI2Zg4YHhZ4+J2UI49qb6o8jBgql1Fh1XBwbbkXhP1focLTY 9kkcnFp7/1B+9d1bSBWCB9vodQC15RGciuR7MWrQGrfiBwnmXzQGGeEZa w==; X-IronPort-AV: E=McAfee;i="6500,9779,10499"; a="391639724" X-IronPort-AV: E=Sophos;i="5.95,182,1661842800"; d="scan'208";a="391639724" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Oct 2022 02:20:52 -0700 X-IronPort-AV: E=McAfee;i="6500,9779,10499"; a="627510874" X-IronPort-AV: E=Sophos;i="5.95,182,1661842800"; d="scan'208";a="627510874" Received: from shwdeopenlab702.ccr.corp.intel.com ([10.239.56.220]) by orsmga002-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Oct 2022 02:20:50 -0700 From: "duntan" To: devel@edk2.groups.io Cc: Eric Dong , Ray Ni , Rahul Kumar Subject: [Patch V3 3/4] UefiCpuPkg: Add Pei/DxeCpuExceptionHandlerLibUnitTest in dsc Date: Fri, 14 Oct 2022 17:19:30 +0800 Message-Id: <20221014091931.847-4-dun.tan@intel.com> X-Mailer: git-send-email 2.31.1.windows.1 In-Reply-To: <20221014091931.847-1-dun.tan@intel.com> References: <20221014091931.847-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 Reviewed-by: 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