mirror of
https://github.com/utoni/nDPId.git
synced 2026-04-28 06:59:35 +00:00
8 lines
170 B
Bash
Executable file
8 lines
170 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "${0}")/.."
|
|
mkdir -p coverage_report
|
|
lcov --directory . --capture --output-file lcov.info
|
|
genhtml -o coverage_report lcov.info
|