diff options
author | Assaf Gordon <assafgordon@gmail.com> | 2012-12-20 11:42:22 +0100 |
---|---|---|
committer | Bernhard Voelker <mail@bernhard-voelker.de> | 2012-12-20 11:42:27 +0100 |
commit | c388053e144f6ae00836ccb9d0b6b895ce129072 (patch) | |
tree | 10b9b60a98daff4d57d041f1cf4e75c272e15ded | |
parent | e5345f19158ec1153c320b24ebcaf805db2a7bea (diff) | |
download | coreutils-c388053e144f6ae00836ccb9d0b6b895ce129072.tar.xz |
doc: tweak 'lcov' in HACKING
* HACKING: In the paragraph about creating coverage statistics,
use the correct -b (--base-directory) parameter.
-rw-r--r-- | HACKING | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -610,8 +610,8 @@ to generate HTML coverage reports. Follow these steps: # run whatever tests you want, i.e.: make check # run lcov - lcov -t coreutils -q -d lib -b lib -o lib.lcov -c - lcov -t coreutils -q -d src -b src -o src.lcov -c + lcov -t coreutils -q -d lib -b `pwd` -o lib.lcov -c + lcov -t coreutils -q -d src -b `pwd` -o src.lcov -c # generate HTML from the output genhtml -p `pwd` -t coreutils -q --output-directory lcov-html *.lcov |