Skip to content

Commit

Permalink
coverage report script: clean all intermediary files
Browse files Browse the repository at this point in the history
  • Loading branch information
carenas authored and danmar committed Oct 17, 2012
1 parent c1718ae commit be71906
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions generate_coverage_report
Expand Up @@ -7,9 +7,13 @@ gcov lib/*.cpp -o lib/
lcov --directory ./ --capture --output-file lcov_tmp.info -b ./
lcov --extract lcov_tmp.info "$(pwd)/*" --output-file lcov.info
genhtml lcov.info -o coverage_report
rm cli/*.gcda
rm cli/*.gcno
rm lib/*.gcda
rm lib/*.gcno
rm test/*.gcda
rm test/*.gcno
rm externals/tinyxml/*.gcda
rm externals/tinyxml/*.gcno
rm lcov.info lcov_tmp.info
make clean

0 comments on commit be71906

Please sign in to comment.