Revision 38b22f7bf846544d8054ac93e1925a0209768ad6 authored by Konrad Werys on 08 August 2019, 11:35:05 UTC, committed by Konrad Werys on 08 August 2019, 11:35:05 UTC
1 parent ded8e4d
Raw File
generateTestCoverageReport.sh
#!/bin/bash

lcov --capture --directory . --output-file coverage_full.info > lcov_capture.txt
lcov --remove coverage_full.info '*/thirdParty/*' '*/tests/*' '*/include/ITK*' '*v1*' '*/ITKFactoryRegistration/*' '*/ITKIOFactoryRegistration/*' '*/usr/include/*' -o coverage.info > lcov_remove.txt
genhtml coverage.info --output-directory out
open out/index.html
back to top