From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mx.groups.io with SMTP id smtpd.web10.2859.1680906064108721671 for ; Fri, 07 Apr 2023 15:21:04 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=ldYg/ZBP; spf=pass (domain: intel.com, ip: 192.55.52.115, mailfrom: michael.d.kinney@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1680906064; x=1712442064; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=6qPH/rHGrFbz94oK3G3bASjwv+FqifsBYbfkwsEPAzU=; b=ldYg/ZBPMJch2ZMUR+Of9ZNQVt+WZ9G6tQVJx/zqayj9pZhygI2n2P3o HZ0WbCpuftwWkxUbRWPf2J6x6+kej7nuq7DV1mQOKMNyJKnzOluR8zwQU F3hB+bOH37BnLnyhEsuDsllqWI5tfgIspBsVskf8SRiV/UngIlnoUMD3p z2um5+b+pPfZi++RPMsszHBFtU5s38hk7avFf+vyP7FSFcmgHXf5Lwqa5 LioDCOKTI785slQGFwJrJgtY+fbIDU19bH/YklU8qCpNUReZzBIazL7up /MxKRy+og8jw8Sd3u1MHqyyGqxTw1244WO3TaOGfGh30h75cPN+dRTruo g==; X-IronPort-AV: E=McAfee;i="6600,9927,10673"; a="343085673" X-IronPort-AV: E=Sophos;i="5.98,328,1673942400"; d="scan'208";a="343085673" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Apr 2023 15:21:03 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10673"; a="690177489" X-IronPort-AV: E=Sophos;i="5.98,328,1673942400"; d="scan'208";a="690177489" Received: from mdkinney-mobl2.amr.corp.intel.com ([10.209.18.108]) by fmsmga007-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Apr 2023 15:21:03 -0700 From: "Michael D Kinney" To: devel@edk2.groups.io Cc: Jian J Wang , Liming Gao , Oliver Smith-Denny Subject: [Patch v3 11/12] MdeModulePkg: HOST_APPLICATION IA32/X64 only Date: Fri, 7 Apr 2023 15:20:49 -0700 Message-Id: <20230407222051.1095-12-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.39.1.windows.1 In-Reply-To: <20230407222051.1095-1-michael.d.kinney@intel.com> References: <20230407222051.1095-1-michael.d.kinney@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Update MdeModulePkg host-based unit test INF files to only list VALID_ARCHITECTURES of IA32 and X64 to align with all other host-based unit test INF files. The UnitTestFrameworkPkg only provides build support of host-based unit tests to OS applications for IA32 and X64. Cc: Jian J Wang Cc: Liming Gao Signed-off-by: Michael D Kinney Reviewed-by: Oliver Smith-Denny --- .../UnitTest/MockUefiRuntimeServicesTableLib.inf | 2 +- .../RuntimeDxeUnitTest/VariableLockRequestToLockUnitTest.inf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MdeModulePkg/Library/DxeResetSystemLib/UnitTest/MockUefiRuntimeServicesTableLib.inf b/MdeModulePkg/Library/DxeResetSystemLib/UnitTest/MockUefiRuntimeServicesTableLib.inf index 15eb646d7c38..24dc934f8d25 100644 --- a/MdeModulePkg/Library/DxeResetSystemLib/UnitTest/MockUefiRuntimeServicesTableLib.inf +++ b/MdeModulePkg/Library/DxeResetSystemLib/UnitTest/MockUefiRuntimeServicesTableLib.inf @@ -15,7 +15,7 @@ [Defines] LIBRARY_CLASS = UefiRuntimeServicesTableLib # -# VALID_ARCHITECTURES = IA32 X64 EBC +# VALID_ARCHITECTURES = IA32 X64 # [Sources] diff --git a/MdeModulePkg/Universal/Variable/RuntimeDxe/RuntimeDxeUnitTest/VariableLockRequestToLockUnitTest.inf b/MdeModulePkg/Universal/Variable/RuntimeDxe/RuntimeDxeUnitTest/VariableLockRequestToLockUnitTest.inf index 2a659d7e1370..59c743ad1fa6 100644 --- a/MdeModulePkg/Universal/Variable/RuntimeDxe/RuntimeDxeUnitTest/VariableLockRequestToLockUnitTest.inf +++ b/MdeModulePkg/Universal/Variable/RuntimeDxe/RuntimeDxeUnitTest/VariableLockRequestToLockUnitTest.inf @@ -15,7 +15,7 @@ [Defines] # # The following information is for reference only and not required by the build tools. # -# VALID_ARCHITECTURES = IA32 X64 ARM AARCH64 +# VALID_ARCHITECTURES = IA32 X64 # [Sources] -- 2.39.1.windows.1