diff options
Diffstat (limited to 'extras/lcov/lcov_post')
-rwxr-xr-x | extras/lcov/lcov_post | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/extras/lcov/lcov_post b/extras/lcov/lcov_post new file mode 100755 index 00000000000..f439796cbf3 --- /dev/null +++ b/extras/lcov/lcov_post @@ -0,0 +1,9 @@ +#!/bin/bash + +set -e + +cd build-root +rm -rf html +mkdir html +lcov --no-checksum --directory . --capture --output-file out.info +genhtml out.info -o html |