Home | History | Annotate | Download | only in tools

Lines Matching refs:coverage

4 #   $ tools/coverage.sh tests
6 # $ tools/coverage.sh gm
18 ninja -C out/Coverage
22 lcov $QUIET --gcov-tool=$GCOV -c -b out/Coverage -d out/Coverage -o /tmp/baseline -i
24 # Running the binary generates the real coverage information, the .gcda files.
25 out/Coverage/$COMMAND
26 lcov $QUIET --gcov-tool=$GCOV -c -b out/Coverage -d out/Coverage -o /tmp/coverage
28 lcov $QUIET -a /tmp/baseline -a /tmp/coverage -o /tmp/merged
30 genhtml $QUIET /tmp/merged --legend -o out/Coverage/report
31 xdg-open out/Coverage/report/index.html