Last active
February 23, 2016 21:04
-
-
Save noahp/4117bfce2030b5907cab to your computer and use it in GitHub Desktop.
gcovr pattern for *unittest.c files only
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gcovr.py -r <rootdir> -f ".*?\.c" -e ".*unittests\.c" -e ".*c_unittester.*\.c" --html --html-details -o summary.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
NOTE! the
-f
is required, as well as-o
for details :-(