8d74caa0a2
See extras/lcov Type: feature Signed-off-by: Dave Barach <dave@barachs.net> Change-Id: Id229436bd94cd18bcd0f3a3d938eae2b28d5b1f5
10 lines
149 B
Bash
Executable File
10 lines
149 B
Bash
Executable File
#!/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
|