File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22
3- # works on macos
4-
53cd ../..
64mkdir tomato_test_coverage
75cd tomato_test_coverage
Original file line number Diff line number Diff line change 11#! /bin/bash
22
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
3+ lcov --capture --directory . --output-file coverage_full.info > lcov_capture.txt
4+ lcov --remove coverage_full.info ' */thirdParty/*' ' */tests/*' ' */include/ITK*' ' *v1*' ' */ITKIOFactoryRegistration/*' ' */usr/include/*' -o coverage.info > lcov_remove.txt
5+ genhtml coverage.info --output-directory out
6+ open out/index.html
You can’t perform that action at this time.
0 commit comments