From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mx.groups.io with SMTP id smtpd.web08.37525.1665983618245646159 for ; Sun, 16 Oct 2022 22:13:38 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=i/YZ5SYb; spf=pass (domain: intel.com, ip: 192.55.52.136, 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=1665983618; x=1697519618; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=oSQMCe9Kj1DM1juLoKh6Q7rKJ+aS7h8CM5NE4mzJIzA=; b=i/YZ5SYb1XiwacIsyGZNmsGzJaQudR/2Hdm6bzlHA1zgR6zq6gAzKPDF QrAKBiG2XFl2ujBSh7o+olBCUAxYW2Tt7+y2pg6kWcLm22bxVfDIb2qe9 EtdxNYcZ64/5PcKnek1Xu5Kbr+/AIgAE1I7FpBGwyGeB68x6l3PJ9R69Z yeAH6t1lrdW+puMOleh9db5G6jkr0oL9QGTBxig4pToF9rYKLTO52/ip+ BcxzHtFF8H+GXjHnPiNfeFeqKXa3zkNhAPrldJsYuS3mU9h8vU3QDp9G6 uzRGL9freGHoOw325OhVbZh7tQPovLfevO9PVflU+QvUMfeWZKGkpr9Eg Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10502"; a="285435290" X-IronPort-AV: E=Sophos;i="5.95,190,1661842800"; d="scan'208";a="285435290" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Oct 2022 22:12:16 -0700 X-IronPort-AV: E=McAfee;i="6500,9779,10502"; a="661361833" X-IronPort-AV: E=Sophos;i="5.95,190,1661842800"; d="scan'208";a="661361833" Received: from shwdeopenlab702.ccr.corp.intel.com ([10.239.56.220]) by orsmga001-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Oct 2022 22:12:15 -0700 From: "duntan" To: devel@edk2.groups.io Cc: Eric Dong , Ray Ni , Rahul Kumar Subject: [Patch V4 4/4] UefiCpuPkg: Add R8/R9 etc in EccCheck ExceptionList Date: Mon, 17 Oct 2022 13:11:28 +0800 Message-Id: <20221017051128.781-5-dun.tan@intel.com> X-Mailer: git-send-email 2.31.1.windows.1 In-Reply-To: <20221017051128.781-1-dun.tan@intel.com> References: <20221017051128.781-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 Cc: 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