Chinaunix首页 | 论坛 | 博客
  • 博客访问: 327983
  • 博文数量: 130
  • 博客积分: 10
  • 博客等级: 民兵
  • 技术积分: 554
  • 用 户 组: 普通用户
  • 注册时间: 2012-07-19 19:24
文章分类

全部博文(130)

文章存档

2016年(31)

2015年(16)

2014年(13)

2013年(70)

分类: LINUX

2016-02-18 18:15:16

1. compile with following flags
 gcc -fprofile-arcs -ftest-coverage test.c
 
2. run exec file, will product coverage info


3. collect coverage info by gcov
gcov test.c


4. use lcov to product graphs
lcov --directory . --capture --output-file test.info
5. use genhtml to product html style report
genhtml -o results test.info
阅读(689) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~