Skip to content

Commit fb8a603

Browse files
committed
generateTestCoverageReport fix
1 parent 49d3787 commit fb8a603

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
lcov --capture --directory . --output-file coverage_full.info
4-
lcov --remove coverage_full.info '*/thirdParty/*' '*/tests/*' '*/include/ITK*' '*v1*' '*/ITKIOFactoryRegistration/*' '*/usr/include/*' -o coverage.info
5-
genhtml coverage.info --output-directory out
6-
open out/index.html
3+
eval lcov --capture --directory . --output-file coverage_full.info
4+
eval lcov --remove coverage_full.info '*/thirdParty/*' '*/tests/*' '*/include/ITK*' '*v1*' '*/ITKIOFactoryRegistration/*' '*/usr/include/*' -o coverage.info
5+
eval genhtml coverage.info --output-directory out
6+
eval open out/index.html

0 commit comments

Comments
 (0)