mirror of
https://github.com/team-charls/charls
synced 2025-03-28 21:03:13 +00:00
Enable code coverage in CI pipeline (#279)
The Azure CI Pipeline can analyze code coverage when running the unit tests. Enable this option. It provides an additional tab on the CI status report. On this tab a single code coverage number is displayed. The .coverage file can be downloaded and opened in Visual Studio to get more insights. Only the debug DLL is code covered as it provided a good report. The release build has too many optimalizations to provide a report that is useful. Note 1: The unit test DLL needs to link with the CharLS .obj files to make it possible to unit test low level methods. This means however the the unit test DLL needs to be code covered and not the actual CharLS DLL. Note 2: the Cobertura format was also tested, but it didn't provide additional details (only more warnings and complexity) Enable code coverage in CI pipeline
This commit is contained in:
parent
cc6c9f8809
commit
c4f429b900
@ -105,6 +105,7 @@
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)'=='Debug' OR '$(Configuration)'=='Checked'">
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<LinkIncremental Condition="'$(CHARLS_PROFILE)'!=''">false</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug' OR '$(Configuration)'=='Checked'">
|
||||
@ -113,6 +114,7 @@
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<RandomizedBaseAddress Condition="'$(Platform)'!='ARM64'">false</RandomizedBaseAddress>
|
||||
<Profile Condition="'$(CHARLS_PROFILE)'!=''">true</Profile>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
|
||||
@ -147,7 +149,6 @@
|
||||
<Link>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
|
||||
<!-- Store only the filename of the PDB file into the .exe/.dll for deterministic builds. -->
|
||||
<AdditionalOptions>/PDBALTPATH:%_PDB% %(AdditionalOptions)</AdditionalOptions>
|
||||
|
@ -51,12 +51,17 @@ jobs:
|
||||
solution: '$(solution)'
|
||||
platform: '$(buildPlatform)'
|
||||
configuration: '$(buildConfiguration)'
|
||||
maximumCpuCount: true
|
||||
msbuildArgs: -p:CHARLS_PROFILE=true -p:CHARLS_ALL_WARNINGS=true
|
||||
|
||||
- task: VSTest@2
|
||||
inputs:
|
||||
platform: '$(buildPlatform)'
|
||||
configuration: '$(buildConfiguration)'
|
||||
|
||||
runInParallel: true
|
||||
resultsFolder: '$(build.ArtifactStagingDirectory)/Test/Results'
|
||||
codeCoverageEnabled: true
|
||||
runSettingsFile: 'unittest\CodeCoverage.runsettings'
|
||||
|
||||
- job: 'cppVS2022'
|
||||
pool:
|
||||
|
@ -124,9 +124,6 @@
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<EnableClangTidyCodeAnalysis>false</EnableClangTidyCodeAnalysis>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
@ -141,12 +138,6 @@
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<EnableClangTidyCodeAnalysis>false</EnableClangTidyCodeAnalysis>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Label="Global">
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
|
38
unittest/CodeCoverage.runsettings
Normal file
38
unittest/CodeCoverage.runsettings
Normal file
@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RunSettings>
|
||||
<DataCollectionRunSettings>
|
||||
<DataCollectors>
|
||||
<DataCollector friendlyName="Code Coverage" uri="datacollector://Microsoft/CodeCoverage/2.0" assemblyQualifiedName="Microsoft.VisualStudio.Coverage.DynamicCoverageDataCollector, Microsoft.VisualStudio.TraceCollector, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<Configuration>
|
||||
<CodeCoverage>
|
||||
|
||||
<!-- The CharLS source code is linked into the unit test DLL using .obj files. The DLL to cover is the unit test DLL -->
|
||||
<!-- Only do code coverage on debug bulds. Release builds are optimized and provide poor code coverage results (inlining is a major factor)-->
|
||||
<ModulePaths>
|
||||
<Include>
|
||||
<ModulePath>.*debug.*CharLSUnitTest\.dll$</ModulePath>
|
||||
</Include>
|
||||
</ModulePaths>
|
||||
|
||||
<!-- Include only the actual implementation source code and not the unit test code. -->
|
||||
<Functions>
|
||||
<Include>
|
||||
<Function>^charls::.*</Function>
|
||||
</Include>
|
||||
<Exclude>
|
||||
<Function>^charls::test::.*</Function>
|
||||
</Exclude>
|
||||
</Functions>
|
||||
|
||||
<UseVerifiableInstrumentation>False</UseVerifiableInstrumentation>
|
||||
|
||||
<!-- Recommendation is to use static native instrumentation for the optimal coverage results. -->
|
||||
<EnableStaticNativeInstrumentation>True</EnableStaticNativeInstrumentation>
|
||||
<EnableDynamicNativeInstrumentation>True</EnableDynamicNativeInstrumentation>
|
||||
|
||||
</CodeCoverage>
|
||||
</Configuration>
|
||||
</DataCollector>
|
||||
</DataCollectors>
|
||||
</DataCollectionRunSettings>
|
||||
</RunSettings>
|
Loading…
x
Reference in New Issue
Block a user