From nobody Mon Apr 29 19:59:04 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) client-ip=66.175.222.108; envelope-from=bounce+27952+94387+1787277+3901457@groups.io; helo=mail02.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+94387+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=intel.com ARC-Seal: i=1; a=rsa-sha256; t=1664253584; cv=none; d=zohomail.com; s=zohoarc; b=RArLlktWSOXvJ9+c+rQtquYB8oA3ScY+Jjz6E+vcNKs6wPTmMk1IUUdC37UtrDPXxN6ciyaSAiZhEiqaK3rJT9KBQv21MFWWkWLUl9eAf2Zmg5laAFNUPmTZSVlJuWvmxYA2cRpSSr2+BDucbqst24Jofl2LkYMJoHK0KMIsy1g= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1664253584; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To; bh=DqfRWqtt3EulvSJ+kCRaEHfIsRjXf1Uj6dew/gff81E=; b=EtiEkehQqk2su0U1qELsGldvjkeF20gLBGrQXktEfkqkkSk6ojD6yuRqVK3M+KzjeFRI+zyGcQ+K7fe8hUZVO1LNQD7WF9dlJAFumx0OTvVDa3nKHYDbe1hBbmIbC3N5A2TWwYxtFsPKFkFkPGKhNjOBjyzyBKKkz1uzTfQ6QCA= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+94387+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by mx.zohomail.com with SMTPS id 1664253584471559.0700858016118; Mon, 26 Sep 2022 21:39:44 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id gmSRYY1788612xXDbGKR5WYT; Mon, 26 Sep 2022 21:39:44 -0700 X-Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mx.groups.io with SMTP id smtpd.web11.7311.1664253582300073213 for ; Mon, 26 Sep 2022 21:39:43 -0700 X-IronPort-AV: E=McAfee;i="6500,9779,10482"; a="299935607" X-IronPort-AV: E=Sophos;i="5.93,348,1654585200"; d="scan'208";a="299935607" X-Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Sep 2022 21:39:42 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10482"; a="621376259" X-IronPort-AV: E=Sophos;i="5.93,348,1654585200"; d="scan'208";a="621376259" X-Received: from gguo-desk.gar.corp.intel.com ([10.5.215.23]) by orsmga002.jf.intel.com with ESMTP; 26 Sep 2022 21:39:41 -0700 From: "Guo, Gua" To: devel@edk2.groups.io Cc: Gua Guo , Michael D Kinney , Sean Brogan , Bret Barkelew , Michael Kubacki Subject: [edk2-devel] [PATCH v4 1/3] UnitTestFrameworkPkg: Add code coverage support for GCC Date: Tue, 27 Sep 2022 12:39:35 +0800 Message-Id: <20220927043937.549-2-gua.guo@intel.com> In-Reply-To: <20220927043937.549-1-gua.guo@intel.com> References: <20220927043937.549-1-gua.guo@intel.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: 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,gua.guo@intel.com X-Gm-Message-State: CtKilz3GC1Dp9DaPTluzJt2ox1787277AA= Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1664253584; bh=P2DYzxt/26687XpaxH8mGlUNQzX1znelYFLXW1WRqvw=; h=Cc:Date:From:Reply-To:Subject:To; b=h9yq4aoyeJnTBtjwcR7jnpQ4ViLwLOyNL4ZokgnSAa8vCwfe0/3LxZuxCCVzjxdTtAf o51Y2xczoI9AibHAPMNO0v5DMzWROAiTsAY258At2zaTHf/gzwFaaICSJCD8Eo3RupKWq t6rFIV2TxyJdnhBX60bQPoDLQorADmI2Ynw= X-ZohoMail-DKIM: pass (identity @groups.io) X-ZM-MESSAGEID: 1664253585505100003 Content-Type: text/plain; charset="utf-8" From: Gua Guo In order to collect code coverage after running executable file, generate *.gcda and *.gcno file that require by lcov tool to generate code coverage report. Cc: Michael D Kinney Cc: Sean Brogan Cc: Bret Barkelew Cc: Michael Kubacki Signed-off-by: Gua Guo --- UnitTestFrameworkPkg/ReadMe.md | 31 +++++++++++++++= +++-- UnitTestFrameworkPkg/UnitTestFrameworkPkg.ci.yaml | 2 ++ UnitTestFrameworkPkg/UnitTestFrameworkPkgHost.dsc.inc | 3 +- 3 files changed, 32 insertions(+), 4 deletions(-) diff --git a/UnitTestFrameworkPkg/ReadMe.md b/UnitTestFrameworkPkg/ReadMe.md index e696412cb3..3bc946a463 100644 --- a/UnitTestFrameworkPkg/ReadMe.md +++ b/UnitTestFrameworkPkg/ReadMe.md @@ -60,7 +60,7 @@ you should be good to go. =20 See this example in 'SampleUnitTestUefiShell.inf'... =20 -``` +```inf [Packages] MdePkg/MdePkg.dec =20 @@ -75,7 +75,7 @@ See this example in 'SampleUnitTestUefiShell.inf'... Also, if you want you test to automatically be picked up by the Test Runne= r plugin, you will need to make sure that the module `BASE_NAME` contains the word `Test`... =20 -``` +```inf [Defines] BASE_NAME =3D SampleUnitTestUefiShell ``` @@ -361,7 +361,7 @@ RUNNING TEST SUITE: Int Safe Conversions Test Suite ``` =20 You can also, if you are so inclined, read the output from the exact insta= nce of the test that was run during -`stuart_ci_build`. The ouput file can be found on a path that looks like: +`stuart_ci_build`. The output file can be found on a path that looks like: =20 `Build//HostTest//...result.= xml` =20 @@ -399,6 +399,31 @@ CMOCKA_XML_FILE=3D =20 This mode is used by the test running plugin to aggregate the results for = CI test status reporting in the web view. =20 +### Code Coverage + +Host based Unit Tests will automatically i enable coverage data. +This is primarily leveraged for pipeline builds, but this can be leveraged= locally using the +lcov linux tool, and parsed using the lcov_cobertura python tool. pycobert= ura is used to +covert this coverage data to a human readable HTML file. These tools must = be installed +to parse code coverage. + +- Windows Prerequisite + ```bash + Download and install https://github.com/OpenCppCoverage/OpenCppCoverage/= tags + ``` + +- Linux Prerequisite + ```bash + sudo apt-get install -y lcov + ``` + + +Example +```bash + stuart_ci_build -c .pytool/CISettings.py -t NOOPT TOOL_CHAIN_TAG=3DVS20= 19 -p MdeModulePkg + Open Build/coverage.html +``` + ### Important Note =20 This works on both Windows and Linux, but is currently limited to x64 arch= itectures. Working on getting others, but we diff --git a/UnitTestFrameworkPkg/UnitTestFrameworkPkg.ci.yaml b/UnitTestFr= ameworkPkg/UnitTestFrameworkPkg.ci.yaml index 77d51e1348..f68882e1cf 100644 --- a/UnitTestFrameworkPkg/UnitTestFrameworkPkg.ci.yaml +++ b/UnitTestFrameworkPkg/UnitTestFrameworkPkg.ci.yaml @@ -90,6 +90,8 @@ "pytools", "NOFAILURE", "cmockery", + "cobertura", + "pycobertura", "DHAVE", # build flag for cmocka in the INF "corthon", # Contact GitHub account in Readme "mdkinney", # Contact GitHub account in Readme diff --git a/UnitTestFrameworkPkg/UnitTestFrameworkPkgHost.dsc.inc b/UnitTe= stFrameworkPkg/UnitTestFrameworkPkgHost.dsc.inc index 4dd8d4ac67..ca46b8513a 100644 --- a/UnitTestFrameworkPkg/UnitTestFrameworkPkgHost.dsc.inc +++ b/UnitTestFrameworkPkg/UnitTestFrameworkPkgHost.dsc.inc @@ -25,7 +25,8 @@ GCC:*_*_*_CC_FLAGS =3D -D UNIT_TESTING_DEBUG=3D1 XCODE:*_*_*_CC_FLAGS =3D -D UNIT_TESTING_DEBUG=3D1 !endif - + GCC:*_GCC5_*_CC_FLAGS =3D --coverage + GCC:*_GCC5_*_DLINK_FLAGS =3D --coverage [BuildOptions.common.EDKII.HOST_APPLICATION] # # MSFT --=20 2.31.1.windows.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#94387): https://edk2.groups.io/g/devel/message/94387 Mute This Topic: https://groups.io/mt/93943730/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Mon Apr 29 19:59:04 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) client-ip=66.175.222.108; envelope-from=bounce+27952+94388+1787277+3901457@groups.io; helo=mail02.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+94388+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=intel.com ARC-Seal: i=1; a=rsa-sha256; t=1664253586; cv=none; d=zohomail.com; s=zohoarc; b=efHCsxd5FWfkQYMgRogNUmdaY1FOSBNhMrpNXQGXLvzQP6BsaZdmkI0aAaVBQ2s7LJf7II97bTJ3yi7WNnAwkA4keSR/JM1iAn9h5Phf/V1hsQimPdVK5RjE9sf4XtZys185Q0OPYxg3LDHEG4oen951NC4gR8fYj6lZFlUN4w8= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1664253586; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To; bh=bIp5CsLfe72ZOZk3pdyO/XM394YxaRY1in4XFQj9uR4=; b=jp50Lg16MBrVhWMk4r3KCsC08ViBUol3VOYhbG5rLNmIC8jaBY9D2zw+wxPhDCIT2lpZJxkdtO4Y+8ukHCchWUy4t/KgQWAuD9n5OA2rplKxLWX7afwu1aQlrlyNIX8Dn/kqkv1L5+QcqPMzOKXcetbMtLz6FJv8OxSFsXMep5o= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+94388+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by mx.zohomail.com with SMTPS id 1664253586842142.50254818205497; Mon, 26 Sep 2022 21:39:46 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id AUnsYY1788612xjKTbTXPzd0; Mon, 26 Sep 2022 21:39:45 -0700 X-Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mx.groups.io with SMTP id smtpd.web11.7311.1664253582300073213 for ; Mon, 26 Sep 2022 21:39:44 -0700 X-IronPort-AV: E=McAfee;i="6500,9779,10482"; a="299935612" X-IronPort-AV: E=Sophos;i="5.93,348,1654585200"; d="scan'208";a="299935612" X-Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Sep 2022 21:39:44 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10482"; a="621376277" X-IronPort-AV: E=Sophos;i="5.93,348,1654585200"; d="scan'208";a="621376277" X-Received: from gguo-desk.gar.corp.intel.com ([10.5.215.23]) by orsmga002.jf.intel.com with ESMTP; 26 Sep 2022 21:39:42 -0700 From: "Guo, Gua" To: devel@edk2.groups.io Cc: Gua Guo , Bob Feng , Liming Gao , Bret Barkelew , Michael D Kinney , Sean Brogan Subject: [edk2-devel] [PATCH v4 2/3] BaseTools/Plugin: Add coverage support for Unit Test Date: Tue, 27 Sep 2022 12:39:36 +0800 Message-Id: <20220927043937.549-3-gua.guo@intel.com> In-Reply-To: <20220927043937.549-1-gua.guo@intel.com> References: <20220927043937.549-1-gua.guo@intel.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: 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,gua.guo@intel.com X-Gm-Message-State: f9LeppLQKg7Gvou6NyaLs2O0x1787277AA= Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1664253585; bh=1RJY8l6hkMeSGYA6W2EArDmboPxfi+7xpAcTL0hkGUI=; h=Cc:Date:From:Reply-To:Subject:To; b=TOHM7We5AXDH007ig5n9vh0sxDMOvFAoEs+CSRFDSYRZrAQdkvxhw7hjoQFreYC6VBA ck6NZ0F3spN7PUSHI26in4OPZe+udpiP8CdtoRtBKtJoIGvUu8mXKWDmL/I6gCvVyI2mo YBGY/Kx5fkeEjjnDGpcZ9yXNU1mVAHzf6nc= X-ZohoMail-DKIM: pass (identity @groups.io) X-ZM-MESSAGEID: 1664253587488100012 Content-Type: text/plain; charset="utf-8" From: Gua Guo For GCC, use lcov to generate Unit Test code coverage report For VS2019, use OpenCppCoverage to generate code coverage report Cc: Bob Feng Cc: Liming Gao Cc: Bret Barkelew Cc: Michael D Kinney Cc: Sean Brogan Signed-off-by: Gua Guo --- BaseTools/Plugin/HostBasedUnitTestRunner/HostBasedUnitTestRunner.py | 119 = ++++++++++++++++++++ 1 file changed, 119 insertions(+) diff --git a/BaseTools/Plugin/HostBasedUnitTestRunner/HostBasedUnitTestRunn= er.py b/BaseTools/Plugin/HostBasedUnitTestRunner/HostBasedUnitTestRunner.py index c1eeaf2625..d92de236dc 100644 --- a/BaseTools/Plugin/HostBasedUnitTestRunner/HostBasedUnitTestRunner.py +++ b/BaseTools/Plugin/HostBasedUnitTestRunner/HostBasedUnitTestRunner.py @@ -112,4 +112,123 @@ class HostBasedUnitTestRunner(IUefiBuildPlugin): " %s - %s" % (case.attrib['na= me'], result.text)) failure_count +=3D 1 =20 + if thebuilder.env.GetValue("TOOL_CHAIN_TAG") =3D=3D "GCC5": + self.gen_code_coverage_gcc(thebuilder) + elif thebuilder.env.GetValue("TOOL_CHAIN_TAG") =3D=3D "VS2019": + self.gen_code_coverage_msvc(thebuilder) + else: + logging.info("Skipping code coverage. Only supported on GC= C.") + return failure_count + + def gen_code_coverage_gcc(self, thebuilder): + logging.info("Generating UnitTest code coverage") + + buildOutputBase =3D thebuilder.env.GetValue("BUILD_OUTPUT_BASE") + workspace =3D thebuilder.env.GetValue("WORKSPACE") + + # Generate base code coverage for all source files + ret =3D RunCmd("lcov", f"--no-external --capture --initial --direc= tory {buildOutputBase} --output-file {buildOutputBase}/cov-base.info --rc l= cov_branch_coverage=3D1") + if(ret !=3D 0): + logging.error("UnitTest Coverage: Failed to build initial cove= rage data.") + return 1 + + # Coverage data for tested files only + ret =3D RunCmd("lcov", f"--capture --directory {buildOutputBase}/ = --output-file {buildOutputBase}/coverage-test.info --rc lcov_branch_coverag= e=3D1") + if(ret !=3D 0): + logging.error("UnitTest Coverage: Failed to build coverage dat= a for tested files.") + return 1 + + # Aggregate all coverage data + ret =3D RunCmd("lcov", f"--add-tracefile {buildOutputBase}/cov-bas= e.info --add-tracefile {buildOutputBase}/coverage-test.info --output-file {= buildOutputBase}/total-coverage.info --rc lcov_branch_coverage=3D1") + if(ret !=3D 0): + logging.error("UnitTest Coverage: Failed to aggregate coverage= data.") + return 1 + + # Generate coverage XML + ret =3D RunCmd("lcov_cobertura",f"{buildOutputBase}/total-coverage= .info -o {buildOutputBase}/compare.xml") + if(ret !=3D 0): + logging.error("UnitTest Coverage: Failed to generate coverage = XML.") + return 1 + + # Filter out auto-generated and test code + ret =3D RunCmd("lcov_cobertura",f"{buildOutputBase}/total-coverage= .info --excludes ^.*UnitTest\|^.*MU\|^.*Mock\|^.*DEBUG -o {buildOutputBase}= /coverage.xml") + if(ret !=3D 0): + logging.error("UnitTest Coverage: Failed generate filtered cov= erage XML.") + return 1 + + # Generate all coverage file + testCoverageList =3D glob.glob (f"{workspace}/Build/**/total-cover= age.info", recursive=3DTrue) + + coverageFile =3D "" + for testCoverage in testCoverageList: + coverageFile +=3D " --add-tracefile " + testCoverage + ret =3D RunCmd("lcov", f"{coverageFile} --output-file {workspace}/= Build/all-coverage.info --rc lcov_branch_coverage=3D1") + if(ret !=3D 0): + logging.error("UnitTest Coverage: Failed generate all coverage= file.") + return 1 + + # Generate and HTML file if requested.by each package + ret =3D RunCmd("pycobertura", f"show --format html --output {build= OutputBase}/coverage.html {buildOutputBase}/coverage.xml --source {workspac= e}") + if(ret !=3D 0): + logging.error("UnitTest Coverage: Failed to generate HTML in s= ingle package..") + + # Generate and HTML file if requested.for all package + if os.path.isfile(f"{workspace}/Build/coverage.xml"): + os.remove(f"{workspace}/Build/coverage.xml") + ret =3D RunCmd("lcov_cobertura",f"{workspace}/Build/all-coverage.i= nfo --excludes ^.*UnitTest\|^.*MU\|^.*Mock\|^.*DEBUG -o {workspace}/Build/c= overage.xml") + + if os.path.isfile(f"{workspace}/Build/coverage.html"): + os.remove(f"{workspace}/Build/coverage.html") + ret =3D RunCmd("pycobertura", f"show --format html --output {works= pace}/Build/coverage.html {workspace}/Build/coverage.xml --source {workspac= e}") + if(ret !=3D 0): + logging.error("UnitTest Coverage: Failed to generate HTML.") + + return 0 + + + def gen_code_coverage_msvc(self, thebuilder): + logging.info("Generating UnitTest code coverage") + + + buildOutputBase =3D thebuilder.env.GetValue("BUILD_OUTPUT_BASE") + testList =3D glob.glob(os.path.join(buildOutputBase, "**","*Test*.= exe"), recursive=3DTrue) + workspace =3D thebuilder.env.GetValue("WORKSPACE") + + # Generate coverage file + coverageFile =3D "" + for testFile in testList: + ret =3D RunCmd("OpenCppCoverage", f"--source {workspace} --exp= ort_type binary:{testFile}.cov -- {testFile}") + coverageFile +=3D " --input_coverage=3D" + testFile + ".cov" + if(ret !=3D 0): + logging.error("UnitTest Coverage: Failed to collect covera= ge data.") + return 1 + + # Generate and HTML file if requested.by each package + ret =3D RunCmd("OpenCppCoverage", f"--export_type cobertura:{build= OutputBase}/coverage.xml --working_dir=3D{workspace}/Build {coverageFile}") + if(ret !=3D 0): + logging.error("UnitTest Coverage: Failed to generate cobertura= format xml in single package.") + return 1 + + ret =3D RunCmd("pycobertura", f"show --format html --output {build= OutputBase}/cverage.html {buildOutputBase}/coverage.xml --source {workspace= }") + if(ret !=3D 0): + logging.error("UnitTest Coverage: Failed to generate HTML in s= ingle package.") + return 1 + + # Generate total report HTML file for all package + testCoverageList =3D glob.glob(os.path.join(workspace, "Build", "*= *","*Test*.exe.cov"), recursive=3DTrue) + coverageFile =3D "" + for testCoverage in testCoverageList: + coverageFile +=3D " --input_coverage=3D" + testCoverage + + ret =3D RunCmd("OpenCppCoverage", f"--export_type cobertura:{works= pace}/Build/coverage.xml --working_dir=3D{workspace}/Build {coverageFile}") + if(ret !=3D 0): + logging.error("UnitTest Coverage: Failed to generate cobertura= format xml.") + return 1 + + ret =3D RunCmd("pycobertura", f"show --format html --output {works= pace}/Build/coverage.html {workspace}/Build/coverage.xml --source {workspac= e}") + if(ret !=3D 0): + logging.error("UnitTest Coverage: Failed to generate HTML.") + return 1 + + return 0 --=20 2.31.1.windows.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#94388): https://edk2.groups.io/g/devel/message/94388 Mute This Topic: https://groups.io/mt/93943731/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Mon Apr 29 19:59:04 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) client-ip=66.175.222.108; envelope-from=bounce+27952+94389+1787277+3901457@groups.io; helo=mail02.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+94389+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=intel.com ARC-Seal: i=1; a=rsa-sha256; t=1664253587; cv=none; d=zohomail.com; s=zohoarc; b=CPi6gNLuwHZo4gIloPI8wjdPN0hJmKszJohgho502Rm0P1CP8ktefIVbc948D86AVyMSjF7eFLb7aXoP6RcyUdphmvlYkHJJC/eL0OhTs3jPZ296GZamk2DSyhMFWgU0Aj/9hl1jXhnK4WN9mxBDmpTkU70z7FIb9gTuHQ2Hz4Y= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1664253587; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To; bh=xIJ1fS9W3TA3cR0CNBftWjL1T6R0x/AF1pO46s+86p8=; b=bSfamIIZo3kQLrgcKm7mFZOjTqVVmnU15HTp7c7SMPJEJftofkX8ZbOWzBpn2BaWJLRnEipoe7C/tKbzuVzdBFv4woKvY4EXaQly8xSCBhtF1Eb4RWARuQPM6rLKLhzgguTN2vVjoL96iSNMn/tvMIUBo2QXRxHuWCRVYUwXKJo= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+94389+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by mx.zohomail.com with SMTPS id 1664253587222676.1742490452327; Mon, 26 Sep 2022 21:39:47 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id JAbIYY1788612xvJ0ASRJ0hy; Mon, 26 Sep 2022 21:39:46 -0700 X-Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mx.groups.io with SMTP id smtpd.web11.7311.1664253582300073213 for ; Mon, 26 Sep 2022 21:39:46 -0700 X-IronPort-AV: E=McAfee;i="6500,9779,10482"; a="299935617" X-IronPort-AV: E=Sophos;i="5.93,348,1654585200"; d="scan'208";a="299935617" X-Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Sep 2022 21:39:46 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10482"; a="621376299" X-IronPort-AV: E=Sophos;i="5.93,348,1654585200"; d="scan'208";a="621376299" X-Received: from gguo-desk.gar.corp.intel.com ([10.5.215.23]) by orsmga002.jf.intel.com with ESMTP; 26 Sep 2022 21:39:44 -0700 From: "Guo, Gua" To: devel@edk2.groups.io Cc: Gua Guo , Sean Brogan , Bret Barkelew , Michael D Kinney , Liming Gao Subject: [edk2-devel] [PATCH v4 3/3] .azurepipelines: Install code coverage tool Date: Tue, 27 Sep 2022 12:39:37 +0800 Message-Id: <20220927043937.549-4-gua.guo@intel.com> In-Reply-To: <20220927043937.549-1-gua.guo@intel.com> References: <20220927043937.549-1-gua.guo@intel.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: 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,gua.guo@intel.com X-Gm-Message-State: 5p9xE5rriPPoNvd61LetAggmx1787277AA= Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1664253586; bh=/vUws+TbKzQjvs+19MUtkj5nw6CtW2Y/a4K5tpzUjSM=; h=Cc:Date:From:Reply-To:Subject:To; b=W7RYKwkwlSr+o3kIedfEM0VCj9X4bm+luZFhfqSBqmEKQui8I8a+zbV+zvjQ/WvZhCE +7ORgA+OPON5lipXT+oOLqq6nonSIOSGtzKLVb5YtgcMDR+dy7Qn9KjgiT4nMf/PvjhH0 38vgqauwbqtpNbQ4CV54p8aQhI+Ps8C9Vpc= X-ZohoMail-DKIM: pass (identity @groups.io) X-ZM-MESSAGEID: 1664253587458100009 Content-Type: text/plain; charset="utf-8" From: Gua Guo For Windows add below tool for code coverage 1. OpenCppCoverage: parsing pdb file to generate coverage data 2. pycobertura: show up html format data for coverage data For Linux add below tool for code coverage 1. lcov: parsing gcda gcno file to generate coverage data 2. lcov-cobertura: convert coverage data to cobertura format 3. pycobertura: show up html format data for coverage data Cc: Sean Brogan Cc: Bret Barkelew Cc: Michael D Kinney Cc: Liming Gao Signed-off-by: Gua Guo --- .azurepipelines/Ubuntu-GCC5.yml | 5 ++++- .azurepipelines/Windows-VS2019.yml | 5 +++++ .azurepipelines/templates/pr-gate-build-job.yml | 2 ++ .azurepipelines/templates/pr-gate-steps.yml | 5 +++++ pip-requirements.txt | 3 +++ 5 files changed, 19 insertions(+), 1 deletion(-) diff --git a/.azurepipelines/Ubuntu-GCC5.yml b/.azurepipelines/Ubuntu-GCC5.= yml index 3760c6efe1..9d53528063 100644 --- a/.azurepipelines/Ubuntu-GCC5.yml +++ b/.azurepipelines/Ubuntu-GCC5.yml @@ -18,4 +18,7 @@ jobs: tool_chain_tag: 'GCC5' vm_image: 'ubuntu-latest' arch_list: "IA32,X64,ARM,AARCH64,RISCV64" - + extra_install_step: + - bash: sudo apt-get install -y lcov + displayName: Install Code Coverage Tools + condition: and(gt(variables.pkg_count, 0), succeeded()) diff --git a/.azurepipelines/Windows-VS2019.yml b/.azurepipelines/Windows-V= S2019.yml index e4bd4b1d22..c07e5bb434 100644 --- a/.azurepipelines/Windows-VS2019.yml +++ b/.azurepipelines/Windows-VS2019.yml @@ -18,3 +18,8 @@ jobs: tool_chain_tag: 'VS2019' vm_image: 'windows-2019' arch_list: "IA32,X64" + extra_install_step: + - powershell: choco install opencppcoverage; Write-Host "##vso[task.pr= ependpath]C:\Program Files\OpenCppCoverage" + displayName: Install Code Coverage Tool + condition: and(gt(variables.pkg_count, 0), succeeded()) + diff --git a/.azurepipelines/templates/pr-gate-build-job.yml b/.azurepipeli= nes/templates/pr-gate-build-job.yml index 0e4ad019bf..0162ea97cb 100644 --- a/.azurepipelines/templates/pr-gate-build-job.yml +++ b/.azurepipelines/templates/pr-gate-build-job.yml @@ -12,6 +12,7 @@ parameters: tool_chain_tag: '' vm_image: '' arch_list: '' + extra_install_step: [] =20 # Build step jobs: @@ -70,3 +71,4 @@ jobs: build_pkgs: $(Build.Pkgs) build_targets: $(Build.Targets) build_archs: ${{ parameters.arch_list }} + extra_install_step: ${{ parameters.extra_install_step }} diff --git a/.azurepipelines/templates/pr-gate-steps.yml b/.azurepipelines/= templates/pr-gate-steps.yml index cb431e53fc..0568941399 100644 --- a/.azurepipelines/templates/pr-gate-steps.yml +++ b/.azurepipelines/templates/pr-gate-steps.yml @@ -12,6 +12,7 @@ parameters: build_pkgs: '' build_targets: '' build_archs: '' + extra_install_step: [] =20 steps: - checkout: self @@ -37,6 +38,8 @@ steps: displayName: fetch target branch condition: eq(variables['Build.Reason'], 'PullRequest') =20 +- ${{ parameters.extra_install_step }} + # trim the package list if this is a PR - task: CmdLine@1 displayName: Check if ${{ parameters.build_pkgs }} need testing @@ -125,6 +128,8 @@ steps: TestSuites.xml **/BUILD_TOOLS_REPORT.html **/OVERRIDELOG.TXT + coverage.xml + coverage.html flattenFolders: true condition: succeededOrFailed() =20 diff --git a/pip-requirements.txt b/pip-requirements.txt index 967da7cb37..18f5afb9c5 100644 --- a/pip-requirements.txt +++ b/pip-requirements.txt @@ -16,3 +16,6 @@ edk2-pytool-library=3D=3D0.11.2 edk2-pytool-extensions~=3D0.16.0 edk2-basetools=3D=3D0.1.29 antlr4-python3-runtime=3D=3D4.7.1 +pycobertura=3D=3D2.1.0 +lcov-cobertura=3D=3D2.0.2 + --=20 2.31.1.windows.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#94389): https://edk2.groups.io/g/devel/message/94389 Mute This Topic: https://groups.io/mt/93943733/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-