From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mx.groups.io with SMTP id smtpd.web11.440.1637702496165077744 for ; Tue, 23 Nov 2021 13:21:36 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.120, mailfrom: michael.d.kinney@intel.com) X-IronPort-AV: E=McAfee;i="6200,9189,10177"; a="233855156" X-IronPort-AV: E=Sophos;i="5.87,258,1631602800"; d="scan'208";a="233855156" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Nov 2021 13:21:35 -0800 X-IronPort-AV: E=Sophos;i="5.87,258,1631602800"; d="scan'208";a="674631577" Received: from mdkinney-mobl2.amr.corp.intel.com ([10.209.59.198]) by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Nov 2021 13:21:35 -0800 From: "Michael D Kinney" To: devel@edk2.groups.io Cc: Jiewen Yao , Jian J Wang , Xiaoyu Lu , Guomin Jiang , Sean Brogan , Bret Barkelew , Liming Gao , Michael Kubacki Subject: [Patch 04/12] CryptoPkg: Update YAML to ignore specific ECC files/errors Date: Tue, 23 Nov 2021 13:21:14 -0800 Message-Id: <20211123212122.1348-5-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.32.0.windows.1 In-Reply-To: <20211123212122.1348-1-michael.d.kinney@intel.com> References: <20211123212122.1348-1-michael.d.kinney@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3749 Update package YAML files to ignore ECC errors that are already present. These issues must be fixed in the future, but should not block source code changes for these known issues. Cc: Jiewen Yao Cc: Jian J Wang Cc: Xiaoyu Lu Cc: Guomin Jiang Cc: Sean Brogan Cc: Bret Barkelew Cc: Liming Gao Cc: Michael Kubacki Signed-off-by: Michael D Kinney --- CryptoPkg/CryptoPkg.ci.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/CryptoPkg/CryptoPkg.ci.yaml b/CryptoPkg/CryptoPkg.ci.yaml index 1448299073de..eeb388ae71c5 100644 --- a/CryptoPkg/CryptoPkg.ci.yaml +++ b/CryptoPkg/CryptoPkg.ci.yaml @@ -19,6 +19,9 @@ ## "", "" ## ] "ExceptionList": [ + "8001", "IsLeap", + "8001", "OBJ_get0_data", + "8001", "OBJ_length" ], ## Both file path and directory path are accepted. "IgnoreFiles": [ @@ -26,14 +29,15 @@ # The unit testing folder is not to be checked "Test/UnitTest", # This has OpenSSL interfaces that aren't UEFI spec compliant - "Library/BaseCryptLib/SysCall/UnitTestHostCrtWrapper.c", + "Library/BaseCryptLib/SysCall", # This has OpenSSL interfaces that aren't UEFI spec compliant "Library/OpensslLib/rand_pool.c", # This has OpenSSL interfaces that aren't UEFI spec compliant "Library/Include/CrtLibSupport.h", # These directories contain auto-generated OpenSSL content - "Library/OpensslLib/X64", - "Library/OpensslLib/X64Gcc" + "Library/OpensslLib", + "Library/IntrinsicLib", + "Library/BaseCryptLib/Pk/CryptPkcs7VerifyBase.c" ] }, "CompilerPlugin": { -- 2.32.0.windows.1