From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mx.groups.io with SMTP id smtpd.web11.1156.1664502959898933557 for ; Thu, 29 Sep 2022 18:56:00 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=AigdRGIE; spf=pass (domain: intel.com, ip: 192.55.52.136, mailfrom: gua.guo@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1664502959; x=1696038959; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=yTseV9NoCsOEFFkmIgpbxOM1LQZirvBgjiN6uoXJzeY=; b=AigdRGIE52uKo3avSbCGJchmuKAM8freVPcq3yztXKYuqBmlEGdn+Yen uJ2tY3XCLYN29Yb3iPpskGp0C4z2Ag2BSfW9hqRkvJLIcgMHVOu/C/N8p BlpzLZ53o1LZCMz/iVQXfsRAFZgxlvc4Ivvjlbqx3Jq2eRujr25W6o2rv N2YCh6cIlVkF4DHJ/2GZhXeEQ13Eb7X+txCQwSeUCUQuzBJYF/DLgjJVT CA0gZI05KBqV/Z07ZsC72ZCw08caMU1c/KoB5CI6+FiBro5CJn30LlXRG QDW9cCKL6uBFaAsFd5QJBr7lTwkws/6/eQz8ZQeWygEXLxo1H101kOepc w==; X-IronPort-AV: E=McAfee;i="6500,9779,10485"; a="281788280" X-IronPort-AV: E=Sophos;i="5.93,357,1654585200"; d="scan'208";a="281788280" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Sep 2022 18:55:59 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10485"; a="726671300" X-IronPort-AV: E=Sophos;i="5.93,357,1654585200"; d="scan'208";a="726671300" Received: from gguo-desk.gar.corp.intel.com ([10.5.215.23]) by fmsmga002.fm.intel.com with ESMTP; 29 Sep 2022 18:55:58 -0700 From: "Guo, Gua" To: devel@edk2.groups.io Cc: Gua Guo Subject: [PATCH v5 0/3] Add code coverage support for GCC Date: Fri, 30 Sep 2022 09:55:53 +0800 Message-Id: X-Mailer: git-send-email 2.31.1.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 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 | 2 + .azurepipelines/templates/pr-gate-steps.yml | 5 + .../HostBasedUnitTestRunner.py | 119 ++++++++++++++++++ UnitTestFrameworkPkg/ReadMe.md | 37 +++++- .../UnitTestFrameworkPkg.ci.yaml | 2 + .../UnitTestFrameworkPkgHost.dsc.inc | 3 +- pip-requirements.txt | 3 + 9 files changed, 176 insertions(+), 5 deletions(-) -- 2.31.1.windows.1