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.web10.438.1637702497831743022 for ; Tue, 23 Nov 2021 13:21:38 -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="233855184" X-IronPort-AV: E=Sophos;i="5.87,258,1631602800"; d="scan'208";a="233855184" 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:37 -0800 X-IronPort-AV: E=Sophos;i="5.87,258,1631602800"; d="scan'208";a="674631599" 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:37 -0800 From: "Michael D Kinney" To: devel@edk2.groups.io Cc: Liming Gao , Zhiguang Liu , Sean Brogan , Bret Barkelew , Michael Kubacki Subject: [Patch 07/12] MdePkg: Update YAML to ignore specific ECC files/errors Date: Tue, 23 Nov 2021 13:21:17 -0800 Message-Id: <20211123212122.1348-8-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: Liming Gao Cc: Zhiguang Liu Cc: Sean Brogan Cc: Bret Barkelew Cc: Liming Gao Cc: Michael Kubacki Signed-off-by: Michael D Kinney --- MdePkg/MdePkg.ci.yaml | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/MdePkg/MdePkg.ci.yaml b/MdePkg/MdePkg.ci.yaml index 3ea8eec33152..054233ebc7bd 100644 --- a/MdePkg/MdePkg.ci.yaml +++ b/MdePkg/MdePkg.ci.yaml @@ -17,10 +17,42 @@ ## "", "" ## ] "ExceptionList": [ + "9005", "@VDD", + "8005", "gST", + "8005", "gBS", + "8005", "gDS", + "8005", "gDS", + "8002", "va_list", + "8005", "EFI_BLUETOOTH_LE_SCAN_CALLBACK_INFORMATION.RSSI", + "8005", "void", + "8005", "va_list.__ap", + "8005", "__stack_chk_guard", + "8001", "MSG_IPv6_DP", + "8001", "MSG_IPv4_DP", + "8001", "DEFAULT_ToS", + "8001", "EFI_SERIAL_IO_PROTOCOL_REVISION1p1", + "8001", "EFI_ABS_AltActive", + "8001", "EFI_ABSP_SupportsAltActive", + "8001", "_ReadWriteBarrier", + "8001", "__va_copy", + "8003", "__va_copy", + "7007", "_EFI_LEGACY_SPI_CONTROLLER_PROTOCOL", + "7007", "_EFI_LEGACY_SPI_FLASH_PROTOCOL", + "7007", "_EFI_SPI_NOR_FLASH_PROTOCOL", + "7007", "_EFI_SPI_HC_PROTOCOL", + "8002", "aligned (", + "4002", "_ReturnAddress" ], ## Both file path and directory path are accepted. "IgnoreFiles": [ - "Include/IndustryStandard/Acpi64.h" + "Include/IndustryStandard/Acpi64.h", + "Include/IndustryStandard/Tpm12.h", + "Include/IndustryStandard/Tpm20.h", + "Include/IndustryStandard/IoRemappingTable.h", + "Include/IndustryStandard/UefiTcgPlatform.h", + "Include/Library/PcdLib.h", + "Include/Library/SafeIntLib.h", + "Test/UnitTest/Library/BaseSafeIntLib/TestBaseSafeIntLib.c" ] }, ## options defined ci/Plugin/CompilerPlugin -- 2.32.0.windows.1