NA-MIC-kit-curriculum/Testing-Based Programming/How to run Code Coverage

From NAMIC Wiki
Jump to: navigation, search
Home < NA-MIC-kit-curriculum < Testing-Based Programming < How to run Code Coverage

Introduction

Overview

This tutorial shows how to run Code Coverage in your project.

Code coverage is a mechanism for counting the number of lines of code that are exercised during the execution of your tests.

Prerequisite

You should read first the tutorial:

You should also have installed the package

 gcov

this is usually installed along with your gcc package

Configuring the Test

In the project that you built in the previous tutorial, do

 cd ${BINARY_DIR}
 make edit_cache

Enable Debug

Then search for the variable

 CMAKE_BUILD_TYPE

and set it to the word "Debug"


Set Coverage Options

  1. Pass to the advanced mode by hitting the "t" key
  2. Hit the "/" key in order to start a search
  3. Type CXX_FLAGS
  4. Hit the ENTER key to start editing the flags
  5. add the following test: -g -O0 -fprofile-arcs -ftest-coverage
  6. Hit the "/" key in order to start a search
  7. Type C_FLAGS
  8. Hit the ENTER key to start editing the flags
  9. add the following test: -g -O0 -fprofile-arcs -ftest-coverage