GitXplorerGitXplorer
d

zcov

public
51 stars
12 forks
0 issues

Commits

List of commits on branch master.
Unverified
5e410696434691e2f6667980b785c953431ec6b1

Merge pull request #3 from kren1/master

dddunbar committed 10 years ago
Unverified
13e9552ea8842696f26470844b590b95a8547971

rename to createRemove

kkren1 committed 10 years ago
Unverified
e17bdb74f23cda1d0cc45db568c30ee0900bb117

fixed a bug that cause zcov to crash when used with gcov v4.8

kkren1 committed 10 years ago
Unverified
996b910fc1521933363fa3bc4cc562ef73fbb03a

[genhtml] Use more modern HTML to draw the percent-covered bar.

dddunbar committed 11 years ago
Unverified
776d3ffbe7adccf031b640513de67791b26dbb30

[genhtml] Use CSS border-radius instead of generating rounded corner images.

dddunbar committed 11 years ago
Unverified
d89de33caeec6cae860851e0e657fc48c2dfb1cb

[genhtml] Rip out code for augmenting reports with KLEE coverage info.

dddunbar committed 11 years ago

README

The README file for this repository.

zcov - A code coverage reporting tool

zcov is wrapper around the basic facilities of gcov for generating pretty summaries for entire code bases. It is similar to lcov with an emphasis on nicer HTML output (including, for example, branch coverage), and a greatly simplified command line interface which tries to work around deficiencies in the metadata provided by gcov.

Overview

zcov uses '.zcov' files to store the information about a run, and provides several tools for working with these files. Use --help to see more information on the tools.

zcov scan

Recursively scan a directory structure looking for .gcda files and create a .zcov containing all the results. Usage: $ zcov scan output.zcov ~/public/coreutils-6.10.cov

zcov genhtml

Create an HTML report from a .zcov file. Usage: $ zcov genhtml output.zcov coverage-report/

zcov genhtml will make the output directory and write HTML files and an index.html for all the files in the .zcov. One useful option is '--root' which tells zcov to ignore any files outside the given root directory, and not to write that root directory in the output (for example, so your home directory path doesn't show up in the report).

zcov summarize

Print a short textual summary of a .zcov file, for testing and simple command line uses. Usage: $ zcov summarize output.zcov

zcov merge

Merge multiple .zcov files into one. Usage: $ zcov merge output.zcov input1.zcov input2.zcov ... inputN.zcov

License

zcov is available under the BSD license. See LICENSE.txt.

Dependencies

zcov has the following dependencies:

  • Python
  • PIL
  • enscript

Credits

zcov is written and maintained by Daniel Dunbar daniel@zuster.org

The JavaScript sorttable implementation as written by Stuart Langridge and is included under the X11 license.