SonarCloud | Enriching your analysis | Test coverage | C/C++/Objective-C test coverage

On this page

C/C++/Objective-C test coverage & SonarCloud

SonarCloud supports the reporting of test coverage information as part of the analysis of your C/C++/Objective-C project. 

However, SonarCloud does not produce the coverage report itself. Instead, you must set up a third-party tool to produce the report as part of your build process. You then need to configure your analysis to tell the SonarScanner where the report is located so that it can pick it up and send it to SonarCloud, where it will be displayed on your project dashboard along with the other analysis metrics.

Follow the tutorial

After you import your repository SonarCloud will direct you to the onboarding tutorial specific to your CI. Follow the tutorial and when it asks, What option best describes your build?, choose C/C++/Objective-C. When you are done with the tutorial, you should have a functioning CI-based analysis setup for your project. The next step is to adjust it to get coverage working.

Adjust your setup

To enable coverage you need to:

  • Adjust your build process so that the coverage tool generates the report(s) just after your unit as part of the clean build required to run analysis.
  • Make sure that the coverage tool writes its report file to a defined path in the build environment.
  • Configure the scanning step of your build so that the scanner picks up the report file from that defined path.

Add coverage to your build process

For C/C++/Objective-C projects SonarCloud supports a number of coverage tools. Each has an associated analysis parameter that must be set to the location of the coverage report that is produced by the tool. The parameters are:

  • sonar.cfamily.llvm-cov.reportPath
  • sonar.cfamily.vscoveragexml.reportsPath
  • sonar.cfamily.gcov.reportsPath
  • sonar.cfamily.bullseye.reportPath
  • sonar.coverageReportPaths

Assuming that you have already set up your project, you will have seen the example projects (without coverage) referenced in the in-product tutorials: sonarsource-cfamily-examples.

To help you add coverage to your project, we also provide, in the same GitHub organization, a few example repositories with coverage.

Note that these examples do not include every possible combination of tooling and platform, so you may need to adapt them slightly to your situation:

These examples include the major free-to-use coverage tools for C/C++/Objective-C (VS Coverage, XCode Coverage, LLVM-COV, GCOVR, GCOV and OpenCppCoverage). For information on the popular commercial Bullseye product, see BullseyeCoverage - C++ Code Coverage Tool.

© 2008-2024 SonarSource SA. All rights reserved. SONAR, SONARSOURCE, SONARLINT, SONARQUBE, SONARCLOUD, and CLEAN AS YOU CODE are trademarks of SonarSource SA.

Creative Commons License