From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web10.67946.1672762455529851383 for ; Tue, 03 Jan 2023 08:14:15 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@linux.microsoft.com header.s=default header.b=nT1K63LX; spf=pass (domain: linux.microsoft.com, ip: 13.77.154.182, mailfrom: mikuback@linux.microsoft.com) Received: from [192.168.4.22] (unknown [47.201.8.94]) by linux.microsoft.com (Postfix) with ESMTPSA id C19CF20B92A6; Tue, 3 Jan 2023 08:14:14 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com C19CF20B92A6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1672762455; bh=CX5+ykHUIBI5YgDAiG7y8wnn+ILsXs/V7VdVQ1rkmbs=; h=Date:Subject:To:References:From:In-Reply-To:From; b=nT1K63LX94b4AgrO2RtYO4nkqoQb9uXB3ovcNugRYCffTxpBImP0PrBV6RMXHW2AX GmUhStxucfnWuESDrBro4ubuNdZogZuKDkwAlo3wNcRVy3q6c9ZJu0+MJVuHwlq47B ZN4Ohf77YZkcSz3XOfMYflfi1YC6dDvOnVeSQuSE= Message-ID: <7568e4c9-a34a-ca2e-b773-8edecb1d5c8e@linux.microsoft.com> Date: Tue, 3 Jan 2023 11:14:13 -0500 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:91.0) Gecko/20100101 Thunderbird/91.13.1 Subject: Re: [edk2-devel] [PATCH v8 0/3] Add code coverage support for GCC/MSVC To: devel@edk2.groups.io, gua.guo@intel.com References: From: "Michael Kubacki" In-Reply-To: Content-Language: en-US Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit For the series: Reviewed-by: Michael Kubacki On 1/2/2023 6:24 AM, Guo, Gua wrote: > From: Gua Guo > > V1: Add coverage option for GCC > V2: Add ReadMe.md for how to generate coverage report > V3: Add VS2019 and GCC code coverage support > V4: Add VS2019 and GCC Azure CI/CD support > V5: Fix some typo and some flow issue > V6: Remove html coverage information > - Due to python 3.11 install lxml will be failure, > pycobertura need it to convert cobertura format to > html file. > - Add section for developer how to use OpenCppCoverage > on IDE Visual Studio > V7: Remove redundant code and add code coverage pipeline support > - Remove redundant code on HostBasedUnitTestRunner.py > - Unify coding rule on HostBasedUnitTestRunner.py > - Add CodeCoverage Azure pipeline support for GCC5 and VS2019 > > Gua Guo (3): > UnitTestFrameworkPkg: Add code coverage support for GCC > BaseTools/Plugin: Add coverage support for Unit Test > .azurepipelines: Install code coverage tool > > .azurepipelines/Ubuntu-GCC5.yml | 5 +- > .azurepipelines/Windows-VS2019.yml | 5 + > .../templates/pr-gate-build-job.yml | 36 +++++++ > .azurepipelines/templates/pr-gate-steps.yml | 4 + > .../HostBasedUnitTestRunner.py | 101 +++++++++++++++++- > UnitTestFrameworkPkg/ReadMe.md | 41 +++++++ > .../UnitTestFrameworkPkg.ci.yaml | 1 + > .../UnitTestFrameworkPkgHost.dsc.inc | 3 +- > pip-requirements.txt | 2 + > 9 files changed, 195 insertions(+), 3 deletions(-) >