Skip to content

Instantly share code, notes, and snippets.

@noahp
Last active February 23, 2016 21:04
Show Gist options
  • Save noahp/4117bfce2030b5907cab to your computer and use it in GitHub Desktop.
Save noahp/4117bfce2030b5907cab to your computer and use it in GitHub Desktop.
gcovr pattern for *unittest.c files only
gcovr.py -r <rootdir> -f ".*?\.c" -e ".*unittests\.c" -e ".*c_unittester.*\.c" --html --html-details -o summary.html
@noahp
Copy link
Author

noahp commented Feb 23, 2016

NOTE! the -f is required, as well as -o for details :-(

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment