Agent Skillsgadievron/raptor › Code Coverage with gcov

Code Coverage with gcov

GitHub

为C/C++项目添加gcov代码覆盖率检测,支持Make和CMake构建系统集成,通过编译链接标志、执行测试及生成文本或HTML报告来衡量行、分支和功能覆盖率。

.claude/skills/crash-analysis/gcov-coverage/SKILL.md gadievron/raptor

Trigger Scenarios

需要分析C/C++代码测试覆盖率 配置构建系统以启用gcov覆盖统计

Install

npx skills add gadievron/raptor --skill Code Coverage with gcov -g -y
More Options

Non-standard path

npx skills add https://github.com/gadievron/raptor/tree/main/.claude/skills/crash-analysis/gcov-coverage -g -y

Use without installing

npx skills use gadievron/raptor@Code Coverage with gcov

指定 Agent (Claude Code)

npx skills add gadievron/raptor --skill Code Coverage with gcov -a claude-code -g -y

安装 repo 全部 skill

npx skills add gadievron/raptor --all -g -y

预览 repo 内 skill

npx skills add gadievron/raptor --list

SKILL.md

Frontmatter
{
    "name": "Code Coverage with gcov",
    "tags": [
        "coverage",
        "gcov",
        "testing"
    ],
    "author": "Claude",
    "version": 1,
    "description": "Add gcov code coverage instrumentation to C\/C++ projects",
    "user-invocable": false
}

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

Text report:

gcov source.c
# Creates source.c.gcov with line-by-line coverage

HTML report:

gcovr --html-details -o coverage.html

Coverage Flags

  • --coverage (shorthand for -fprofile-arcs -ftest-coverage -lgcov)
  • Add to both CFLAGS and LDFLAGS

Build System Integration

Makefile

ENABLE_COVERAGE ?= 0
ifeq ($(ENABLE_COVERAGE),1)
    CFLAGS += --coverage
    LDFLAGS += --coverage
endif

CMake

option(ENABLE_COVERAGE "Enable coverage" OFF)
if(ENABLE_COVERAGE)
    add_compile_options(--coverage)
    add_link_options(--coverage)
endif()

When User Requests Coverage

Steps

  1. Detect build system (Makefile/CMake/other)
  2. Add --coverage to CFLAGS and LDFLAGS
  3. Clean previous build: make clean or rm -f *.gcda *.gcno
  4. Build with coverage: make ENABLE_COVERAGE=1 or cmake -DENABLE_COVERAGE=ON
  5. Run tests: make test or ./test_suite
  6. Generate report: gcovr --html-details coverage.html --print-summary
  7. Present summary and path to HTML report

Output

Text (.gcov files):

        -:    0:Source:main.c
        5:   42:    int x = 10;
    #####:   43:    unused_code();
  • 5: = executed 5 times
  • #####: = not executed
  • -: = non-executable

HTML: Interactive report with color-coded coverage

Metrics

  • Line coverage: Executed lines / total lines
  • Branch coverage: Taken branches / total branches
  • Function coverage: Called functions / total functions

Target: 80%+ line coverage, 70%+ branch coverage

Version History

  • 91a9686 Current 2026-07-24 22:16

Same Skill Collection

.claude/skills/audit/SKILL.md
.claude/skills/code-understanding/SKILL.md
.claude/skills/crash-analysis/function-tracing/SKILL.md
.claude/skills/crash-analysis/line-execution-checker/SKILL.md
.claude/skills/crash-analysis/rr-debugger/SKILL.md
.claude/skills/exploitability-validation/SKILL.md
.claude/skills/frida/SKILL.md
.claude/skills/oss-forensics/github-archive/SKILL.md
.claude/skills/oss-forensics/github-commit-recovery/SKILL.md
.claude/skills/oss-forensics/github-evidence-kit/SKILL.md
.claude/skills/oss-forensics/github-wayback-recovery/SKILL.md
.claude/skills/oss-forensics/orchestration/SKILL.md

Metadata

Files
0
Version
e57ffe8
Hash
aacabdf4
Indexed
2026-07-24 22:16

inicio - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-21 14:53
浙ICP备14020137号-1 $mapa de visitantes$