AyushP123

lcov_letor

Jul 22nd, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.45 KB | None | 0 0
  1. ## GNU find specific.
  2. find . -name '*.gcda' -delete
  3. ## Don't run under valgrind even if configure was run by hand.
  4. $(MAKE) $(AM_MAKEFLAGS) check VALGRIND=
  5. rm -f xapian-core.lcov
  6. lcov --capture -d . --quiet --rc 'lcov_branch_coverage=1' --no-external -o xapian-core.lcov
  7. rm -rf lcov
  8. genhtml --demangle-cpp --branch-coverage $(GENHTML_ARGS) -q -p "`pwd`" -t "Test Coverage for xapian-core `git log -n1 --abbrev-commit --format=%h`" -o lcov xapian-core.lcov
Add Comment
Please, Sign In to add comment