blob: 1aaf9865d244720583445cbf760eaa53babae1c9 [file] [log] [blame]
Dave Barach8d74caa2019-11-06 16:58:48 -05001#!/bin/bash
2
3set -e
4
5cd build-root
6rm -rf html
7mkdir html
8lcov --no-checksum --directory . --capture --output-file out.info
Dave Barach37b44542020-04-27 18:38:36 -04009lcov --remove out.info \
10 "/usr/include/*" "*/build-root/*" "/opt/*" "/usr/lib/*" \
11 -o filtered.info
12genhtml filtered.info -o html