File: README

package info (click to toggle)
bcov 0.2-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 416 kB
  • ctags: 82
  • sloc: cpp: 965; sh: 787; makefile: 7
file content (18 lines) | stat: -rw-r--r-- 752 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
bcov produces coverage information without recompiling a program
by instrumenting it with breakpoints. Effectively it debugs the
program automatically, removing each breakpoint after it has been
hit. Currently only the main binary itself is instrumented.

Usage: bcov binary [argument(s)]

Executes the binary with the given arguments and stores the
coverage summary in .bcovdump. The result file is more or less
human readable (and easily machine readable), a nicer presentation
can be generated with bcov-report:

Usage: bcov-report [dumpfile] [output directory]

Converts the coverage dump into an lcov-style html report. If
not output directory is given bcov-report uses a temporary directory
and tries to open the result in the standard browser.