Code Coverage with gcov

Installation
SKILL.md

Code Coverage with gcov

Purpose

Instrument C/C++ programs with gcov to measure test coverage.

How It Works

Build with Coverage

gcc --coverage -o program source.c

Run Program

./program
# Creates .gcda files with execution data

Generate Reports

Installs
GitHub Stars
3.0K
First Seen
Code Coverage with gcov — gadievron/raptor