diff options
Diffstat (limited to 'scripts/coverage.sh')
-rwxr-xr-x | scripts/coverage.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/coverage.sh b/scripts/coverage.sh index 5f4e922b..d24f7670 100755 --- a/scripts/coverage.sh +++ b/scripts/coverage.sh @@ -34,6 +34,6 @@ log_and_run() { } log_and_run lcov --zerocounters -d ${BIN_DIR} --rc lcov_branch_coverage=1 -log_and_run python test/run-tests.py --bindir ${BIN_DIR} +log_and_run test/run-tests.py --bindir ${BIN_DIR} log_and_run lcov -c -d ${BIN_DIR} -o ${COV_FILE} --rc lcov_branch_coverage=1 log_and_run genhtml --branch-coverage -o ${COV_HTML_DIR} ${COV_FILE} |