From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mx.groups.io with SMTP id smtpd.web09.38046.1665988560313180619 for ; Sun, 16 Oct 2022 23:36:09 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=jDDiYWSv; spf=pass (domain: intel.com, ip: 134.134.136.20, 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=1665988569; x=1697524569; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=gNKv2vcuupPxl6zk4RlS2DQ9zkMdcoIRpANEW0PC9Fs=; b=jDDiYWSv8JZvHhsEBAcjAx3Q5JBz753908LqBeg2NBQ8b3JAlKsFBa5o bkWxugPKAF2wKsjqh3zjXbdLhoPlD7Cvv9rtC3bTwjo1WQ8mcoKZNuCPX 2Cb5ZvyeVMaMPSgaJ/Pq/xPc9nJd1vHxipCyoQFL5f2t/hSHLSO3UkUq6 G782Q+aekFkEFq0BM8xTM3l/4o3g8oUTJ/Kb6I12wquqYpoC2VzyxVm/N 91Wj9eJvMuWrRZbr+Nz4wS07jqtVg6a7xids/Y/Z307NTYfChYnKvQse5 Av9ggBCkgZCxHBPserhASMJMVvIuNaN0S1vcFRP+MAwo1nisuN5h9nqT1 A==; X-IronPort-AV: E=McAfee;i="6500,9779,10502"; a="293086632" X-IronPort-AV: E=Sophos;i="5.95,190,1661842800"; d="scan'208";a="293086632" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Oct 2022 23:36:09 -0700 X-IronPort-AV: E=McAfee;i="6500,9779,10502"; a="623125948" X-IronPort-AV: E=Sophos;i="5.95,190,1661842800"; d="scan'208";a="623125948" Received: from shwdeopenlab702.ccr.corp.intel.com ([10.239.56.220]) by orsmga007-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Oct 2022 23:36:07 -0700 From: "duntan" To: devel@edk2.groups.io Cc: Eric Dong , Ray Ni , Rahul Kumar Subject: [Patch V5 4/4] UefiCpuPkg: Add R8/R9 etc in EccCheck ExceptionList Date: Mon, 17 Oct 2022 14:35:42 +0800 Message-Id: <20221017063542.1684-5-dun.tan@intel.com> X-Mailer: git-send-email 2.31.1.windows.1 In-Reply-To: <20221017063542.1684-1-dun.tan@intel.com> References: <20221017063542.1684-1-dun.tan@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Add GENERAL_REGISTER.R8/R9 etc in EccCheck ExceptionList of UefiCpuPkg/UefiCpuPkg.ci.yaml to pass CI EccCheck.R8/R9 in structure GENERAL_REGISTER of CpuExceptionHandlerTest.h lead to EccCheck failure since no lower case characters in R8/R9/R10 etc. Signed-off-by: Dun Tan Cc: Eric Dong Reviewed-by: Ray Ni Cc: Rahul Kumar --- UefiCpuPkg/UefiCpuPkg.ci.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/UefiCpuPkg/UefiCpuPkg.ci.yaml b/UefiCpuPkg/UefiCpuPkg.ci.yaml index bbdc44a45b..a377366798 100644 --- a/UefiCpuPkg/UefiCpuPkg.ci.yaml +++ b/UefiCpuPkg/UefiCpuPkg.ci.yaml @@ -15,7 +15,15 @@ ## "", "" ## ] "ExceptionList": [ - "8006", "main" + "8006", "main", + "8005", "GENERAL_REGISTER.R8", + "8005", "GENERAL_REGISTER.R9", + "8005", "GENERAL_REGISTER.R10", + "8005", "GENERAL_REGISTER.R11", + "8005", "GENERAL_REGISTER.R12", + "8005", "GENERAL_REGISTER.R13", + "8005", "GENERAL_REGISTER.R14", + "8005", "GENERAL_REGISTER.R15" ], ## Both file path and directory path are accepted. "IgnoreFiles": [ -- 2.31.1.windows.1