- #!/bin/sh
- clear
- llvm-cov show ./build_debug/test \
- -instr-profile=build_debug/default.profdata \
- -show-instantiations=false \
- -show-instantiation-summary=false \
- -use-color \
- -line-coverage-lt=100 \
- --ignore-filename-regex="test/" \
- --ignore-filename-regex="src/"
|