From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id 06175941A30 for ; Fri, 9 Feb 2024 18:33:50 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=UDirFm95EveOEqvtiPDLObzE2zCevl/hC3rQ4Qnd6DA=; c=relaxed/simple; d=groups.io; h=From:To:Subject:Date:Message-Id:MIME-Version:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Transfer-Encoding; s=20140610; t=1707503629; v=1; b=q87y6+J/eX+QWIU4bDoePlA8rOOEZcAyrpSw4FT6SL9sRImpXECAspcivoGyuW1GZq6RXDx+ 5/YePhnuMFD+UMVmljy7mn94Yf8ADZiypbxEtvnwegk0FQW8YZCN15SlqQjTDhdDJbs2kfrgXwC NsA2+tmylMWaHndfw8yzFLsE= X-Received: by 127.0.0.2 with SMTP id WMwDYY7687511xa2tbQonsol; Fri, 09 Feb 2024 10:33:49 -0800 X-Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.13]) by mx.groups.io with SMTP id smtpd.web10.20021.1707503628985058043 for ; Fri, 09 Feb 2024 10:33:49 -0800 X-IronPort-AV: E=McAfee;i="6600,9927,10979"; a="4458800" X-IronPort-AV: E=Sophos;i="6.05,257,1701158400"; d="scan'208";a="4458800" X-Received: from fmviesa008.fm.intel.com ([10.60.135.148]) by fmvoesa107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Feb 2024 10:33:48 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.05,257,1701158400"; d="scan'208";a="2212132" X-Received: from mdkinney-mobl.amr.corp.intel.com ([10.209.59.192]) by fmviesa008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Feb 2024 10:33:48 -0800 From: "Michael D Kinney" To: devel@edk2.groups.io Subject: [edk2-devel] [edk2-stable202402][Patch V2 0/7] EDK II CI misses UnitTestFrameworkPkg failures Date: Fri, 9 Feb 2024 10:33:29 -0800 Message-Id: <20240209183336.1777-1-michael.d.kinney@intel.com> MIME-Version: 1.0 Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,michael.d.kinney@intel.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: smusmsX1Y3qU5Ta8lumWDE84x7686176AA= Content-Transfer-Encoding: 8bit X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20140610 header.b="q87y6+J/"; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=intel.com (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io The main bug is that EDK II CI can miss a unit test failure when a unit test generates an exception. Addressing this one issue required the following chain of changes to the UnitTestFrameworkPkg that are included in this patch series. New in V2 ========= * Include Throws() APIs in GoogleTestLib.h * Update GoogleTest samples to demonstrate use of EXPECT_THROW() and EXPECT_THAT() to test for more specific ASSERT() conditions including the ability to verify the specific ASSERT() expression that was triggered. ========= * For host-base VX20xx builds, use release builds by default to make sure unexpected exceptions are caught as a test failure. Using debug libraries may generate a popup window to prompt running a debugger, which is value for debug, but that mode does not generate an error in CI. * Update UNIT_TEST_DEBUG to enable use of VS20xx debug libraries to enable popup windows to run debugger. * Remove DebugLib.h internal macro name collision with windows.h that was introduced when release libraries are used by default. * Update MSFT and GCC flags to consistently enable structured exception handling so Google Test host-based unit tests that check for expected ASSERT() conditions can be properly detected. The additional benefit of this bug fix is that catching thrown exceptions is much faster than EXPECT_DEATH() tests. The gtest sample unit tests are updated to use ASSERT_ANY_THROW() instead of EXPECT_DEATH(). * In order to catch C++ exceptions for google test, the UnitTestDebugAssertLib has to be split into a target version and a host version and had to be able to detect the difference between cmock host-based tests and gtest host-based tests. This required minor changes to the UnitTestLib to be able to use the UnitTestLib GetFrameworkHandle() API to make that determination. It is NULL for gtest and non-NULL for cmocka. * In order to test the unit test failing conditions, unit tests the fail on purpose and unit tests that generate exceptions are added. These are not added to CI because that would cause CI to always fail. Instead, they can be run to make sure that reports generated provide the right level of detail for a developer to quickly identify the source of the unit test failure or the source of the exception. Cc: Michael Kubacki mikuback@linux.microsoft.com Cc: Sean Brogan sean.brogan@microsoft.com Cc: Liming Gao gaoliming@byosoft.com.cn Cc: Zhiguang Liu zhiguang.liu@intel.com Cc: Andrew Fish afish@apple.com Cc: Leif Lindholm quic_llindhol@quicinc.com Signed-off-by: Michael D Kinney michael.d.kinney@intel.com Michael D Kinney (7): MdePkg/Include: Rename _DEBUG() to address name collision UnitTestFrameworkPkg: MSFT CC_FLAGS add /MT to for host builds UnitTestFrameworkPkg: Expand host-based exception handling and gcov UnitTestFrameworkPkg/UnitTestLib: GetActiveFrameworkHandle() no ASSERT() UnitTestFrameworkPkg/UnitTestDebugAssertLib: Add GoogleTest support UnitTestFrameworkPkg/SampleGoogleTest: Use EXPECT_ANY_THROW() UnitTestFrameworkPkg: Add DSC and host tests that always fail MdePkg/Include/Library/DebugLib.h | 6 +- .../Include/Library/GoogleTestLib.h | 4 + .../Library/GoogleTestLib/GoogleTestLib.inf | 6 +- .../UnitTestDebugAssertLibHost.cpp | 63 ++ .../UnitTestDebugAssertLibHost.inf | 36 + .../UnitTestDebugAssertLibHost.uni | 11 + .../Library/UnitTestLib/Assert.c | 4 + .../Library/UnitTestLib/Log.c | 4 + .../Library/UnitTestLib/RunTests.c | 1 - .../Library/UnitTestLib/RunTestsCmocka.c | 1 - .../Library/UnitTestLib/UnitTestLib.c | 4 + UnitTestFrameworkPkg/ReadMe.md | 2 +- .../SampleGoogleTest/SampleGoogleTest.cpp | 39 +- .../SampleGoogleTestExpectFail.cpp} | 134 ++- .../SampleGoogleTestHostExpectFail.inf | 36 + .../SampleGoogleTestGenerateException.cpp | 54 ++ .../SampleGoogleTestHostGenerateException.inf | 39 + .../SampleUnitTestDxeExpectFail.inf | 41 + .../SampleUnitTestExpectFail.c | 861 ++++++++++++++++++ .../SampleUnitTestHostExpectFail.inf | 35 + .../SampleUnitTestPeiExpectFail.inf | 41 + .../SampleUnitTestSmmExpectFail.inf | 42 + .../SampleUnitTestUefiShellExpectFail.inf | 38 + .../SampleUnitTestDxeGenerateException.inf | 43 + .../SampleUnitTestGenerateException.c | 204 +++++ .../SampleUnitTestHostGenerateException.inf | 37 + .../SampleUnitTestPeiGenerateException.inf | 43 + .../SampleUnitTestSmmGenerateException.inf | 44 + ...mpleUnitTestUefiShellGenerateException.inf | 40 + .../Test/UnitTestFrameworkPkgHostTest.dsc | 1 + ...UnitTestFrameworkPkgHostTestExpectFail.dsc | 44 + .../UnitTestFrameworkPkg.ci.yaml | 18 +- UnitTestFrameworkPkg/UnitTestFrameworkPkg.dsc | 26 + .../UnitTestFrameworkPkgHost.dsc.inc | 11 +- .../UnitTestFrameworkPkgTarget.dsc.inc | 14 + 35 files changed, 1973 insertions(+), 54 deletions(-) create mode 100644 UnitTestFrameworkPkg/Library/UnitTestDebugAssertLib/UnitTestDebugAssertLibHost.cpp create mode 100644 UnitTestFrameworkPkg/Library/UnitTestDebugAssertLib/UnitTestDebugAssertLibHost.inf create mode 100644 UnitTestFrameworkPkg/Library/UnitTestDebugAssertLib/UnitTestDebugAssertLibHost.uni copy UnitTestFrameworkPkg/Test/GoogleTest/Sample/{SampleGoogleTest/SampleGoogleTest.cpp => SampleGoogleTestExpectFail/SampleGoogleTestExpectFail.cpp} (52%) create mode 100644 UnitTestFrameworkPkg/Test/GoogleTest/Sample/SampleGoogleTestExpectFail/SampleGoogleTestHostExpectFail.inf create mode 100644 UnitTestFrameworkPkg/Test/GoogleTest/Sample/SampleGoogleTestGenerateException/SampleGoogleTestGenerateException.cpp create mode 100644 UnitTestFrameworkPkg/Test/GoogleTest/Sample/SampleGoogleTestGenerateException/SampleGoogleTestHostGenerateException.inf create mode 100644 UnitTestFrameworkPkg/Test/UnitTest/Sample/SampleUnitTestExpectFail/SampleUnitTestDxeExpectFail.inf create mode 100644 UnitTestFrameworkPkg/Test/UnitTest/Sample/SampleUnitTestExpectFail/SampleUnitTestExpectFail.c create mode 100644 UnitTestFrameworkPkg/Test/UnitTest/Sample/SampleUnitTestExpectFail/SampleUnitTestHostExpectFail.inf create mode 100644 UnitTestFrameworkPkg/Test/UnitTest/Sample/SampleUnitTestExpectFail/SampleUnitTestPeiExpectFail.inf create mode 100644 UnitTestFrameworkPkg/Test/UnitTest/Sample/SampleUnitTestExpectFail/SampleUnitTestSmmExpectFail.inf create mode 100644 UnitTestFrameworkPkg/Test/UnitTest/Sample/SampleUnitTestExpectFail/SampleUnitTestUefiShellExpectFail.inf create mode 100644 UnitTestFrameworkPkg/Test/UnitTest/Sample/SampleUnitTestGenerateException/SampleUnitTestDxeGenerateException.inf create mode 100644 UnitTestFrameworkPkg/Test/UnitTest/Sample/SampleUnitTestGenerateException/SampleUnitTestGenerateException.c create mode 100644 UnitTestFrameworkPkg/Test/UnitTest/Sample/SampleUnitTestGenerateException/SampleUnitTestHostGenerateException.inf create mode 100644 UnitTestFrameworkPkg/Test/UnitTest/Sample/SampleUnitTestGenerateException/SampleUnitTestPeiGenerateException.inf create mode 100644 UnitTestFrameworkPkg/Test/UnitTest/Sample/SampleUnitTestGenerateException/SampleUnitTestSmmGenerateException.inf create mode 100644 UnitTestFrameworkPkg/Test/UnitTest/Sample/SampleUnitTestGenerateException/SampleUnitTestUefiShellGenerateException.inf create mode 100644 UnitTestFrameworkPkg/Test/UnitTestFrameworkPkgHostTestExpectFail.dsc -- 2.40.1.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#115315): https://edk2.groups.io/g/devel/message/115315 Mute This Topic: https://groups.io/mt/104264743/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-